/* ===== CUSTOM FONTS ===== */
@font-face {
  font-family: 'Say';
  src: url('fonts/Say-BF6a3e8f37d3065.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #080d18;
  --bg2:        #0b1120;
  --surface:    #0f1729;
  --surface2:   #141e33;
  --border:     rgba(74,222,128,0.12);
  --green:      #4ADE80;
  --green-dim:  rgba(74,222,128,0.14);
  --green-glow: rgba(74,222,128,0.05);
  --text:       #dde8f5;
  --text-muted: #6b82a8;
  --text-dim:   #3d526e;
  --mono:       'JetBrains Mono', monospace;
  --display:    'Say', 'Syne', sans-serif;
  --body:       'Inter', sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== CURSOR ===== */
.cursor-dot, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(74,222,128,0.5);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, border-bottom 0.3s ease;
}
.navbar.scrolled {
  background: rgba(8,13,24,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}
.nav-logo-img {
  width: 40%;
  height: 10%;
  object-fit: contain;
  display: block;
}
.f-logo {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}
.f-logo-img {
  width: 55%;
  height: auto;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--green-dim); }
.btn-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: #0a0f0c;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  background: rgba(8,13,24,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.nav-mobile ul a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.6rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.nav-mobile ul a:hover { color: var(--green); }
.nav-mobile ul .btn-nav.mobile {
  margin-top: 0.75rem;
  display: inline-flex;
  border-bottom: none;
}
.nav-mobile.open { display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(99,179,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,179,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,60,140,0.18) 0%, rgba(74,222,128,0.04) 60%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-content {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-accent { color: var(--green); }
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
}
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #0a0f0c;
  font-weight: 700;
  font-size: 0.925rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,222,128,0.22), 0 2px 8px rgba(30,60,140,0.3); }
.btn-primary.large { font-size: 1.05rem; padding: 0.9rem 2rem; }
.btn-primary.full { width: 100%; justify-content: center; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: var(--surface2); border-color: rgba(74,222,128,0.3); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--green); background: var(--green-dim); transform: translateY(-1px); }
.btn-outline.full { width: 100%; justify-content: center; }

/* Hero mockup */
.hero-right { position: relative; }
.hero-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px var(--border), 0 0 60px rgba(30,60,140,0.15);
  position: relative;
}
.mockup-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
}
.mockup-bar span:not(.mockup-url) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}
.mockup-bar span:first-child { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-url {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  margin-left: 0.5rem;
  flex: 1;
  text-align: center;
}
.mockup-screen { overflow: hidden; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.mockup-img { width: 100%; height: auto; display: block; }

/* Collage layout inside mockup */
.mockup-collage {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3px;
  background: var(--bg);
  max-height: 280px;
  overflow: hidden;
}
.collage-main { overflow: hidden; }
.collage-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-side { display: flex; flex-direction: column; gap: 3px; }
.collage-side img { width: 100%; flex: 1; object-fit: cover; display: block; }
.mockup-badge {
  position: absolute;
  bottom: -1rem;
  right: -1.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.mockup-badge span { font-family: var(--display); font-size: 1.6rem; font-weight: 800; color: var(--text); line-height: 1; }
.mockup-badge small { font-size: 0.7rem; color: var(--text-muted); }

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== STATS TICKER ===== */
.stats-ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
}
.stats-ticker-inner { display: flex; }
.stats-ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.ticker-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
}
.ticker-item strong { color: var(--green); }
.ticker-dot {
  color: var(--green);
  opacity: 0.4;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ===== SECTION SHARED ===== */
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-sub {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1rem;
}

/* ===== TEMPLATES ===== */
.templates { background: var(--bg2); }
.templates-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
}
/* First 3 cards: each takes 2 of 6 columns → 3 per row */
.template-card:nth-child(1),
.template-card:nth-child(2),
.template-card:nth-child(3) {
  grid-column: span 2;
}
/* Last 2 cards: each takes 3 of 6 columns → 2 per row, centred */
.template-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.template-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.template-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.template-card:hover {
  border-color: rgba(74,222,128,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(30,60,140,0.15);
}
.template-preview { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg); }
.template-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.template-card:hover .template-img { transform: scale(1.04); }
.template-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,13,24,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.template-card:hover .template-overlay { opacity: 1; }
.preview-btn {
  background: var(--green);
  color: #080d18;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.35rem;
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(8px);
  transition: transform 0.3s;
}
.template-card:hover .preview-btn { transform: translateY(0); }
.template-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid var(--border);
}
.template-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}
.template-name {
  font-weight: 700;
  font-size: 1rem;
  flex: 1;
  color: var(--text);
}
.template-price {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 600;
}
.templates-cta { text-align: center; margin-top: 2.5rem; }

