
:root {
  --background: #0b1020;
  --surface: #111827;
  --surface-2: #1a2235;
  --foreground: #ffffff;
  --secondary: #a7b0c5;
  --muted: #64748b;
  --accent: #e8a117;
  --accent-dim: #c8891a;
  --accent-glow: rgba(232, 161, 23, 0.45);
  --accent-glow-strong: rgba(232, 161, 23, 0.7);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(232, 161, 23, 0.3);
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── HEADER / NAV ─────────────────────────────────────────── */

header {
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-glow);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--foreground);
}

.quote-btn {
  background: var(--accent);
  color: var(--background);
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: box-shadow 0.25s ease, transform 0.15s ease;
  white-space: nowrap;
}

.quote-btn:hover {
  box-shadow: 0 0 18px var(--accent-glow-strong);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--foreground);
  font-size: 1.3rem;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu a {
  color: var(--secondary);
  text-decoration: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover {
  color: var(--foreground);
  background: var(--surface-2);
}

.quote-btn-mobile {
  background: var(--accent) !important;
  color: var(--background) !important;
  font-weight: 700;
  text-align: center;
}

/* ── GLOW EFFECTS ─────────────────────────────────────────── */

.glow-word {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent-glow);
  display: inline-block;
  transition: text-shadow 0.6s ease;
}

.glow-word.glow-active {
  animation: glowPulse 2.4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 8px var(--accent-glow); }
  50%       { text-shadow: 0 0 22px var(--accent-glow-strong), 0 0 40px rgba(232,161,23,0.25); }
}

.inline-glow {
  color: var(--accent);
  font-weight: 600;
  text-shadow: 0 0 10px var(--accent-glow);
}

.card-glow {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

.glow-number-static {
  color: var(--accent);
  font-weight: 800;
  text-shadow: 0 0 12px var(--accent-glow);
  font-size: 1.2em;
}

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  min-height: calc(100vh - 65px);
  position: relative;
  background-color: var(--background);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,161,23,0.08) 0%, transparent 70%);
  background-size: 100% 100%;
}

.hero-content {
  max-width: 820px;
  text-align: center;
  z-index: 1;
}

.hero-social-proof {
  text-align: center;
  color: var(--secondary);
  font-size: 0.88rem;
  margin: 1.25rem 0 1.5rem;
  letter-spacing: 0.01em;
}

.hero-social-proof strong {
  color: var(--accent);
  font-weight: 700;
}

