* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff;
  color: #2C3E50;
  min-height: 100vh;
  overflow-y: auto;
  position: relative;
  padding-top: 80px;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  max-height: 900px;
  background-image:
    url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='waveGrad' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23FFB399;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%23FFCCB3;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,320 Q300,270 600,330 T1200,300 T1800,350 L1800,0 L0,0 Z' fill='url(%23waveGrad)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px 0;
  position: relative;
  z-index: 1;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  flex-shrink: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 28px;
  height: 28px;
  background-color: #2C3E50;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo span {
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.brand-name {
  color: #2C3E50;
  font-weight: 600;
  font-size: 19px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #2C3E50;
  text-decoration: none;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  opacity: 0.7;
}

.nav-link:hover {
  opacity: 1;
}

.btn-primary {
  background-color: #FF844B;
  color: white;
  padding: 10px 24px;
  border-radius: 9999px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255, 132, 75, 0.25);
}

.btn-primary:hover {
  background-color: #FF6B2C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 132, 75, 0.35);
}

/* Hero Section */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 16px;
  text-align: center;
  flex-shrink: 0;
}

.hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -1.8px;
  color: #2C3E50;
  text-wrap: balance;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #FF6A3D 0%, #FF5A2A 50%, #E84A1F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  font-style: italic;
}

.italic {
  font-style: italic;
}

/* Reusable Body Text Style */
.body-text {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  opacity: 0.85;
  margin: 0;
  font-weight: 400;
}

.hero-description {
  color: #2C3E50;
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0.85;
  font-weight: 400;
}

/* Email Section */
.email-section {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.email-label {
  color: #2C3E50;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: -0.01em;
}

.email-form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(255, 132, 75, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.email-form:hover {
  box-shadow: 0 12px 40px rgba(255, 132, 75, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.email-input-wrapper {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  flex: 1;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-right: none;
  border-radius: 16px 0 0 16px;
  transition: all 0.3s ease;
}

.email-form:focus-within .email-input-wrapper {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 132, 75, 0.3);
}

.email-icon {
  color: #FF844B;
  margin-right: 12px;
  flex-shrink: 0;
}

.email-input {
  background: transparent;
  outline: none;
  border: none;
  color: #2C3E50;
  font-size: 15px;
  flex: 1;
  font-weight: 400;
}

.email-input::placeholder {
  color: rgba(44, 62, 80, 0.4);
}

.email-submit {
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  color: white;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 16px 16px 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-left: none;
}

.email-submit:hover {
  background: linear-gradient(135deg, #FF6B2C 0%, #FF5722 100%);
}

.email-submit:active {
  transform: scale(0.98);
}

.email-disclaimer {
  color: #2C3E50;
  font-size: 11px;
  opacity: 0.5;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 2px solid #10B981;
  border-radius: 20px;
  animation: successFadeIn 0.5s ease-out;
}

.success-checkmark-hero {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.checkmark-circle-hero {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke: #10B981;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check-hero {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: #10B981;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

.hero-success-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-success-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: #065F46;
}

.hero-success-text span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #047857;
}

/* Website Works Section */
.website-works-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 100px;
  flex-shrink: 0;
  position: relative;
}

.website-works-container {
  max-width: 1100px;
  margin: 0 auto;
}

.website-works-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #2C3E50;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
  text-align: center;
}

.website-works-title .italic {
  font-style: italic;
}

/* New Compact Story Layout */
.works-story-container {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 244, 237, 0.6) 100%);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(255, 132, 75, 0.15);
  box-shadow: 0 12px 48px rgba(255, 132, 75, 0.1);
}

.works-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 0;
  border: 1px solid rgba(255, 132, 75, 0.1);
  box-shadow: 0 10px 40px rgba(255, 132, 75, 0.08), 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.works-card[data-animate="fade-in"].animate {
  animation: worksCardFadeIn 1s ease forwards;
}

.works-card.animate:nth-child(1) {
  animation-delay: 0.2s;
}

.works-card.animate:nth-child(2) {
  animation-delay: 0.5s;
}

.works-card.animate:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes worksCardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.works-card.animate:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 60px rgba(255, 132, 75, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 132, 75, 0.25);
}

.works-card-featured {
  background: linear-gradient(135deg, rgba(255, 244, 237, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 2px solid rgba(255, 132, 75, 0.25);
  box-shadow: 0 12px 48px rgba(255, 132, 75, 0.12), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.works-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF844B, #FFB399, #FF844B);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.works-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

.works-featured-badge svg {
  width: 18px;
  height: 18px;
  color: white;
  fill: white;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.works-card-visual {
  position: relative;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  overflow: hidden;
}

.problem-icon-bg,
.solution-icon-bg,
.result-icon-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}

.problem-icon-bg {
  background: radial-gradient(circle at 50% 50%, #e74c3c 0%, transparent 70%);
}

.solution-icon-bg {
  background: radial-gradient(circle at 50% 50%, #27ae60 0%, transparent 70%);
}

.result-icon-bg {
  background: radial-gradient(circle at 50% 50%, #FF844B 0%, transparent 70%);
}

.works-card-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: scale(0.7) rotate(-5deg);
}

.works-card.animate:nth-child(1) .works-card-icon {
  animation: iconFadeIn 0.8s ease forwards;
  animation-delay: 0.4s;
}

.works-card.animate:nth-child(2) .works-card-icon {
  animation: iconFadeIn 0.8s ease forwards;
  animation-delay: 0.7s;
}

.works-card.animate:nth-child(3) .works-card-icon {
  animation: iconFadeIn 0.8s ease forwards;
  animation-delay: 1s;
}

@keyframes iconFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.works-card-icon svg {
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.works-card:hover .works-card-icon {
  transform: scale(1.15) rotate(0deg);
}

.works-card:hover .works-card-icon svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.works-card-header {
  padding: 0 32px;
  margin-bottom: 24px;
  text-align: center;
}

.works-card-problem .works-card-icon {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.12), rgba(192, 57, 43, 0.08));
  color: #e74c3c;
  box-shadow: 0 8px 32px rgba(231, 76, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.works-card-solution .works-card-icon {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.12), rgba(39, 174, 96, 0.08));
  color: #27ae60;
  box-shadow: 0 8px 32px rgba(46, 204, 113, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.works-card-result .works-card-icon {
  background: linear-gradient(135deg, rgba(255, 132, 75, 0.12), rgba(255, 107, 44, 0.08));
  color: #FF844B;
  box-shadow: 0 8px 32px rgba(255, 132, 75, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}


.works-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(15px);
  line-height: 1.3;
}

.works-card.animate:nth-child(1) .works-card-title {
  animation: titleFadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
}

.works-card.animate:nth-child(2) .works-card-title {
  animation: titleFadeIn 0.8s ease forwards;
  animation-delay: 0.9s;
}

.works-card.animate:nth-child(3) .works-card-title {
  animation: titleFadeIn 0.8s ease forwards;
  animation-delay: 1.2s;
}

@keyframes titleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.works-card-stats {
  margin-top: 16px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(255, 132, 75, 0.06), rgba(255, 179, 153, 0.08));
  border-radius: 14px;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  border: 1px solid rgba(255, 132, 75, 0.15);
  transition: all 0.3s ease;
}

.works-card.animate:nth-child(1) .works-card-stats {
  animation: statsFadeIn 0.8s ease forwards;
  animation-delay: 0.8s;
}

.works-card.animate:nth-child(3) .works-card-stats {
  animation: statsFadeIn 0.8s ease forwards;
  animation-delay: 1.4s;
}

@keyframes statsFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.works-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.works-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #FF844B;
  line-height: 1;
  letter-spacing: -0.02em;
}

.works-stat-label {
  font-size: 13px;
  color: #4a4a4a;
  opacity: 0.8;
  font-weight: 500;
}

.works-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 28px;
  padding: 0 32px;
}

.works-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  opacity: 0;
  transform: translateX(-30px);
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 132, 75, 0.08);
  transition: all 0.3s ease;
}

.works-list-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 132, 75, 0.15);
  transform: translateX(0) translateY(-2px);
}

.works-card.animate .works-list-item {
  animation: listItemSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.works-card.animate .works-list-item:nth-child(1) {
  animation-delay: 1.1s;
}

.works-card.animate .works-list-item:nth-child(2) {
  animation-delay: 1.3s;
}

.works-card.animate .works-list-item:nth-child(3) {
  animation-delay: 1.5s;
}

@keyframes listItemSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.works-list-marker {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(39, 174, 96, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.works-list-marker svg {
  width: 14px;
  height: 14px;
  color: #27ae60;
}

.works-list-item span {
  font-size: 15px;
  color: #2C3E50;
  font-weight: 600;
  line-height: 1.5;
}

.works-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  opacity: 0.85;
  margin: 0 0 32px 0;
  padding: 0 32px;
}

.works-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #FF8B6A 0%, #FF844B 100%);
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(255, 132, 75, 0.3), 0 2px 8px rgba(255, 132, 75, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  margin: 0 32px 32px 32px;
}

.works-card-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.works-card-cta:hover::before {
  left: 100%;
}

.works-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 132, 75, 0.4), 0 4px 12px rgba(255, 132, 75, 0.2);
}