/* ===== FEATURES ===== */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: rgba(74,222,128,0.3);
  background: var(--surface2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3), 0 0 20px rgba(30,60,140,0.12);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.feature-card h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* ===== INCLUDED ===== */
.included { background: var(--bg2); }
.included-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.included-left .eyebrow { margin-bottom: 0.75rem; }
.included-left h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.75rem;
}
.included-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.included-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: var(--text-muted); }
.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

/* Code preview */
.code-preview {
  background: #060b14;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(30,60,140,0.1);
}
.code-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: #04080f;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.code-title { font-family: var(--mono); font-size: 0.75rem; color: var(--text-dim); margin-left: 0.25rem; }
.code-body {
  padding: 1.5rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.7;
  overflow-x: auto;
}
.c-keyword { color: #79c0ff; }
.c-fn { color: #d2a8ff; }
.c-str { color: #a5d6ff; }
.c-num { color: #79c0ff; }
.c-prop { color: #ffa657; }

/* ===== PRICING ===== */
.pricing { background: var(--bg); }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-cards--single {
  grid-template-columns: 1fr;
  max-width: 480px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card.featured {
  border-color: rgba(74,222,128,0.4);
  background: linear-gradient(135deg, var(--surface2), var(--surface));
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #0a0f0c;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.25rem 0.85rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.pricing-amount {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.pricing-old {
  font-size: 1.1rem;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 400;
}
.pricing-desc { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.5rem; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.pricing-features li { font-size: 0.875rem; color: var(--text-muted); }
.pricing-features li { color: var(--text); }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg2); }
.reviews-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  animation: reviewsScroll 38s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
  width: 340px;
}
.review-card:hover { border-color: rgba(74,222,128,0.25); transform: translateY(-3px); }
.review-stars { color: var(--green); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.review-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-author strong { display: block; font-size: 0.9rem; }
.review-author span { font-size: 0.78rem; color: var(--text-dim); }

/* ===== FAQ ===== */
.faq { background: var(--bg); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(74,222,128,0.3); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--body);
  gap: 1rem;
}
.faq-icon {
  font-size: 1.25rem;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background:  url('images/temp/bg.png');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
}
.cta-wrap h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.cta-wrap p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 4rem 2rem 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; margin-top: 0.75rem; line-height: 1.6; max-width: 260px; }
.footer-links-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-links-group { min-width: 0; }
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-group ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links-group ul a:hover { color: var(--green); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; min-width: 0; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.825rem;
  min-width: 0;
}
.footer-contact li span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-socials a:hover { background: var(--green-dim); color: var(--green); border-color: rgba(74,222,128,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .templates-grid { grid-template-columns: repeat(4, 1fr); }
  .template-card:nth-child(1),
  .template-card:nth-child(2),
  .template-card:nth-child(3) { grid-column: span 2; }
  .template-card:nth-child(4) { grid-column: 1 / span 2; }
  .template-card:nth-child(5) { grid-column: 3 / span 2; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .included-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .template-card:nth-child(n) { grid-column: span 1; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .review-card { width: 280px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .section-inner { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: 1fr; }
  .template-card:nth-child(n) { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ===== GSAP INITIAL STATES — set by JS, not CSS, so content is always visible as fallback ===== */