.hero-badge {
  display: inline-block;
  background:
    linear-gradient(#0b1020, #0b1020) padding-box,
    conic-gradient(
      from var(--snake-angle),
      rgba(232,161,23,0.1)  0%,
      rgba(232,161,23,0.1) 50%,
      rgba(232,161,23,0.4) 64%,
      #e8a117              73%,
      #ffe066              80%,
      #ffffff              84%,
      #ffe066              88%,
      rgba(232,161,23,0.35) 93%,
      rgba(232,161,23,0.1) 97%
    ) border-box;
  border: 2px solid transparent;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: snake-rotate 4s linear infinite;
}

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

.tagline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 2.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Nokia-snake rotating border */
@property --snake-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --bronze-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --silver-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --gold-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes snake-rotate   { to { --snake-angle:  360deg; } }
@keyframes bronze-rotate  { to { --bronze-angle: 360deg; } }
@keyframes silver-rotate  { to { --silver-angle: 360deg; } }
@keyframes gold-rotate    { to { --gold-angle:   360deg; } }

.primary-btn {
  background:
    linear-gradient(#0b1020, #0b1020) padding-box,
    conic-gradient(
      from var(--snake-angle),
      rgba(232,161,23,0.1)  0%,
      rgba(232,161,23,0.1) 50%,
      rgba(232,161,23,0.4) 64%,
      #e8a117              73%,
      #ffe066              80%,
      #ffffff              84%,
      #ffe066              88%,
      rgba(232,161,23,0.35) 93%,
      rgba(232,161,23,0.1) 97%
    ) border-box;
  color: var(--accent);
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  animation: snake-rotate 4s linear infinite;
  transition: transform 0.15s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  background:
    linear-gradient(#0b1020, #0b1020) padding-box,
    conic-gradient(
      from var(--snake-angle),
      rgba(232,161,23,0.1)  0%,
      rgba(232,161,23,0.1) 50%,
      rgba(232,161,23,0.4) 64%,
      #e8a117              73%,
      #ffe066              80%,
      #ffffff              84%,
      #ffe066              88%,
      rgba(232,161,23,0.35) 93%,
      rgba(232,161,23,0.1) 97%
    ) border-box;
  color: var(--accent);
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  border: 2px solid transparent;
  animation: snake-rotate 4s linear infinite;
  animation-delay: -2s;
  transition: transform 0.15s ease;
  cursor: pointer;
}

.secondary-btn:hover {
  transform: translateY(-2px);
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--secondary);
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(232, 161, 23, 0.12);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
  text-shadow: 0 0 6px var(--accent-glow);
}

.scroll-cue {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ── STATS BAR ────────────────────────────────────────────── */

.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0.5rem 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-item.stat-pop {
  opacity: 1;
  transform: translateY(0);
}

.stat-item.stat-pop .stat-number {
  animation: statNumPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes statNumPop {
  0%   { transform: scale(0.75); opacity: 0; }
  100% { transform: scale(1);    opacity: 1; }
}

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 18px var(--accent-glow);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  color: var(--secondary);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SHARED SECTION STYLES ────────────────────────────────── */

section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── PRICING TIERS ────────────────────────────────────────── */

:root {
  --bronze: #CD7F32;
  --bronze-glow: rgba(205,127,50,0.28);
  --silver: #C0C0C0;
  --silver-glow: rgba(192,192,192,0.22);
  --gold: #C9950C;
  --gold-glow: rgba(201,149,12,0.28);
}

.pricing {
  background: var(--background);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 2.25rem 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

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

/* Bronze snake */
.pricing-card--bronze {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(
      from var(--snake-angle),
      rgba(205,127,50,0.1)  0%,
      rgba(205,127,50,0.1) 50%,
      rgba(205,127,50,0.45) 64%,
      #8B4513              71%,
      #CD7F32              76%,
      #F4A460              81%,
      #ffffff              84%,
      #F4A460              88%,
      rgba(205,127,50,0.35) 93%,
      rgba(205,127,50,0.1) 97%
    ) border-box;
  animation: snake-rotate 4s linear infinite;
}
.pricing-card--bronze:hover { box-shadow: 0 8px 36px var(--bronze-glow); }

/* Silver snake */
.pricing-card--silver {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(
      from var(--snake-angle),
      rgba(192,192,192,0.1)  0%,
      rgba(192,192,192,0.1) 50%,
      rgba(192,192,192,0.45) 64%,
      #707070              71%,
      #C0C0C0              76%,
      #E8E8E8              81%,
      #ffffff              84%,
      #E8E8E8              88%,
      rgba(192,192,192,0.35) 93%,
      rgba(192,192,192,0.1) 97%
    ) border-box;
  animation: snake-rotate 4s linear infinite;
  animation-delay: -1.33s;
}
.pricing-card--silver:hover { box-shadow: 0 8px 40px var(--silver-glow); }

/* Gold card */
.pricing-card--gold {
  background: var(--surface);
  border: 1.5px solid rgba(201,149,12,0.55);
  box-shadow: 0 0 28px rgba(201,149,12,0.18), 0 4px 24px rgba(0,0,0,0.35);
}
.pricing-card--gold:hover { box-shadow: 0 0 40px rgba(201,149,12,0.32), 0 8px 32px rgba(0,0,0,0.4); }

/* "Most Popular" pill sits above the card */
.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--background);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.9rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* Tier name badge (BRONZE / SILVER / GOLD) */
.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  width: fit-content;
}

.tier-badge--bronze {
  background:
    linear-gradient(#0b1020, #0b1020) padding-box,
    conic-gradient(
      from var(--bronze-angle),
      rgba(205,127,50,0.1)  0%,
      rgba(205,127,50,0.1) 50%,
      rgba(205,127,50,0.45) 64%,
      #CD7F32              73%,
      #e8a962              80%,
      #ffffff              84%,
      #e8a962              88%,
      rgba(205,127,50,0.35) 93%,
      rgba(205,127,50,0.1) 97%
    ) border-box;
  border: 2px solid transparent;
  color: var(--bronze);
  animation: bronze-rotate 4s linear infinite;
}

.tier-badge--silver {
  background:
    linear-gradient(#0b1020, #0b1020) padding-box,
    conic-gradient(
      from var(--silver-angle),
      rgba(192,192,192,0.1)  0%,
      rgba(192,192,192,0.1) 50%,
      rgba(192,192,192,0.45) 64%,
      #C0C0C0              73%,
      #e8e8e8              80%,
      #ffffff              84%,
      #e8e8e8              88%,
      rgba(192,192,192,0.35) 93%,
      rgba(192,192,192,0.1) 97%
    ) border-box;
  border: 2px solid transparent;
  color: var(--silver);
  animation: silver-rotate 4s linear infinite;
  animation-delay: -1.33s;
}

.tier-badge--gold {
  background:
    linear-gradient(#0b1020, #0b1020) padding-box,
    conic-gradient(
      from var(--gold-angle),
      rgba(201,149,12,0.1)  0%,
      rgba(201,149,12,0.1) 50%,
      rgba(201,149,12,0.45) 64%,
      #9D7209              73%,
      #C9950C              80%,
      #ffffff              84%,
      #C9950C              88%,
      rgba(201,149,12,0.35) 93%,
      rgba(201,149,12,0.1) 97%
    ) border-box;
  border: 2px solid transparent;
  color: var(--gold);
  animation: gold-rotate 4s linear infinite;
  animation-delay: -2.67s;
}

/* Plan name */
.tier-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

/* Price */
.tier-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.15rem;
  column-gap: 0.3rem;
}

.tier-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}

.tier-range {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: -0.01em;
  margin-left: 0.1rem;
}

.tier-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0;
}

/* Short tagline */
.tier-tagline {
  color: var(--secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}

/* Feature list */
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.tier-features li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tier-features li::before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card--bronze .tier-features li::before {
  background-color: var(--bronze-glow);
  border: 1px solid rgba(205,127,50,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23cd7f32' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pricing-card--silver .tier-features li::before {
  background-color: var(--silver-glow);
  border: 1px solid rgba(168,169,173,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23a8a9ad' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pricing-card--gold .tier-features li::before {
  background-color: var(--gold-glow);
  border: 1px solid rgba(232,161,23,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23e8a117' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* CTA buttons */
.tier-cta {
  display: block;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-radius: calc(var(--radius) - 4px);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
}

.tier-cta:hover { transform: translateY(-2px); animation: none !important; }

.tier-cta--bronze {
  background: transparent;
  border: 1.5px solid var(--bronze);
  color: var(--bronze);
  animation: ctaGlowBronze 2.6s ease-in-out infinite;
}

.tier-cta--silver {
  background: transparent;
  border: 1.5px solid var(--silver);
  color: var(--silver);
  animation: ctaGlowSilver 2.6s ease-in-out infinite;
  animation-delay: 0.4s;
}

.tier-cta--gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  animation: ctaGlowGold 2.6s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes ctaGlowBronze {
  0%, 100% { box-shadow: 0 0 8px rgba(180,110,40,0.25); border-color: rgba(180,110,40,0.6); }
  50%       { box-shadow: 0 0 20px rgba(180,110,40,0.55), 0 0 40px rgba(180,110,40,0.2); border-color: rgba(180,110,40,1); }
}

@keyframes ctaGlowSilver {
  0%, 100% { box-shadow: 0 0 8px rgba(180,190,200,0.2); border-color: rgba(180,190,200,0.5); }
  50%       { box-shadow: 0 0 20px rgba(200,210,220,0.45), 0 0 40px rgba(200,210,220,0.15); border-color: rgba(210,220,230,1); }
}

@keyframes ctaGlowGold {
  0%, 100% { box-shadow: 0 0 10px rgba(232,161,23,0.35), inset 0 0 0 rgba(232,161,23,0); }
  50%       { box-shadow: 0 0 22px rgba(232,161,23,0.65), 0 0 44px rgba(232,161,23,0.25); }
}

/* Pricing note */
.pricing-note {
  text-align: center;
  color: var(--secondary);
  font-size: 0.9rem;
  margin-top: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note a {
  color: var(--accent);
  text-decoration: none;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

/* ── SERVICES ─────────────────────────────────────────────── */

.services {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  cursor: default;
}

.service-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-item:hover .service-body h3 {
  color: var(--accent);
}

.service-num {
  display: none;
}

.service-body {
  flex: 1;
}

.service-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  transition: color 0.2s ease;
}

.service-body p {
  color: var(--secondary);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.service-link {
  display: none;
}

/* ── WHATSAPP FEATURE ─────────────────────────────────────── */

.wa-feature {
  padding: calc(var(--section-padding) * 1.6) var(--gutter) var(--section-padding);
  background: var(--background);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wa-feature-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.wa-label { color: var(--accent) !important; }

.wa-feature-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.wa-glow {
  color: var(--accent);
  text-shadow: 0 0 18px var(--accent-glow);
}

.wa-sub {
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.wa-perks {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: left;
  max-width: 520px;
}

.wa-perks li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.wa-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232,161,23,0.12);
  border: 1px solid rgba(232,161,23,0.35);
  color: var(--accent);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.wa-perks strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.wa-perks p {
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}

/* Phone mock */
.wa-mock-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.wa-phone {
  width: 340px;
  background: #0d111a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06), 0 0 40px rgba(232,161,23,0.08);
}

.wa-phone-bar {
  background: #0b1020;
  border-bottom: 1px solid rgba(232,161,23,0.15);
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 1rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
}

.wa-phone-header {
  background: #0b1020;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(232,161,23,0.2);
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232,161,23,0.15);
  color: var(--accent);
  border: 1px solid rgba(232,161,23,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.wa-contact strong {
  display: block;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.wa-contact span {
  color: rgba(255,255,255,0.65);
  font-size: 0.67rem;
}

.wa-chat-area {
  background: #0b141a;
  padding: 0.9rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 220px;
}

.wa-bubble {
  max-width: 88%;
  padding: 0.45rem 0.65rem;
  border-radius: 7px;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #e9edef;
}

.wa-bubble p { margin: 0; }

.wa-bubble--in {
  background: #202c33;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.wa-bubble--out {
  background: rgba(232,161,23,0.13);
  border: 1px solid rgba(232,161,23,0.2);
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.wa-ts {
  display: block;
  font-size: 0.62rem;
  color: rgba(233,237,239,0.45);
  text-align: right;
  margin-top: 3px;
}

.wa-input-row {
  background: #202c33;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
}

.wa-input-hint {
  color: rgba(255,255,255,0.25);
  font-size: 0.76rem;
  flex: 1;
}

.wa-send {
  color: var(--accent);
  font-size: 0.9rem;
}

.wa-stat-badge {
  position: absolute;
  bottom: -1rem;
  right: calc(50% - 170px - 1rem);
  background: var(--accent);
  color: #0b1020;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  text-align: center;
  box-shadow: 0 0 28px var(--accent-glow);
  line-height: 1;
}

.wa-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
}

.wa-stat-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 2px;
  opacity: 0.75;
}

@media (max-width: 480px) {
  .wa-phone { width: 100%; border-radius: 16px; }
  .wa-stat-badge { right: 0; }
}

/* ── PORTFOLIO ────────────────────────────────────────────── */

.portfolio {
  background: var(--background);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-card {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg,
      rgba(232,161,23,0.45)  0%,
      rgba(232,161,23,0.14) 35%,
      rgba(232,161,23,0.04) 65%,
      rgba(232,161,23,0.04) 100%
    ) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.portfolio-card:hover {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg,
      rgba(232,161,23,0.8)  0%,
      rgba(232,161,23,0.3)  38%,
      rgba(232,161,23,0.08) 68%,
      rgba(232,161,23,0.04) 100%
    ) border-box;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* Featured site card spans full width */
.portfolio-card--featured-site {
  grid-column: 1 / -1;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg,
      rgba(232,161,23,0.7)  0%,
      rgba(232,161,23,0.25) 35%,
      rgba(232,161,23,0.08) 65%,
      rgba(232,161,23,0.04) 100%
    ) border-box;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
}

.portfolio-card--featured-site:hover {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg,
      rgba(232,161,23,1.0)  0%,
      rgba(232,161,23,0.45) 38%,
      rgba(232,161,23,0.12) 68%,
      rgba(232,161,23,0.05) 100%
    ) border-box;
  box-shadow: 0 8px 40px rgba(232,161,23,0.18);
}

/* Phone mockup */
.portfolio-phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--border-accent);
  background: #0a0e1a;
  min-height: 340px;
}

.portfolio-phone {
  display: block;
  position: relative;
  width: 160px;
  aspect-ratio: 9 / 19.5;
  background: #0c0c0c;
  border-radius: 32px;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 24px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(232,161,23,0.08);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-phone:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 32px 70px rgba(0,0,0,0.7),
    0 0 50px rgba(232,161,23,0.14);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #111827;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 28px;
}

/* Portfolio info for featured card */
.portfolio-card--featured-site .portfolio-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-type-inline {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-thumb {
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
}

.portfolio-thumb--blue {
  background: linear-gradient(135deg, #0f2440 0%, #1a3a5c 100%);
}

.portfolio-thumb--green {
  background: linear-gradient(135deg, #0d2e1a 0%, #1a4d2c 100%);
}

.portfolio-thumb--amber {
  background: linear-gradient(135deg, #2a1800 0%, #4a2e00 100%);
}

.portfolio-type {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-info {
  padding: 1.25rem 1.5rem;
}

.portfolio-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.portfolio-info p {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.portfolio-link {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.portfolio-link:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent-glow);
}

.portfolio-result.glow-pill {
  display: inline-block;
  background: rgba(232,161,23,0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  text-shadow: 0 0 8px var(--accent-glow);
}

.portfolio-tier-badge {
  display: inline-block;
  margin-top: 0.65rem;
  background: rgba(232,161,23,0.12);
  border: 1px solid rgba(232,161,23,0.5);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  animation: tierBadgeGlow 2.8s ease-in-out infinite;
}

@keyframes tierBadgeGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(232,161,23,0.2); border-color: rgba(232,161,23,0.4); }
  50%       { box-shadow: 0 0 14px rgba(232,161,23,0.5), 0 0 28px rgba(232,161,23,0.15); border-color: rgba(232,161,23,0.9); }
}

/* ── REVIEWS ──────────────────────────────────────────────── */

.reviews {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}

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

.review-card--featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(232,161,23,0.04) 100%);
}

.stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px var(--accent-glow);
}

.review-text {
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: rgba(232,161,23,0.15);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.reviewer span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── TRUST BAR ────────────────────────────────────────────── */

.trust-bar {
  background: var(--background);
  text-align: center;
  padding: 3rem 2rem;
}

.trust-label {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(232,161,23,0.12);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── QUOTE / CTA ──────────────────────────────────────────── */

.quote-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.quote-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.quote-text p {
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.quote-promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.quote-promises li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--secondary);
}

.promise-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(232,161,23,0.12);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
  text-shadow: 0 0 6px var(--accent-glow);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px rgba(232,161,23,0.1);
}

.form-submit {
  width: 100%;
  font-size: 1rem;
  padding: 0.85rem;
  transition: box-shadow 0.25s ease, transform 0.15s ease, background 0.3s ease;
}

.form-note {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

/* ── FOOTER ───────────────────────────────────────────────── */

.site-footer {
  background: #080d1a;
  border-top: 1px solid var(--border);
  padding: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--foreground);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact p {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--secondary);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 900px) {
  .cards-grid,
  .portfolio-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card--featured-site {
    grid-template-columns: 1fr;
  }

  .portfolio-phone-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border-accent);
  }

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

  .quote-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stat-divider {
    display: none;
  }

  .stats-bar {
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .nav-links,
  .quote-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .cards-grid,
  .portfolio-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .tagline {
    font-size: 2.2rem;
  }

  .navbar {
    padding: 1rem 1.25rem;
  }

  section {
    padding: 3.5rem 1.25rem;
  }

  .hero {
    min-height: unset;
    justify-content: flex-start;
    padding: 1.5rem 1.25rem 3rem;
  }
}