.works-card-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.works-card-cta:hover svg {
  transform: translateX(4px);
}


/* Bottom Section */
.bottom-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
  gap: 10px;
  flex: 1;
  min-height: 0;
}

.card {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  box-shadow: 0 8px 24px rgba(255, 132, 75, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* KPI Card */
.card-kpi {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.kpi-header {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  color: #2C3E50;
}

/* Intro Animation Overlay */
.kpi-intro-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
}

.kpi-intro-overlay.complete {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

.intro-metric {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5) rotate(-5deg);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.intro-metric.active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  animation: metricBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes metricBounce {
  0% {
    transform: scale(0.5) rotate(-10deg);
  }
  50% {
    transform: scale(1.15) rotate(2deg);
  }
  70% {
    transform: scale(0.95) rotate(-1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.intro-metric.shrink {
  transform: scale(0.5) translateY(-30px) rotate(5deg);
  opacity: 0.3;
  filter: blur(2px);
}

.intro-metric.card-form {
  transform: scale(0.2) translateY(-120px) rotate(15deg);
  opacity: 0;
  filter: blur(5px);
}

.intro-icon {
  color: #FF844B;
  margin-bottom: 24px;
  position: relative;
  filter: drop-shadow(0 4px 12px rgba(255, 132, 75, 0.3));
}

.intro-icon::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255, 132, 75, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: iconRipple 2s ease-out infinite;
}

@keyframes iconRipple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}


.intro-metric.active .intro-icon {
  animation: iconGlow 0.8s ease-out forwards, iconFloat 3s ease-in-out infinite 0.8s;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(2deg);
  }
  75% {
    transform: translateY(8px) rotate(-2deg);
  }
}

@keyframes iconGlow {
  0% {
    color: #FF844B;
    filter: drop-shadow(0 4px 12px rgba(255, 132, 75, 0.3));
    transform: scale(1);
  }
  30% {
    color: #FF6B2C;
    filter: drop-shadow(0 0 30px rgba(255, 132, 75, 0.9)) drop-shadow(0 0 60px rgba(255, 132, 75, 0.6));
    transform: scale(1.15);
  }
  100% {
    color: #FF844B;
    filter: drop-shadow(0 4px 20px rgba(255, 132, 75, 0.5));
    transform: scale(1);
  }
}

.intro-counter {
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(135deg, #2C3E50 0%, #FF844B 50%, #2C3E50 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.03em;
  animation: gradientShift 3s ease infinite;
  filter: drop-shadow(0 2px 8px rgba(255, 132, 75, 0.2));
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.intro-label {
  font-size: 17px;
  color: #2C3E50;
  font-weight: 600;
  text-align: center;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kpi-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.kpi-item {
  opacity: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 16px;
  border: 2px solid rgba(255, 180, 153, 0.3);
  position: relative;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 1;
  box-shadow: 0 6px 20px rgba(255, 132, 75, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
}

.kpi-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 180, 153, 0.08) 0%, rgba(255, 132, 75, 0.04) 50%, transparent 100%);
  pointer-events: none;
  border-radius: 14px;
}

.kpi-item:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(255, 132, 75, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 132, 75, 0.4);
}

.kpi-item[data-kpi="1"] {
  animation: fadeInBounceLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 2.8s forwards;
}

.kpi-item[data-kpi="2"] {
  animation: fadeInBounceRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 5.3s forwards;
}

.kpi-item[data-kpi="3"] {
  animation: fadeInBounceScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 7.8s forwards;
}

.kpi-item[data-kpi="4"] {
  animation: fadeInBounceUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 10.3s forwards;
}

@keyframes fadeInBounceLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px) rotate(-5deg);
  }
  60% {
    opacity: 1;
    transform: translateX(10px) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes fadeInBounceRight {
  0% {
    opacity: 0;
    transform: translateX(50px) rotate(5deg);
  }
  60% {
    opacity: 1;
    transform: translateX(-10px) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes fadeInBounceScale {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-3deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.08) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes fadeInBounceUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.kpi-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.kpi-icon-new {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(255, 132, 75, 0.2);
  position: relative;
  overflow: hidden;
}

.kpi-icon-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.kpi-item:hover .kpi-icon-new::before {
  opacity: 1;
}

.kpi-icon-new svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.kpi-icon-green {
  background: rgba(255, 132, 75, 0.15);
  color: #FF844B;
  border: 1px solid rgba(255, 132, 75, 0.3);
}

.kpi-icon-blue {
  background: rgba(44, 62, 80, 0.15);
  color: #2C3E50;
  border: 1px solid rgba(44, 62, 80, 0.3);
}

.kpi-icon-orange {
  background: rgba(255, 132, 75, 0.15);
  color: #FF844B;
  border: 1px solid rgba(255, 132, 75, 0.3);
}

.kpi-icon-purple {
  background: rgba(44, 62, 80, 0.15);
  color: #2C3E50;
  border: 1px solid rgba(44, 62, 80, 0.3);
}

.kpi-value-new {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #2C3E50;
  letter-spacing: -0.01em;
}

.kpi-label-new {
  font-size: 10px;
  color: #2C3E50;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 2px;
  opacity: 0.6;
}

.kpi-badge-new {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 3px 10px rgba(255, 132, 75, 0.2);
}

.kpi-badge-green {
  background: rgba(255, 132, 75, 0.12);
  color: #FF844B;
  border: 1px solid rgba(255, 132, 75, 0.25);
}

.kpi-badge-blue {
  background: rgba(44, 62, 80, 0.12);
  color: #2C3E50;
  border: 1px solid rgba(44, 62, 80, 0.25);
}

.kpi-badge-orange {
  background: rgba(255, 132, 75, 0.12);
  color: #FF844B;
  border: 1px solid rgba(255, 132, 75, 0.25);
}

.kpi-badge-purple {
  background: rgba(44, 62, 80, 0.12);
  color: #2C3E50;
  border: 1px solid rgba(44, 62, 80, 0.25);
}

.kpi-item:hover .kpi-badge-new {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 4px 14px rgba(255, 132, 75, 0.3);
}

.kpi-item:hover .kpi-icon-new {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 6px 18px rgba(255, 132, 75, 0.3);
}

/* Features Column */
.features-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 0;
  box-shadow: 0 8px 24px rgba(255, 132, 75, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(255, 132, 75, 0.22), 0 4px 12px rgba(0, 0, 0, 0.07);
}

.feature-icon {
  width: 28px;
  height: 28px;
  background-color: rgba(255, 243, 235, 0.8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 6px rgba(255, 132, 75, 0.15);
}

.feature-icon span {
  color: black;
  font-weight: bold;
  font-size: 14px;
}

.feature-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 3px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 3px;
  color: #2C3E50;
}

.feature-description {
  color: #2C3E50;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0.7;
}

/* Integrations Card */
.card-integrations {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-integrations.visible {
  opacity: 1;
  transform: translateY(0);
}

.integration-circle {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #FF844B, #FF6B2C);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 12px 40px rgba(255, 132, 75, 0.35), 0 4px 16px rgba(255, 132, 75, 0.2);
  border: none;
  animation: centerPulse 3s ease-in-out infinite;
  overflow: hidden;
}

@keyframes centerPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 12px 40px rgba(255, 132, 75, 0.35), 0 4px 16px rgba(255, 132, 75, 0.2);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 16px 52px rgba(255, 132, 75, 0.45), 0 6px 24px rgba(255, 132, 75, 0.3);
  }
}

.center-logo svg {
  color: black;
  width: 24px;
  height: 24px;
}

.center-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 4px;
}

.circle-dashed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border: 2px dashed rgba(255, 132, 75, 0.3);
  border-radius: 50%;
  animation: rotateCircle 40s linear infinite;
  z-index: 1;
  opacity: 0.5;
}

@keyframes rotateCircle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.circle-dashed::before,
.circle-dashed::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 132, 75, 0.2);
}

.circle-dashed::before {
  inset: -30px;
  animation: rotateCircle 60s linear infinite reverse;
}

.circle-dashed::after {
  inset: 30px;
  animation: rotateCircle 50s linear infinite;
}

.tech-logo {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: floatDrift 5s ease-in-out infinite;
  z-index: 10;
  cursor: pointer;
  border: none;
}

.tech-logo:hover {
  transform: scale(1.2) translateY(-4px) rotate(5deg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 25;
  filter: brightness(1.1);
}

@keyframes floatDrift {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-8px) rotate(2deg);
  }
  66% {
    transform: translateY(4px) rotate(-2deg);
  }
}

