/* NOW Broadband — Design System */
:root {
  --color-primary: #66CC00;
  --color-primary-dark: #5AB800;
  --color-accent: #FFF700;
  --color-bg: #FFFFFF;
  --color-surface: #F7F7F7;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-text-light: #FFFFFF;
  --color-border: #E0E0E0;
  --color-dark: #1A1A1A;
  --color-dark-surface: #222222;

  --font-heading: 'Plus Jakarta Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 32px;
  --radius-round: 50%;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

  --container: 1200px;
  --gutter: 24px;
  --section-pad: clamp(48px, 8vw, 96px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}
img { max-width: 100%; height: auto; display: block; }
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== HEADER ===== */
.header {
  position: relative;
  z-index: 100;
  background: var(--color-bg);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.header-logo img {
  height: 48px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-nav a {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
  border-radius: var(--radius-pill);
}
.header-nav a:hover {
  color: var(--color-primary);
}
.header-nav .nav-cta {
  background: var(--color-accent);
  color: var(--color-text);
  font-weight: 600;
  padding: 10px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header-nav .nav-cta:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.mobile-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-text);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text);
  font-family: var(--font-body);
}

/* ===== HERO ===== */
.hero {
  background: var(--color-bg);
  padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 12vw, 140px);
  position: relative;
}
.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-curve svg {
  display: block;
  width: 100%;
  height: 80px;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
/* Lifestyle strip between pricing and awards */
.lifestyle-strip {
  padding: 0 0 var(--section-pad);
  background: var(--color-bg);
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
  height: 280px;
}
.lifestyle-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.lifestyle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lifestyle-img:hover img {
  transform: scale(1.06);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-search {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-bg);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-search input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  font-size: 16px;
  font-family: var(--font-body);
  outline: none;
  background: transparent;
  color: var(--color-text);
}
.hero-search input::placeholder {
  color: var(--color-text-muted);
}
.hero-search button {
  padding: 14px 28px;
  background: var(--color-accent);
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--color-text);
  transition: background 0.2s ease;
  white-space: nowrap;
}
.hero-search button:hover {
  background: #e6df00;
}

/* ===== PRICING CARDS ===== */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--color-text);
}
.pricing-card .plan-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.pricing-card .plan-type {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-card ul {
  margin-bottom: 24px;
  flex: 1;
}
.pricing-card ul li {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.pricing-card .plan-price {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.pricing-card .plan-price strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.03em;
}
.pricing-card .plan-price span {
  font-size: 14px;
  color: var(--color-text-muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}
.btn:hover {
  transform: scale(1.03);
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-light);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-text);
}
.btn-accent:hover {
  background: #e6df00;
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-text-light);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}
.btn-dark-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}
.btn-dark-outline:hover {
  background: var(--color-text);
  color: var(--color-text-light);
}
.btn-chevron::after {
  content: '›';
  font-size: 1.3em;
  line-height: 1;
}

/* ===== AWARDS ===== */
.awards {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}
.awards-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.awards-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.awards-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
}
.awards-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.awards-content p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.awards-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.award-badge {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

/* ===== FEATURE CARDS (alternating) ===== */
.features {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.feature-row:last-child {
  margin-bottom: 0;
}
.feature-row.reverse .feature-image {
  order: 2;
}
.feature-row.reverse .feature-text {
  order: 1;
}
.feature-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.feature-text h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-text p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ===== CTA CARDS ===== */
.cta-cards {
  padding: var(--section-pad) 0;
  background: var(--color-surface);
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cta-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.cta-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(102, 204, 0, 0.1);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cta-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}
.cta-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.cta-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.cta-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ===== WHY NOW (dark section) ===== */
.why-now {
  padding: var(--section-pad) 0;
  background: var(--color-dark);
  color: var(--color-text-light);
}
.why-now-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-now-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.why-now-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.7;
}
.why-now-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ===== BUSINESS CTA ===== */
.business-cta {
  padding: var(--section-pad) 0;
  background: var(--color-dark-surface);
  color: var(--color-text-light);
}
.business-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.business-cta-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.business-cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.business-cta-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ===== GREEN CTA BAR ===== */
.green-cta {
  background: var(--color-primary);
  padding: 48px 0;
}
.green-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.green-cta-block {
  text-align: center;
}
.green-cta-block h3 {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}
.green-cta-block p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer-col h4 {
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-phone {
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 700;
}
.footer-phone a {
  color: var(--color-primary);
  transition: color 0.2s ease;
}
.footer-phone a:hover {
  color: var(--color-accent);
}
.footer-legal {
  display: flex;
  gap: 16px;
  font-size: 13px;
}
.footer-legal a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: var(--color-text-light);
}

/* ===== ANIMATION KEYFRAMES ===== */

/* 1. Hero text shimmer gradient */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* 2. Hero image float (parallax bob) */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* 3. Pulse glow for CTA */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(102, 204, 0, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(102, 204, 0, 0.2); }
}