.tech-chatgpt {
  background: linear-gradient(135deg, #10a37f, #0d8c6d);
  color: white;
  top: 8%;
  left: 20%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.tech-chatgpt svg {
  width: 24px;
  height: 24px;
}

.tech-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  top: 15%;
  right: 12%;
  animation-delay: 0.8s;
  animation-duration: 5.5s;
}

.tech-instagram svg {
  width: 22px;
  height: 22px;
}

.tech-linkedin {
  background: linear-gradient(135deg, #0A66C2, #004182);
  color: white;
  top: 52%;
  right: 6%;
  animation-delay: 1.6s;
  animation-duration: 7s;
}

.tech-linkedin svg {
  width: 20px;
  height: 20px;
}

.tech-email {
  background: linear-gradient(135deg, #EA4335, #C5221F);
  color: white;
  bottom: 12%;
  right: 18%;
  animation-delay: 2.4s;
  animation-duration: 5s;
}

.tech-email svg {
  width: 22px;
  height: 22px;
}

.tech-js {
  background: linear-gradient(135deg, #F7DF1E, #F0D91E);
  color: black;
  bottom: 8%;
  left: 28%;
  animation-delay: 3.2s;
  animation-duration: 6.5s;
}

.tech-html {
  background: linear-gradient(135deg, #E34F26, #D73B1E);
  color: white;
  bottom: 22%;
  left: 10%;
  animation-delay: 4s;
  animation-duration: 5.8s;
}

.tech-css {
  background: linear-gradient(135deg, #1572B6, #0E5A8E);
  color: white;
  top: 48%;
  left: 5%;
  font-size: 12px;
  animation-delay: 4.8s;
  animation-duration: 6.2s;
}

.tech-code {
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  color: white;
  top: 18%;
  left: 6%;
  animation-delay: 5.6s;
  animation-duration: 5.3s;
}

.tech-code svg {
  width: 22px;
  height: 22px;
}

.integration-title {
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
  padding-top: 8px;
  color: #2C3E50;
}

.integration-title-top {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  flex-shrink: 0;
  color: #2C3E50;
}

.integration-footer {
  border-top: 1px solid rgba(255, 132, 75, 0.2);
  padding-top: 10px;
  margin-top: auto;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-title {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 2px;
  color: #2C3E50;
}

.footer-description {
  color: #2C3E50;
  font-size: 10px;
  opacity: 0.7;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  background-color: #FF844B;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  padding: 2px;
}

.toggle-dot {
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  margin-left: auto;
}

/* Analytics Card */
.card-analytics {
}

.analytics-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  color: #2C3E50;
}

.analytics-description {
  color: #2C3E50;
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}

.analytics-visual {
  position: relative;
  height: 140px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  min-height: 120px;
  padding: 0 8px;
}

.analytics-chart {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  opacity: 0;
  animation: chartFadeIn 1s ease-out 2.8s forwards;
}

@keyframes chartFadeIn {
  to {
    opacity: 1;
  }
}

.chart-bar {
  position: relative;
  flex: 1;
  background: linear-gradient(180deg, #2C3E50 0%, #34495E 100%);
  border-radius: 10px 10px 0 0;
  height: 0;
  transform-origin: bottom;
  animation: barGrow 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}


@keyframes labelFadeIn {
  to {
    opacity: 1;
  }
}

.chart-bar:nth-child(1) {
  animation-delay: 2.9s;
  --bar-delay: 2.9s;
}

.chart-bar:nth-child(2) {
  animation-delay: 3.0s;
  --bar-delay: 3.0s;
}

.chart-bar:nth-child(3) {
  animation-delay: 3.1s;
  --bar-delay: 3.1s;
}

.chart-bar:nth-child(4) {
  animation-delay: 3.2s;
  --bar-delay: 3.2s;
}

.chart-bar:nth-child(5) {
  animation-delay: 3.3s;
  --bar-delay: 3.3s;
}

.chart-bar:nth-child(6) {
  animation-delay: 3.4s;
  --bar-delay: 3.4s;
}

.chart-bar:nth-child(7) {
  animation-delay: 3.5s;
  --bar-delay: 3.5s;
}

.chart-bar:nth-child(8) {
  animation-delay: 3.6s;
  --bar-delay: 3.6s;
}

.chart-bar:nth-child(9) {
  animation-delay: 3.7s;
  --bar-delay: 3.7s;
  --bar-height: 88%;
}

.chart-bar[data-highest="true"] {
  animation-delay: 3.8s;
  --bar-delay: 3.8s;
  background: linear-gradient(180deg, #FF844B 0%, #FF6B2C 50%, #FF5722 100%);
  box-shadow: 0 8px 28px rgba(255, 132, 75, 0.35), 0 4px 12px rgba(255, 132, 75, 0.25);
  animation: barGrowHighlight 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) 3.8s forwards;
  opacity: 0;
}

.chart-bar[data-highest="true"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  border-radius: 8px 8px 0 0;
  opacity: 0;
  animation: shimmer 0.8s ease-out 5.4s forwards;
}

.chart-bar:hover {
  cursor: pointer;
  filter: brightness(1.1);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.chart-bar[data-highest="true"]:hover {
  filter: brightness(1.1);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(255, 132, 75, 0.45), 0 6px 16px rgba(255, 132, 75, 0.3);
}

@keyframes shimmer {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@keyframes barGrow {
  0% {
    height: 0;
    opacity: 0;
    transform: scaleY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    height: var(--bar-height);
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes barGrowHighlight {
  0% {
    height: 0;
    opacity: 0;
    transform: scaleY(0);
    filter: brightness(1);
  }
  50% {
    opacity: 1;
  }
  70% {
    height: var(--bar-height);
    transform: scaleY(1);
  }
  85% {
    filter: brightness(1.3);
    transform: scaleY(1.05);
  }
  100% {
    height: var(--bar-height);
    opacity: 1;
    transform: scaleY(1);
    filter: brightness(1.1);
  }
}

.concentric-circles {
  position: absolute;
  width: 110px;
  height: 110px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: circlesMorph 2.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  filter: blur(0px);
}

@keyframes circlesMorph {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0px);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15) rotate(90deg);
    filter: blur(0px);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.3) rotate(270deg);
    filter: blur(1px);
  }
  75% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.6) rotate(450deg);
    filter: blur(3px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(720deg);
    filter: blur(5px);
    pointer-events: none;
  }
}

.circle {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  animation: circlePulse 2s ease-in-out infinite;
}

@keyframes circlePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.circle-1 {
  inset: 0;
  border-width: 9px;
  border-color: rgba(255, 132, 75, 0.3);
  animation-delay: 0s;
}

.circle-2 {
  inset: 10px;
  border-width: 8px;
  border-color: rgba(255, 132, 75, 0.35);
  animation-delay: 0.1s;
}

.circle-3 {
  inset: 19px;
  border-width: 7px;
  border-color: rgba(255, 132, 75, 0.4);
  animation-delay: 0.2s;
}

.circle-4 {
  inset: 28px;
  border-width: 6px;
  border-color: rgba(255, 132, 75, 0.45);
  animation-delay: 0.3s;
}

.circle-5 {
  inset: 36px;
  border-width: 5px;
  border-color: rgba(255, 132, 75, 0.5);
  animation-delay: 0.4s;
}

.circle-6 {
  inset: 43px;
  background-color: rgba(255, 132, 75, 0.6);
  border: none;
  animation-delay: 0.5s;
}

.visitor-count-display {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: countUp 2s ease-out 3s forwards;
  z-index: 2;
  letter-spacing: -0.02em;
}

.visitor-count-label {
  position: absolute;
  top: 51px;
  right: 16px;
  font-size: 10px;
  font-weight: 500;
  color: #2C3E50;
  opacity: 0;
  animation: countUp 2s ease-out 3.3s forwards;
  z-index: 2;
  letter-spacing: 0.02em;
}

@keyframes countUp {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Demo Section */
.demo-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 244, 235, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 32px;
}

.demo-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.demo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.demo-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #2C3E50;
  letter-spacing: -0.02em;
  margin: 0;
}

.demo-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  opacity: 0.85;
  margin: 0;
  font-weight: 400;
  max-width: 700px;
}

.demo-intro strong {
  font-weight: 600;
  color: #FF844B;
}

.demo-promise {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  margin: 24px 0 0 0;
}

.promise-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promise-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 132, 75, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.promise-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 132, 75, 0.2);
  box-shadow: 0 8px 24px rgba(255, 132, 75, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.promise-item:hover::before {
  opacity: 1;
}

.promise-icon {
  width: 36px;
  height: 36px;
  color: #FF844B;
  flex-shrink: 0;
}

.promise-number {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.promise-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #2C3E50;
  opacity: 0.8;
  margin: 0;
}

.promise-divider {
  display: none;
}

.demo-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
}

.demo-tagline {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  opacity: 0.85;
  margin: 0;
  font-weight: 400;
  text-align: left;
  max-width: 650px;
}

.demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 132, 75, 0.3);
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.demo-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.demo-cta:hover::before {
  left: 100%;
}

.demo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 132, 75, 0.4);
  background: linear-gradient(135deg, #FF6B2C 0%, #FF5722 100%);
}

.demo-cta svg {
  transition: transform 0.3s ease;
}

.demo-cta:hover svg {
  transform: translateX(4px);
}

/* Demo + Collage Combined Section */
.demo-collage-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px;
  position: relative;
}

.demo-collage-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.demo-collage-container .collage-photos {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 500px;
}

.collage-photo {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

.collage-photo:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  z-index: 10 !important;
}

.collage-photo::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
  filter: blur(15px);
  z-index: -1;
}

.collage-photo-1 {
  width: 320px;
  height: 240px;
  top: 15%;
  left: 5%;
  transform: rotate(-7deg);
  z-index: 2;
}

.collage-photo-2 {
  width: 360px;
  height: 270px;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 3;
  border: 2px solid rgba(255, 255, 255, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10), 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.collage-photo-3 {
  width: 340px;
  height: 255px;
  top: 5%;
  right: 5%;
  transform: rotate(6deg);
  z-index: 1;
}

/* Process Section */
.process-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 60px 48px;
  position: relative;
}

.process-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.process-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2C3E50;
  text-align: left;
  margin: 0;
}

.process-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  opacity: 0.85;
  margin: 0;
  text-align: left;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 20px;
  border: 2px solid rgba(255, 132, 75, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation: stepFadeInRight 0.6s ease forwards;
}

.process-step[data-step="1"] {
  animation-delay: 0.1s;
}

.process-step[data-step="2"] {
  animation-delay: 0.3s;
}

.process-step[data-step="3"] {
  animation-delay: 0.5s;
}

.process-step[data-step="4"] {
  animation-delay: 0.7s;
}

@keyframes stepFadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.process-step:hover {
  transform: translateX(-8px);
  border-color: rgba(255, 132, 75, 0.3);
  box-shadow: 0 12px 32px rgba(255, 132, 75, 0.15);
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 132, 75, 0.3);
}

.step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 132, 75, 0.1) 0%, rgba(255, 107, 44, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: #FF844B;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background: linear-gradient(135deg, rgba(255, 132, 75, 0.2) 0%, rgba(255, 107, 44, 0.1) 100%);
  transform: scale(1.1);
}

.process-step:hover .step-icon svg {
  stroke: #FF6B2C;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  text-align: left;
  letter-spacing: -0.01em;
}

.step-description {
  font-size: 14px;
  line-height: 1.5;
  color: #2C3E50;
  opacity: 0.7;
  margin: 0;
  text-align: left;
}

.process-arrow {
  display: none;
}

/* About Nest Section */
.about-nest-section {
  max-width: 1600px;
  margin: 100px auto 0;
  padding: 0 0 60px 48px;
  position: relative;
}

.about-nest-container {
  width: 100%;
}

.about-nest-content {
  display: grid;
  grid-template-columns: 475px 1fr;
  gap: 100px;
  align-items: center;
}

.about-nest-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-nest-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF7632;
  margin: 0;
}

.about-nest-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #2C3E50;
  letter-spacing: -0.02em;
  margin: 0;
}

.about-nest-description {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  opacity: 0.85;
  margin: 0;
}

.about-nest-description em {
  font-style: italic;
  opacity: 0.7;
}

.about-nest-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(255, 132, 75, 0.3);
  align-self: flex-start;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

.about-nest-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.about-nest-button:hover::before {
  width: 300px;
  height: 300px;
}

.about-nest-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 132, 75, 0.4);
  background: linear-gradient(135deg, #FF6B2C 0%, #FF5722 100%);
}

.about-nest-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.about-nest-button:hover svg {
  transform: translateX(4px);
}

.about-nest-images {
  position: relative;
  width: calc(100% + 48px);
  height: 480px;
  overflow: hidden;
  margin-right: -48px;
}

.about-nest-track {
  display: flex;
  gap: 16px;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-nest-slide {
  flex-shrink: 0;
  width: 600px;
  height: 100%;
  display: flex;
  gap: 0;
  overflow: hidden;
  border-radius: 16px;
}

.about-nest-slide.active {
  opacity: 1;
}

.about-nest-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-nest-image-accent {
  width: 200px;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-nest-controls {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.about-nest-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-nest-arrow:hover {
  background: #00D9A3;
  transform: scale(1.1);
}

.about-nest-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #1a1a1a;
  transition: stroke 0.3s ease;
}

.about-nest-arrow:hover svg {
  stroke: white;
}

.about-nest-dots {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.about-nest-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.about-nest-dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.about-nest-dot.active {
  background: #FF7632;
  width: 10px;
  height: 10px;
}

/* Demo Carousel Section */

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    overflow-y: auto;
  }

  body::before {
    height: 100vh;
    max-height: 700px;
    background-image:
      url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='grad1' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23FFC9B3;stop-opacity:1' /%3E%3Cstop offset='70%25' style='stop-color:%23FFD8C7;stop-opacity:0.2' /%3E%3Cstop offset='100%25' style='stop-color:%23FFE2D5;stop-opacity:0' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grad1)'/%3E%3Cpath d='M0,80 Q180,40 360,90 T720,70 T1080,100 L1080,0 L0,0 Z' fill='%23FFD4C0' opacity='0.6'/%3E%3Cpath d='M0,160 Q200,100 400,170 T800,140 T1200,180 L1200,0 L0,0 Z' fill='%23FFC8B4' opacity='0.7'/%3E%3Cpath d='M0,260 Q220,180 440,280 T880,240 T1320,300 L1320,0 L0,0 Z' fill='%23FFCEB8' opacity='0.6'/%3E%3C/svg%3E");
  }

  .container {
    height: auto;
    min-height: 100vh;
    padding: 0 20px 40px;
  }

  .nav {
    padding: 16px 0 12px;
  }

  .nav-brand {
    gap: 8px;
  }

  .logo {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 32px 0 40px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 42px);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -1.2px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 100%;
    opacity: 0.8;
    padding: 0 8px;
  }

  .email-section {
    margin-bottom: 0;
    gap: 16px;
    padding: 0 4px;
  }

  .email-label {
    font-size: 14px;
    font-weight: 600;
  }

  .email-form {
    max-width: 100%;
    flex-direction: column;
    gap: 12px;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
  }

  .email-form:hover {
    transform: none;
    box-shadow: none;
  }

  .email-input-wrapper {
    width: 100%;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(255, 132, 75, 0.2), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .email-input-wrapper:focus-within {
    border-color: rgba(255, 132, 75, 0.5);
    box-shadow: 0 12px 32px rgba(255, 132, 75, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 1);
  }

  .email-input {
    font-size: 16px;
  }

  .email-submit {
    width: 100%;
    border-radius: 16px;
    padding: 18px 24px;
    border: 2px solid rgba(255, 132, 75, 0.3);
    box-shadow: 0 8px 24px rgba(255, 132, 75, 0.3), 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .email-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 132, 75, 0.4), 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .email-disclaimer {
    font-size: 12px;
    margin-top: 4px;
  }

  .website-works-section {
    padding: 60px 20px 80px;
  }

  .website-works-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .website-works-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .works-card {
    padding: 32px 24px 28px;
  }

  .works-card-featured {
    padding: 36px 24px 32px;
  }

  .works-card-icon {
    width: 64px;
    height: 64px;
  }

  .works-card-icon svg {
    width: 32px;
    height: 32px;
  }

  .works-card-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .works-card-stats {
    padding: 10px 16px;
  }

  .works-stat-number {
    font-size: 20px;
  }

  .works-card-text {
    font-size: 14px;
  }

  .works-list-item span {
    font-size: 13px;
  }

  .works-card-cta {
    padding: 12px 24px;
    font-size: 14px;
  }

  .bottom-section {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .card-kpi,
  .card-integrations,
  .card-analytics {
    display: none;
  }

  .features-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .feature-card {
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 32px rgba(255, 132, 75, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .feature-card:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 40px rgba(255, 132, 75, 0.25), 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 132, 75, 0.15), rgba(255, 107, 44, 0.1));
    border: 2px solid rgba(255, 132, 75, 0.3);
    box-shadow: 0 4px 16px rgba(255, 132, 75, 0.2);
  }

  .feature-icon-image img {
    padding: 6px;
  }

  .feature-content {
    flex: 1;
  }

  .feature-title {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .feature-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.75;
  }

  .demo-section {
    padding: 80px 0;
  }

  .demo-container {
    padding: 0 20px;
  }

  .demo-heading {
    font-size: 32px;
  }

  .demo-intro {
    font-size: 17px;
  }

  .demo-promise {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .promise-divider {
    display: none;
  }

  .promise-number {
    font-size: 32px;
  }

  .promise-item p {
    font-size: 14px;
  }

  .demo-tagline {
    font-size: 16px;
  }

  .demo-cta {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 16px;
  }

  .demo-collage-section {
    padding: 60px 20px;
  }

  .demo-collage-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .demo-collage-container .collage-photos {
    width: 100%;
    height: 600px;
    min-width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .demo-footer {
    align-items: center;
  }

  .demo-tagline {
    text-align: center;
  }

  .process-section {
    padding: 60px 20px;
    margin: 60px auto;
  }

  .process-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-heading {
    font-size: 32px;
    text-align: center;
  }

  .process-intro {
    font-size: 15px;
    text-align: center;
  }

  .process-steps {
    gap: 20px;
  }

  .process-step {
    width: 100%;
    flex-direction: row;
    padding: 20px;
  }

  .about-nest-section {
    padding: 60px 20px 60px 20px;
    margin: 60px auto;
    border-radius: 16px;
  }

  .about-nest-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-nest-images {
    width: calc(100% + 40px);
    margin-right: -20px;
    height: 400px;
  }

  .about-nest-heading {
    font-size: 32px;
  }

  .about-nest-slide {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-nest-image-accent {
    display: none;
  }


  .collage-photo-1 {
    width: 280px;
    height: 210px;
    position: relative;
    top: auto;
    left: auto;
    transform: rotate(-3deg);
  }

  .collage-photo-2 {
    width: 260px;
    height: 195px;
    position: relative;
    bottom: auto;
    left: auto;
    transform: rotate(-1deg);
  }

  .collage-photo-3 {
    width: 240px;
    height: 180px;
    position: relative;
    top: auto;
    right: auto;
    transform: rotate(2deg);
  }
}


/* Response Time Card Styles */
.card-response-time {
  position: relative;
  overflow: visible;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.card-response-time.mounted {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.rt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 179, 153, 0.05) 0%, transparent 50%, rgba(255, 140, 82, 0.05) 100%);
  pointer-events: none;
}

.rt-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  opacity: 0;
  transition: all 1200ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rt-glow-1 {
  top: -60px;
  right: -60px;
  background: rgba(255, 179, 153, 0.15);
  transition-delay: 200ms;
}

.rt-glow-2 {
  bottom: -60px;
  left: -60px;
  background: rgba(255, 140, 82, 0.15);
  transition-delay: 400ms;
}

.card-response-time.mounted .rt-glow {
  opacity: 1;
}


.rt-content {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rt-timer-box {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #172554 50%, #0f172a 100%);
  border-radius: 20px;
  padding: 16px 12px;
  margin-bottom: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: scale(0.92) rotate(-3deg);
  transition: all 1000ms cubic-bezier(0.34, 1.56, 0.64, 1) 300ms;
}

.card-response-time.mounted .rt-timer-box {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.rt-timer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 179, 153, 0.08) 0%, transparent 50%, rgba(255, 140, 82, 0.08) 100%);
  border-radius: 20px;
}

.rt-timer-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0;
  transition: opacity 1000ms ease-out;
}

.rt-timer-glow-1 {
  top: 0;
  left: 20%;
  background: rgba(255, 179, 153, 0.25);
  transition-delay: 500ms;
}

.rt-timer-glow-2 {
  bottom: 0;
  right: 20%;
  background: rgba(255, 140, 82, 0.25);
  transition-delay: 700ms;
}

.card-response-time.mounted .rt-timer-glow {
  opacity: 1;
}

.rt-timer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 600ms cubic-bezier(0.34, 1.56, 0.64, 1) 500ms;
}