/* 4. Slide in from left */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 5. Slide in from right */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 6. Scale up entrance */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* 7. Counter count-up (handled by JS, this is the text style) */
@keyframes countPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* 8. Draw underline */
@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ===== SCROLL REVEAL SYSTEM ===== */

/* Base reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Direction variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children — cascading delay */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* ===== EFFECT 1: Hero h1 race-in from left + shimmer ===== */
.word-race {
  display: inline-block;
  opacity: 0;
  transform: translateX(-120px);
  animation: raceIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             wordShimmer 1.2s ease-in-out 1.8s 1;
  animation-delay: calc(var(--i) * 0.12s), calc(1.8s + var(--i) * 0.06s);
}
@keyframes raceIn {
  0% { opacity: 0; transform: translateX(-120px); }
  60% { opacity: 1; transform: translateX(8px); }
  80% { transform: translateX(-3px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes wordShimmer {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.6); }
  100% { filter: brightness(1); }
}
.hero h1 {
  overflow: hidden;
}

/* ===== NAV SLOT MACHINE ===== */
.slot-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}
.slot-text {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.slot-link:hover .slot-text {
  animation: slotSpin 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slotSpin {
  0% { transform: translateY(0); opacity: 1; }
  40% { transform: translateY(-100%); opacity: 0; }
  41% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ===== EFFECT 2: Lifestyle image hover zoom handled via .lifestyle-img:hover img ===== */

/* ===== EFFECT 3: Nav scroll shrink ===== */
.header {
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header.scrolled .header-inner {
  padding-top: 8px;
  padding-bottom: 8px;
}
.header.scrolled .header-logo img {
  height: 36px;
  transition: height 0.3s ease;
}
.header-inner {
  transition: padding 0.3s ease;
}
.header-logo img {
  transition: height 0.3s ease;
}

/* ===== EFFECT 4: Image zoom on hover ===== */
.feature-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.feature-image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-image:hover img {
  transform: scale(1.06);
}
.awards-image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.awards-image:hover img {
  transform: scale(1.05);
}

/* ===== EFFECT 5: Card 3D tilt ===== */
.pricing-card {
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
}

/* ===== EFFECT 6: Button magnetic + glow ===== */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  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.4s ease, height 0.4s ease;
}
.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}
.hero .btn-accent,
.green-cta .btn-accent {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

/* ===== EFFECT 7: Award badges slide in ===== */
.awards-badges .award-badge {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.awards-badges.visible .award-badge:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.1s; }
.awards-badges.visible .award-badge:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
.awards-badges.visible .award-badge:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }

/* ===== EFFECT 8: Section heading underline draw ===== */
.feature-text h2,
.awards-content h2,
.why-now-content h2,
.business-cta-content h2 {
  display: inline-block;
  position: relative;
}
.feature-text h2::after,
.awards-content h2::after,
.why-now-content h2::after,
.business-cta-content h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible .feature-text h2::after,
.reveal.visible .awards-content h2::after,
.why-now-content h2.line-drawn::after,
.business-cta-content h2.line-drawn::after {
  transform: scaleX(1);
}

/* ===== EFFECT 9: Price counter pop ===== */
.plan-price strong.counted {
  animation: countPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== EFFECT 10: Parallax scroll on dark sections ===== */
.why-now-image img,
.business-cta-image img {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* ===== EFFECT 11: CTA card border draw ===== */
.cta-card {
  position: relative;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-primary);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-card.visible::before {
  height: 100%;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-logo img {
    height: 42px;
  }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 16px var(--gutter);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--color-border);
    z-index: 200;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    width: 100%;
    padding: 12px 0;
    color: var(--color-text);
    font-size: 16px;
    border-bottom: 1px solid var(--color-border);
  }
  .header-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-bottom: none;
  }
  .mobile-toggle {
    display: block;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .awards-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-row.reverse .feature-image {
    order: 0;
  }
  .feature-row.reverse .feature-text {
    order: 0;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-now-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .business-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .green-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lifestyle-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
  }
  .lifestyle-img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }
  .hero-images .hero-img {
    width: 100px;
    height: 100px;
  }
  .hero-search {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }
  .hero-search button {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .pricing-card .plan-price strong {
    font-size: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
}