.card-response-time.mounted .rt-timer-header {
  opacity: 1;
  transform: translateY(0);
}

.rt-clock-icon {
  width: 16px;
  height: 16px;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.rt-timer-label {
  font-size: 12px;
  font-weight: 600;
  color: #FFB399;
  letter-spacing: 0.04em;
}

.rt-timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.rt-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rt-timer-value {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
  line-height: 1;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rt-timer-value.rt-seconds {
  background: linear-gradient(135deg, #FFB399, #FF8C52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(20px) scale(0.7) rotate(10deg);
  transition: all 900ms cubic-bezier(0.34, 1.56, 0.64, 1) 1100ms;
}

.card-response-time.mounted .rt-timer-value {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0);
}

.rt-timer-unit-label {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 600ms ease-out;
}

.rt-timer-unit-label.rt-seconds-label {
  color: #FF8C52;
}

.card-response-time.mounted .rt-timer-unit-label {
  opacity: 1;
}

.rt-colon {
  font-size: 56px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 600ms ease-out;
}

.card-response-time.mounted .rt-colon {
  opacity: 1;
}

.rt-cta-section {
  opacity: 0;
  transform: translateY(12px);
  transition: all 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 1400ms;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8px;
}

.card-response-time.mounted .rt-cta-section {
  opacity: 1;
  transform: translateY(0);
}

.rt-description {
  margin-bottom: 20px;
}

.rt-description p {
  font-size: 13px;
  color: #2C3E50;
  line-height: 1.6;
  margin-bottom: 4px;
  font-weight: 500;
  opacity: 0.9;
}

.rt-description h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0;
  line-height: 1.1;
  margin-top: 2px;
}

.rt-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(255, 132, 75, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.rt-cta-btn span {
  position: relative;
  z-index: 1;
}

.rt-cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.rt-cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.rt-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 132, 75, 0.4);
  background: linear-gradient(135deg, #FF6B2C 0%, #FF5722 100%);
}

.rt-arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.rt-cta-btn:hover .rt-arrow-icon {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .rt-content {
    padding: 24px 20px;
  }

  .rt-timer-box {
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
  }

  .rt-timer-label {
    font-size: 14px;
  }

  .rt-timer-value,
  .rt-colon {
    font-size: 48px;
  }

  .rt-timer-unit-label {
    font-size: 10px;
    margin-top: 8px;
  }

  .rt-colon {
    padding-bottom: 20px;
  }

  .rt-description p {
    font-size: 16px;
  }

  .rt-cta-btn {
    padding: 14px 28px;
    font-size: 15px;
    gap: 8px;
    border-radius: 50px;
  }

  .rt-arrow-icon {
    width: 18px;
    height: 18px;
  }

  .rt-clock-icon {
    width: 16px;
    height: 16px;
  }

}

/* Website Plan Section */
.website-plan-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 100px;
  position: relative;
}

.website-plan-container {
  max-width: 1280px;
  margin: 0 auto;
}

.website-plan-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #2C3E50;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}

.website-plan-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
  font-weight: 400;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
  margin-bottom: 56px;
}

.pricing-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(44, 62, 80, 0.06);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(24px);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(44, 62, 80, 0.06);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pricing-card.pricing-card-animate {
  animation: pricingSlideUp 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pricing-card-highlighted {
  background: linear-gradient(180deg, #fffaf7 0%, #fff7f2 100%);
  box-shadow:
    0 1px 3px rgba(255, 132, 75, 0.04),
    0 4px 16px rgba(255, 132, 75, 0.05),
    0 16px 40px rgba(255, 132, 75, 0.06);
  border: 1px solid rgba(255, 132, 75, 0.12);
}

.pricing-card-highlighted::before {
  opacity: 1;
  background: linear-gradient(90deg, #FF844B 0%, #FF6B2C 100%);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.06),
    0 20px 48px rgba(44, 62, 80, 0.1);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card-highlighted:hover {
  box-shadow:
    0 1px 3px rgba(255, 132, 75, 0.06),
    0 8px 24px rgba(255, 132, 75, 0.08),
    0 24px 56px rgba(255, 132, 75, 0.1);
}

.plan-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(44, 62, 80, 0.06);
}

.pricing-card-highlighted .plan-card-header {
  border-bottom-color: rgba(255, 132, 75, 0.12);
}

.plan-building-icon-container {
  flex-shrink: 0;
  width: 5.5rem;
  height: 5.5rem;
}

.plan-package-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1e293b;
  text-transform: uppercase;
}

.pricing-card-highlighted .plan-package-name {
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.plan-section {
  opacity: 0;
  transform: translateY(6px);
}

.plan-section-question {
  margin-top: auto;
  padding-top: 0.75rem;
}

.pricing-card-animate .plan-section {
  animation: planSectionFadeIn 0.2s ease-out forwards;
}

.pricing-card-animate .plan-section:nth-child(1) {
  animation-delay: 0.02s;
}

.pricing-card-animate .plan-section:nth-child(2) {
  animation-delay: 0.04s;
}

.pricing-card-animate .plan-section:nth-child(3) {
  animation-delay: 0.06s;
}

.pricing-card-animate .plan-feature-item {
  opacity: 0;
  transform: translateX(-6px);
  animation: planFeatureFadeIn 0.15s ease-out forwards;
}

.pricing-card-animate .plan-feature-item:nth-child(1) {
  animation-delay: 0.06s;
}

.pricing-card-animate .plan-feature-item:nth-child(2) {
  animation-delay: 0.08s;
}

.pricing-card-animate .plan-feature-item:nth-child(3) {
  animation-delay: 0.1s;
}

.pricing-card-animate .plan-feature-item:nth-child(4) {
  animation-delay: 0.12s;
}

.pricing-card-animate .plan-cta-wrapper {
  opacity: 0;
  animation: planSectionFadeIn 0.2s ease-out 0.14s forwards;
}

.plan-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

.plan-card-description {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.plan-intro-text {
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.5rem 0.75rem;
  background: rgba(44, 62, 80, 0.02);
  border-radius: 10px;
  transition: background 0.2s ease;
}

.pricing-card-highlighted .plan-feature-item {
  background: rgba(255, 132, 75, 0.04);
}

.plan-feature-item:hover {
  background: rgba(44, 62, 80, 0.04);
}

.pricing-card-highlighted .plan-feature-item:hover {
  background: rgba(255, 132, 75, 0.08);
}

.plan-check-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
}

.plan-feature-text {
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.plan-question-text {
  color: #64748b;
  font-size: 0.9375rem;
  font-weight: 500;
  font-style: italic;
}

.plan-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.plan-cta-button {
  width: 100%;
  padding: 15px 24px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9375rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.2);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.plan-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.4s ease;
}

.plan-cta-button:hover::before {
  left: 100%;
}

.pricing-card-highlighted .plan-cta-button {
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  box-shadow: 0 4px 16px rgba(255, 132, 75, 0.35);
}

.plan-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 41, 59, 0.3);
}

.pricing-card-highlighted .plan-cta-button:hover {
  box-shadow: 0 8px 24px rgba(255, 132, 75, 0.45);
}

.plan-cta-secondary {
  width: 100%;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 600;
  border: 2px solid rgba(44, 62, 80, 0.12);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  background: transparent;
  color: #475569;
  text-decoration: none;
}

.plan-cta-secondary:hover {
  background: rgba(44, 62, 80, 0.04);
  border-color: rgba(44, 62, 80, 0.2);
  color: #1e293b;
}

.pricing-card-highlighted .plan-cta-secondary {
  border-color: rgba(255, 132, 75, 0.2);
  color: #FF844B;
}

.pricing-card-highlighted .plan-cta-secondary:hover {
  background: rgba(255, 132, 75, 0.06);
  border-color: rgba(255, 132, 75, 0.35);
}

.plan-arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.plan-cta-button span,
.plan-cta-secondary span {
  position: relative;
  z-index: 1;
}

.plan-cta-button:hover .plan-arrow-icon,
.plan-cta-secondary:hover .plan-arrow-icon {
  transform: translateX(3px);
}

.plan-eye-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.plan-cta-secondary:hover .plan-eye-icon {
  transform: scale(1.1);
}

.website-plan-info {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(44, 62, 80, 0.06);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(44, 62, 80, 0.06);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.website-plan-info-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.website-plan-info-text {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  font-weight: 400;
}

@keyframes pricingSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes planSectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes planFeatureFadeIn {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.plan-building-icon {
  animation: planBuildingGrow 0.8s ease-out forwards;
}

.plan-building-animate .plan-building-body {
  animation: planBuildingGrow 0.6s ease-out forwards;
}

.plan-building-animate .plan-building-roof {
  animation: planRoofSlide 0.8s ease-out 0.3s forwards;
}

.plan-building-animate .plan-window {
  animation: planWindowGlow 2s ease-in-out infinite;
}

.plan-building-animate .plan-window.delay-1 { animation-delay: 0.1s; }
.plan-building-animate .plan-window.delay-2 { animation-delay: 0.2s; }
.plan-building-animate .plan-window.delay-3 { animation-delay: 0.3s; }
.plan-building-animate .plan-window.delay-4 { animation-delay: 0.4s; }
.plan-building-animate .plan-window.delay-5 { animation-delay: 0.5s; }
.plan-building-animate .plan-window.delay-6 { animation-delay: 0.6s; }

.plan-building-animate .plan-door {
  animation: planBuildingGrow 0.5s ease-out 0.5s forwards;
  opacity: 0;
}

@keyframes planBuildingGrow {
  0% {
    transform: translateY(20px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 4rem 1rem;
  background-color: white;
}

.cta-banner-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 50%, #ffc299 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s ease-out;
}

.cta-banner.visible {
  opacity: 1;
  transform: scale(1);
}

.cta-circles-container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 66.666%;
  pointer-events: none;
  overflow: hidden;
}

.cta-circles-wrapper {
  position: absolute;
  right: -8rem;
  top: 50%;
  transform: translateY(-50%) scale(0.75);
  opacity: 0;
  transition: all 1.5s ease-out 0.3s;
}

.cta-banner.visible .cta-circles-wrapper {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.cta-circles {
  position: relative;
  width: 24rem;
  height: 24rem;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 1s ease-out;
}

.cta-banner.visible .cta-circle {
  opacity: 1;
  transform: scale(1);
}

.cta-circle-1 {
  inset: 0;
  border: 60px solid rgba(251, 146, 60, 0.3);
  transition-delay: 0.5s;
}

.cta-circle-2 {
  inset: 3rem;
  border: 50px solid rgba(253, 186, 116, 0.25);
  transition-delay: 0.7s;
}

.cta-circle-3 {
  inset: 6rem;
  border: 40px solid rgba(254, 215, 170, 0.2);
  transition-delay: 0.9s;
}

.cta-circle-4 {
  inset: 9rem;
  border: 30px solid rgba(255, 237, 213, 0.15);
  transition-delay: 1.1s;
}

.cta-floating-text-container {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  opacity: 0.05;
}

.cta-floating-text {
  color: white;
  font-weight: 900;
  font-size: 2.25rem;
  white-space: nowrap;
  animation: ctaScrollText 30s linear infinite;
}

@keyframes ctaScrollText {
  0% {
    transform: translateX(0) rotate(-6deg);
  }
  100% {
    transform: translateX(-50%) rotate(-6deg);
  }
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease-out 0.5s;
  white-space: nowrap;
}

.cta-banner.visible .cta-title {
  opacity: 1;
  transform: translateY(0);
}

.cta-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 36rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease-out 0.7s;
}

.cta-banner.visible .cta-description {
  opacity: 1;
  transform: translateY(0);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease-out 0.9s;
}

.cta-banner.visible .cta-buttons {
  opacity: 1;
  transform: translateY(0);
}

.cta-btn {
  background: #000000;
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-btn span {
  position: relative;
  z-index: 1;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta-btn:hover {
  background: #1f2937;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cta-arrow-icon {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-btn:hover .cta-arrow-icon {
  transform: translateX(0.25rem);
}

@media (min-width: 640px) {
  .cta-banner {
    padding: 3rem;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .cta-floating-text {
    font-size: 3.75rem;
  }

  .cta-circles {
    width: 31.25rem;
    height: 31.25rem;
  }
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-banner {
    padding: 4rem;
  }

  .cta-title {
    font-size: 3.75rem;
  }

  .cta-description {
    font-size: 1.125rem;
  }

  .cta-floating-text {
    font-size: 4.5rem;
  }

  .cta-circles {
    width: 37.5rem;
    height: 37.5rem;
  }
}

@keyframes planWindowGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes planRoofSlide {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .website-plan-heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .website-plan-section {
    padding: 60px 20px 80px;
  }

  .website-plan-heading {
    font-size: 28px;
  }

  .website-plan-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .website-plan-info {
    padding: 28px 24px;
  }

  .website-plan-info-title {
    font-size: 20px;
  }

  .website-plan-info-text {
    font-size: 15px;
  }
}

/* Spinner Animation */
.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Bento Grid Showcase Styles */
.bento-grid-showcase {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  transition: all 0.6s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(250, 250, 250, 0.4) 100%);
  padding: 32px;
  border-radius: 24px;
  box-shadow:
    0 2px 8px rgba(44, 62, 80, 0.04),
    0 8px 24px rgba(44, 62, 80, 0.06),
    0 20px 48px rgba(255, 132, 75, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(44, 62, 80, 0.08);
  backdrop-filter: blur(20px);
}

.bento-grid-showcase::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 132, 75, 0.15) 0%, transparent 30%, rgba(255, 179, 153, 0.1) 100%);
  z-index: -1;
  opacity: 0.5;
  filter: blur(12px);
}

.bento-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1), filter 0.4s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.4s ease;
  cursor: pointer;
  perspective: 800px;
  background: white;
}

.bento-tile:hover {
  box-shadow: 0 12px 32px rgba(44, 62, 80, 0.16), 0 6px 16px rgba(0, 0, 0, 0.1);
}

.bento-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1), filter 0.7s cubic-bezier(0.22,0.61,0.36,1);
  transform: translateZ(0);
  filter: brightness(0.92) contrast(1.08) saturate(1.15);
}

.bento-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1.0) contrast(1.1) saturate(1.2);
}

.bento-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-tile:hover::after {
  opacity: 1;
}

.bento-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,62,80,0) 0%, rgba(44,62,80,0.75) 100%);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22,0.61,0.36,1);
}

.bento-kpi {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: #2C3E50;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.15);
  border: 1px solid rgba(255, 132, 75, 0.2);
  z-index: 2;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.bento-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s cubic-bezier(0.22,0.61,0.36,1), transform 0.45s cubic-bezier(0.22,0.61,0.36,1);
  z-index: 2;
}

.bento-title {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.bento-desc {
  margin: 0 0 12px 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
}

.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FF844B;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(255, 132, 75, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bento-cta:hover {
  background: #FF6B2C;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 132, 75, 0.5);
}

.bento-tile.bento-focus .bento-content {
  opacity: 1;
  transform: translateY(0);
}

.bento-tile.bento-focus .bento-veil {
  opacity: 1;
}

.bento-grid-showcase.bento-intro .bento-tile {
  opacity: 0;
  transform: scale(0.94);
}

.bento-grid-showcase.bento-intro.bento-ready .bento-tile {
  opacity: 1;
  transform: none;
  transition: transform 0.60s cubic-bezier(0.22,0.61,0.36,1), opacity 0.45s ease;
}

.bento-grid-showcase.bento-intro.bento-ready .bento-tile:nth-child(1) {
  transition-delay: 60ms;
}

.bento-grid-showcase.bento-intro.bento-ready .bento-tile:nth-child(2) {
  transition-delay: 160ms;
}

.bento-grid-showcase.bento-intro.bento-ready .bento-tile:nth-child(3) {
  transition-delay: 260ms;
}

.bento-grid-showcase.bento-intro.bento-ready .bento-tile:nth-child(4) {
  transition-delay: 360ms;
}

.bento-grid-showcase.bento-state-1 .bento-tile:nth-child(1) {
  transform: translate(20%, 20%) scale(1.55);
  z-index: 3;
}

.bento-grid-showcase.bento-state-2 .bento-tile:nth-child(2) {
  transform: translate(-20%, 20%) scale(1.55);
  z-index: 3;
}

.bento-grid-showcase.bento-state-3 .bento-tile:nth-child(3) {
  transform: translate(20%, -20%) scale(1.55);
  z-index: 3;
}

.bento-grid-showcase.bento-state-4 .bento-tile:nth-child(4) {
  transform: translate(-20%, -20%) scale(1.55);
  z-index: 3;
}

.bento-grid-showcase.bento-state-1 .bento-tile:nth-child(1) .bento-veil,
.bento-grid-showcase.bento-state-2 .bento-tile:nth-child(2) .bento-veil,
.bento-grid-showcase.bento-state-3 .bento-tile:nth-child(3) .bento-veil,
.bento-grid-showcase.bento-state-4 .bento-tile:nth-child(4) .bento-veil {
  opacity: 1;
}

.bento-grid-showcase.bento-state-1 .bento-tile:nth-child(1) .bento-content,
.bento-grid-showcase.bento-state-2 .bento-tile:nth-child(2) .bento-content,
.bento-grid-showcase.bento-state-3 .bento-tile:nth-child(3) .bento-content,
.bento-grid-showcase.bento-state-4 .bento-tile:nth-child(4) .bento-content {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .bento-grid-showcase {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
/* Sticky Navbar Styles */
.sticky-navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  max-width: 1200px;
  width: calc(100% - 64px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sticky-navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  top: 12px;
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s ease;
}

.sticky-navbar.scrolled .navbar-container {
  padding: 10px 32px;
}

/* Logo Section */
.navbar-logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar-logo-section:hover {
  transform: translateY(-2px);
}

.navbar-logo-wrapper {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 47, 73, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
}

.sticky-navbar.scrolled .navbar-logo-wrapper {
  width: 32px;
  height: 32px;
}

.navbar-logo-wrapper:hover {
  box-shadow: 0 4px 16px rgba(255, 118, 50, 0.3);
  transform: scale(1.05);
}

.navbar-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-brand-text {
  font-size: 16px;
  font-weight: 700;
  color: #002F49;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.navbar-logo-section:hover .navbar-brand-text {
  color: #FF7632;
}

/* Navigation Links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-link {
  font-size: 14px;
  font-weight: 500;
  color: #002F49;
  text-decoration: none;
  position: relative;
  padding: 6px 4px;
  transition: color 0.3s ease;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #FF7632;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-link:hover {
  color: #FF7632;
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-link.active {
  color: #FF7632;
  font-weight: 600;
}

.navbar-link.active::after {
  width: 100%;
}

/* CTA Button */
.navbar-cta {
  padding: 8px 20px;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(255, 132, 75, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.navbar-cta span {
  position: relative;
  z-index: 1;
}

.navbar-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.navbar-cta:hover::before {
  width: 300px;
  height: 300px;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 132, 75, 0.4);
  background: linear-gradient(135deg, #FF6B2C 0%, #FF5722 100%);
}

.navbar-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.navbar-cta:hover svg {
  transform: translateX(4px);
}

/* Mobile Menu Toggle */
.navbar-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #FF7632;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.navbar-menu-toggle:hover {
  background: #FF7632;
}

.navbar-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #FF7632;
  transition: all 0.3s ease;
}

.navbar-menu-toggle:hover span {
  background: white;
}

.navbar-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Styles */
@media (max-width: 968px) {
  .sticky-navbar {
    width: calc(100% - 48px);
  }

  .navbar-container {
    padding: 12px 24px;
  }

  .sticky-navbar.scrolled .navbar-container {
    padding: 10px 24px;
  }

  .navbar-links {
    gap: 20px;
  }

  .navbar-link {
    font-size: 13px;
  }

  .navbar-cta {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .sticky-navbar {
    width: calc(100% - 32px);
    top: 12px;
    border-radius: 50px;
  }

  .sticky-navbar.scrolled {
    top: 8px;
  }

  .navbar-container {
    padding: 10px 20px;
  }

  .sticky-navbar.scrolled .navbar-container {
    padding: 8px 20px;
  }

  .navbar-menu-toggle {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 16px;
  }

  .navbar-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .navbar-logo-wrapper {
    width: 32px;
    height: 32px;
  }

  .navbar-brand-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .sticky-navbar {
    width: calc(100% - 24px);
  }

  .navbar-container {
    padding: 8px 16px;
  }

  .sticky-navbar.scrolled .navbar-container {
    padding: 6px 16px;
  }

  .navbar-logo-wrapper {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-text {
    font-size: 14px;
  }

  .navbar-links {
    top: 68px;
  }
}
/* Footer Styles */
.site-footer {
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* CTA Section */
.footer-cta-section {
  padding: 40px 48px 0;
  position: relative;
  overflow: visible;
  margin-top: 20px;
  background-color: white;
}

.footer-cta-section .cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 64px;
  background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 50%, #ffc299 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-cta-content {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-cta-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-style: normal;
}

.footer-cta-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
  max-width: 600px;
}

.footer-main {
  background: #2C3E50;
  padding: 56px 48px 28px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-radius: 40px 40px 0 0;
  box-shadow: none;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 180, 153, 0.3) 50%, transparent 100%);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 48px;
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 0 48px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Form */
.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.footer-contact-form:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-form-label {
  font-size: 12px;
  font-weight: 600;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-form-input,
.footer-form-textarea {
  padding: 12px 16px;
  background: white;
  border: 2px solid rgba(255, 180, 153, 0.3);
  border-radius: 10px;
  font-size: 14px;
  color: #2C3E50;
  transition: all 0.3s ease;
  font-family: inherit;
}

.footer-form-input:focus,
.footer-form-textarea:focus {
  outline: none;
  border-color: #FF844B;
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 180, 153, 0.25);
}

.footer-form-input::placeholder,
.footer-form-textarea::placeholder {
  color: rgba(44, 62, 80, 0.4);
}

.footer-form-textarea {
  resize: vertical;
  min-height: 70px;
  max-height: 150px;
  vertical-align: top;
}

.footer-form-submit {
  padding: 14px 32px;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 132, 75, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.footer-form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.footer-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 132, 75, 0.5);
}

.footer-form-submit:hover::before {
  transform: translateX(100%);
}

.footer-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.footer-form-submit svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.footer-form-message {
  font-size: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

.footer-form-message.success {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.footer-form-message.error {
  background: rgba(248, 113, 113, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.footer-form-message.info {
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.word-counter {
  margin-top: 8px;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-logo-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(255, 132, 75, 0.35);
  overflow: hidden;
  transition: all 0.3s ease;
}

.footer-logo-wrapper:hover {
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(255, 132, 75, 0.5);
}

.footer-logo {
  width: 180%;
  height: 180%;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 300px;
}

/* Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  padding: 3px 0;
}

.footer-contact-item:hover {
  color: #FF844B;
  transform: translateX(4px);
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: #FF844B;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #FF844B;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF844B 0%, #FF6B2C 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.footer-link:hover {
  color: #FF844B;
  transform: translateX(4px);
}

.footer-link:hover::after {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  gap: 20px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.footer-details {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.footer-details span:not(:last-child)::after {
  content: '·';
  margin-left: 12px;
  color: rgba(255, 132, 75, 0.4);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 132, 75, 0.2);
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.6);
  fill: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer-social-link.linkedin svg {
  fill: rgba(255, 255, 255, 0.6);
  stroke: none;
}

.footer-social-link:hover::before {
  opacity: 1;
}

.footer-social-link:hover {
  border-color: #FF844B;
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(255, 132, 75, 0.5);
}

.footer-social-link:hover svg {
  stroke: white;
}

.footer-social-link.linkedin:hover svg {
  fill: white;
}

/* Decorative elements */
.footer-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 132, 75, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-decoration-1 {
  top: -100px;
  left: 10%;
}

.footer-decoration-2 {
  bottom: -100px;
  right: 15%;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-cta-section {
    padding: 70px 40px 0;
  }

  .footer-cta-section .cta-banner {
    padding: 48px;
  }

  .footer-main {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 0;
  }

  .footer-cta-section {
    padding: 60px 24px 0;
    margin-top: 60px;
  }

  .footer-cta-section .cta-banner {
    padding: 40px 28px;
  }

  .footer-cta-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-cta-text h2 {
    font-size: 26px;
  }

  .footer-cta-text p {
    font-size: 14px;
  }

  .footer-main {
    padding: 36px 24px 20px;
    margin-top: 0;
    border-radius: 30px 30px 0 0;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
  }

  .footer-details {
    flex-direction: column;
    gap: 3px;
  }

  .footer-details span:not(:last-child)::after {
    display: none;
  }

  .footer-social {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-cta-section {
    padding: 40px 20px;
  }

  .footer-cta-section .cta-banner {
    padding: 32px 24px;
  }

  .footer-cta-text h2 {
    font-size: 22px;
  }

  .footer-main {
    padding: 28px 20px 16px;
  }

  .footer-logo-wrapper {
    width: 32px;
    height: 32px;
  }

  .footer-brand-name {
    font-size: 15px;
  }

  .footer-tagline {
    font-size: 11px;
  }

  .footer-column-title {
    font-size: 12px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 11px;
  }
}
.faq-section {
  background: transparent;
  padding: 4rem 0 2rem 0;
}

.faq-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .faq-content {
    grid-template-columns: 25rem 1fr;
  }
}

.faq-left-section {
  opacity: 0;
  transform: translateX(-2rem);
  animation: slideInLeft 0.7s ease-out forwards;
  animation-delay: 0.1s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #2C3E50;
  letter-spacing: -0.02em;
  font-style: normal;
}

.faq-header h2:first-child {
  margin-bottom: 0.25rem;
}

.faq-action-cards {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 auto;
}

.faq-action-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}

.faq-action-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #e2e8f0;
  transform: translateY(-2px);
}

.faq-icon-wrapper {
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.faq-icon-blue {
  background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
}

.faq-action-card:hover .faq-icon-blue {
  background: linear-gradient(to bottom right, #bfdbfe, #93c5fd);
}

.faq-icon-blue svg {
  color: #2563eb;
}

.faq-icon-green {
  background: linear-gradient(to bottom right, #d1fae5, #a7f3d0);
}

.faq-action-card:hover .faq-icon-green {
  background: linear-gradient(to bottom right, #a7f3d0, #6ee7b7);
}

.faq-icon-green svg {
  color: #059669;
}

.faq-icon-yellow {
  background: linear-gradient(to bottom right, #fef3c7, #fde68a);
}

.faq-action-card:hover .faq-icon-yellow {
  background: linear-gradient(to bottom right, #fde68a, #fcd34d);
}

.faq-icon-yellow svg {
  color: #d97706;
}

.faq-card-content {
  flex: 1;
}

.faq-card-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.faq-action-card:hover .faq-card-content h3 {
  color: inherit;
}

.faq-action-card:hover .faq-icon-blue ~ .faq-card-content h3 {
  color: #2563eb;
}

.faq-action-card:hover .faq-icon-green ~ .faq-card-content h3 {
  color: #059669;
}

.faq-action-card:hover .faq-icon-yellow ~ .faq-card-content h3 {
  color: #d97706;
}

.faq-card-content p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

.faq-arrow-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.faq-action-card:hover .faq-arrow-icon {
  transform: translateX(0.25rem);
}

.faq-action-card:hover .faq-icon-blue ~ * .faq-arrow-icon {
  color: #2563eb;
}

.faq-action-card:hover .faq-icon-green ~ * .faq-arrow-icon {
  color: #059669;
}

.faq-action-card:hover .faq-icon-yellow ~ * .faq-arrow-icon {
  color: #d97706;
}

.faq-right-section {
  opacity: 0;
  transform: translateX(2rem);
  animation: slideInRight 0.7s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-questions-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(1.25rem);
}

.faq-item.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
  font-size: inherit;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.375rem;
  height: 0.375rem;
  background: #f97316;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question:hover::before {
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.2);
}

.faq-question span {
  font-weight: 500;
  color: #0f172a;
  padding-right: 1rem;
  padding-left: 1rem;
  flex: 1;
}

.faq-chevron-icon {
  flex-shrink: 0;
  color: #475569;
  transition: transform 0.3s ease-out;
  width: 1.25rem;
  height: 1.25rem;
}

.faq-question.active .faq-chevron-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
}

.faq-answer.active {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-content {
  overflow: hidden;
}

.faq-answer-text {
  padding: 0 1.5rem 1.25rem 3.5rem;
  color: #475569;
  line-height: 1.6;
}

.faq-answer-text strong {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.faq-answer-text ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0;
}

.faq-answer-text li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  color: #475569;
  line-height: 1.6;
}

.faq-answer-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.375rem;
  height: 0.375rem;
  background: #f97316;
  border-radius: 50%;
}

.faq-answer-text p {
  margin-bottom: 0.6rem;
}

.faq-answer-text p:last-child {
  margin-bottom: 0;
}

.faq-list-intro {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: #1a1a1a;
}
/* How It Works Section - Professional Dynamic Loading */

.how-it-works-section {
  padding: 80px 0;
  background: white;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.how-it-works-section.section-visible {
  opacity: 1;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.how-it-works-title {
  font-size: 42px;
  font-weight: 800;
  color: #2C3E50;
  text-align: center;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.how-it-works-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  text-align: center;
  margin: 0 0 56px 0;
  font-weight: 500;
}

/* Steps Layout */
.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left: Steps */
.steps-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Step Cards - Dynamic Loading */
.step-card {
  background: transparent;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--animation-delay, 0s);
}

.step-card.element-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Step Icon - White Background */
.step-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: white;
  border: 2px solid rgba(255, 132, 75, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 132, 75, 0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card.element-visible .step-icon {
  animation: iconPulse 0.6s ease 0.3s;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.step-card:hover .step-icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 28px rgba(255, 132, 75, 0.3);
  border-color: #FF844B;
}

.step-icon svg {
  width: 36px;
  height: 36px;
  color: #FF844B;
  stroke-width: 2.5;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon svg {
  transform: scale(1.1);
}

/* Step Content */
.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 8px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.step-card:hover .step-title {
  color: #FF844B;
}

.step-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Right: Visual Wrapper */
.visual-column {
  display: flex;
  align-items: start;
  justify-content: center;
}

.visual-wrapper {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.3s;
}

.visual-wrapper.element-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Laptop Mockup - Dynamic Entry */
.laptop-mockup {
  width: 100%;
  max-width: 400px;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: all 0.4s ease;
}

.laptop-mockup:hover {
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.2));
  transform: translateY(-4px);
}

.laptop-screen {
  background: #2C3E50;
  border-radius: 8px 8px 0 0;
  padding: 8px;
  border: 2px solid #1a252f;
  position: relative;
  overflow: hidden;
}

.laptop-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: screenShine 3s ease-in-out infinite;
}

@keyframes screenShine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.screen-header {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.screen-dots {
  display: flex;
  gap: 6px;
}

.screen-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.screen-dots span:nth-child(1) { 
  background: #FF5F57;
  animation-delay: 0s;
}
.screen-dots span:nth-child(2) { 
  background: #FFBD2E;
  animation-delay: 0.2s;
}
.screen-dots span:nth-child(3) { 
  background: #28CA42;
  animation-delay: 0.4s;
}

/* URL Bar */
.screen-url {
  flex: 1;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #495057;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.screen-url::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: #FF844B;
  animation: urlCursor 1s step-end infinite;
}

@keyframes urlCursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.screen-content {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 28px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Problem Display */
.screen-problem {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  animation: fadeInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1s backwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.problem-icon {
  font-size: 48px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.problem-title {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin: 0;
  line-height: 1.3;
}

.problem-text {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* CTA Button */
.screen-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FF844B 0%, #ff6b35 100%);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(255, 132, 75, 0.25);
  position: relative;
  overflow: hidden;
}

.screen-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.screen-cta:hover::before {
  width: 300px;
  height: 300px;
}

.screen-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 132, 75, 0.4);
}

.screen-cta:active {
  transform: translateY(-1px) scale(1.02);
}

/* Laptop Base */
.laptop-base {
  height: 20px;
  background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
  border-radius: 0 0 12px 12px;
  position: relative;
}

.laptop-base::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 6px;
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  border-radius: 0 0 4px 4px;
}

/* KPIs Grid - Dynamic Entry */
.kpis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.kpi-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--animation-delay, 0s);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
}

.kpi-card.element-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.kpi-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 132, 75, 0.2);
  border-color: rgba(255, 132, 75, 0.3);
}

.kpi-card svg {
  width: 32px;
  height: 32px;
  color: #FF844B;
  stroke-width: 2;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.kpi-card:hover svg {
  transform: scale(1.2) rotate(5deg);
}

.kpi-value {
  font-size: 18px;
  font-weight: 800;
  color: #2C3E50;
  line-height: 1;
}

.kpi-label {
  font-size: 11px;
  line-height: 1.4;
  color: #666;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .steps-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 60px 0;
  }

  .how-it-works-title {
    font-size: 32px;
  }

  .how-it-works-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .steps-column {
    gap: 28px;
  }

  .step-icon {
    width: 64px;
    height: 64px;
  }

  .step-icon svg {
    width: 32px;
    height: 32px;
  }

  .step-title {
    font-size: 21px;
  }

  .step-description {
    font-size: 14px;
    line-height: 1.65;
  }

  .laptop-mockup {
    max-width: 350px;
  }

  .screen-content {
    padding: 32px 24px;
    min-height: 200px;
  }

  .problem-icon {
    font-size: 40px;
  }

  .problem-title {
    font-size: 16px;
  }

  .kpis-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .how-it-works-title {
    font-size: 28px;
  }

  .step-card {
    gap: 18px;
  }

  .step-icon {
    width: 56px;
    height: 56px;
  }

  .step-icon svg {
    width: 28px;
    height: 28px;
  }

  .step-title {
    font-size: 19px;
  }

  .laptop-mockup {
    max-width: 300px;
  }

  .screen-content {
    padding: 28px 20px;
    min-height: 180px;
  }

  .problem-icon {
    font-size: 36px;
  }

  .problem-title {
    font-size: 15px;
  }

  .problem-text {
    font-size: 12px;
  }
}
