/* ============================================
   COPYFIX AGENCY — STYLESHEET
   Palette: Charcoal #1a1a2e | Orange #f97316
   Navy: #0f3460 | Light: #f0f0f0 | White: #fff
   Font: Syne (display) + Inter (body)
============================================ */

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

:root {
  --dark:    #111118;
  --dark2:   #1a1a2e;
  --navy:    #0f3460;
  --blue:    #1a6fc4;
  --orange:  #f97316;
  --orange2: #fb923c;
  --light:   #f5f5f7;
  --muted:   #9ca3af;
  --white:   #ffffff;
  --border:  rgba(255,255,255,0.08);
  --card-bg: #1c1c2e;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--light);
  font-size: 16px;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
html, body { overflow-x: hidden; max-width: 100vw; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--orange); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background 0.25s, transform 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 30px;
  border-radius: 4px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-links { display: flex; gap: 20px; }
.topbar-links a { color: var(--muted); transition: color 0.2s; }
.topbar-links a:hover { color: var(--orange); }

/* ── HEADER / NAV ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { width: 40px; height: 40px; object-fit: contain; }
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--orange); }
.nav-links .arrow { font-size: 0.6rem; opacity: 0.6; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  border-bottom: 1px solid var(--border);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  color: var(--orange);
  background: rgba(249,115,22,0.06);
  padding-left: 26px;
}

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--orange2); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 10px;
  position: relative;
  z-index: 1100;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  pointer-events: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(249,115,22,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(15,52,96,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(26,26,46,0.8) 0%, transparent 50%),
    linear-gradient(135deg, #080810 0%, #0d0d20 40%, #0a0a18 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,18,0.92) 45%, rgba(10,10,18,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 24px;
  margin-left: max(24px, calc((100vw - 1200px) / 2));
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
}

/* FIXED: smaller, tighter headline so it reads in 2-3 lines */
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  max-width: 600px;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ── SECTION HELPERS ── */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}
.center { text-align: center; }
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 56px;
}

/* ── ABOUT STRIP ── */
.about-strip {
  padding: 100px 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.about-text p { color: rgba(255,255,255,0.65); margin-bottom: 16px; font-size: 0.975rem; }
.about-text .btn-primary { margin-top: 12px; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--orange);
  border-radius: 0 2px 2px 0;
}
.stat-card:hover { border-color: rgba(249,115,22,0.3); }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; }

/* ── SERVICES SECTION ── */
.services-section { padding: 100px 0; background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 30px;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: rgba(249,115,22,0.4); transform: translateY(-4px); }
.service-icon { width: 52px; height: 52px; color: var(--orange); margin-bottom: 20px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { color: rgba(255,255,255,0.58); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-card--cta {
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
  border-color: rgba(249,115,22,0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card--cta h3 { color: var(--orange); }
.service-card--cta p { margin-bottom: 24px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2244 100%);
  border-top: 1px solid rgba(249,115,22,0.2);
  border-bottom: 1px solid rgba(249,115,22,0.2);
  padding: 80px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-banner-text p { color: rgba(255,255,255,0.6); font-size: 0.975rem; }

/* ── PROCESS SECTION ── */
.process-section { padding: 100px 0; background: var(--dark2); }
.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  flex-wrap: wrap;
}
.process-step { flex: 1; min-width: 180px; max-width: 220px; text-align: center; padding: 0 12px; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.process-connector {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--orange), rgba(249,115,22,0.1));
  margin-top: 40px;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 100px 0; background: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 30px;
  position: relative;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(249,115,22,0.3); }
.quote-mark {
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 8px;
}
.testimonial-card > p {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-weight: 700; font-size: 0.9rem; color: var(--white); }
.testimonial-author span { font-size: 0.78rem; color: var(--muted); }

/* ── BLOG SECTION ── */
.blog-section { padding: 100px 0; background: var(--dark2); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-4px); }
.blog-img { height: 180px; background-size: cover; background-position: center; }
.blog-img--1 { background: linear-gradient(135deg, #0f3460 0%, #1a1a3e 100%); position: relative; }
.blog-img--1::after { content: '✍️'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 3rem; opacity: 0.4; }
.blog-img--2 { background: linear-gradient(135deg, #1a0a3e 0%, #0f1560 100%); position: relative; }
.blog-img--2::after { content: '🌐'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 3rem; opacity: 0.4; }
.blog-img--3 { background: linear-gradient(135deg, #3e1a0a 0%, #601015 100%); position: relative; }
.blog-img--3::after { content: '🎯'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 3rem; opacity: 0.4; }
.blog-body { padding: 24px; }
.blog-tag { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); font-weight: 700; display: block; margin-bottom: 10px; }
.blog-body h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 10px; }
.blog-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.social-links a svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.social-links a:hover { color: var(--orange); border-color: var(--orange); background: rgba(249,115,22,0.08); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: #0d0d15; border-top: 1px solid var(--border); }
.footer-top { background: linear-gradient(135deg, var(--dark2), #0f0f20); border-bottom: 1px solid var(--border); padding: 64px 0; }
.footer-top-inner { text-align: center; }
.footer-top h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-top p { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto;
  border-radius: 4px; overflow: hidden; border: 1px solid var(--border);
}
.newsletter-form input {
  flex: 1; padding: 14px 20px;
  background: rgba(255,255,255,0.04); border: none;
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: var(--orange); color: var(--white); border: none;
  padding: 14px 24px; font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.875rem; cursor: pointer; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--orange2); }

.footer-main { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.footer-contact { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-col h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 20px; letter-spacing: 0.04em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s, padding-left 0.2s; }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: var(--muted); }
.footer-bottom-inner div { display: flex; gap: 24px; }
.footer-bottom-inner a { color: var(--muted); transition: color 0.2s; }
.footer-bottom-inner a:hover { color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; font-size: 0.75rem; }
  .topbar-links { justify-content: center; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: min(300px, 85vw); height: 100vh;
    background: var(--dark2); flex-direction: column;
    align-items: flex-start; padding: 80px 24px 40px;
    gap: 0; transition: right 0.35s ease; overflow-y: auto;
    z-index: 999; border-left: 1px solid var(--border);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; font-size: 1rem; }
  .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    background: rgba(0,0,0,0.2); border: none;
    border-radius: 0; display: none; padding-left: 16px;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.9rem; }
  .hero { min-height: 100svh; }
  .hero-bg { background-attachment: scroll; }
  .hero-overlay { background: rgba(10,10,18,0.85); }
  .hero-content { margin-left: 0; padding: 0 20px; width: 100%; max-width: 100%; }
  .hero-headline { font-size: clamp(1.6rem, 6vw, 2.2rem); max-width: 100%; }
  .hero-sub { font-size: 0.95rem; }
  .hero-scroll-hint { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-grid { flex-direction: column; align-items: center; }
  .process-connector { width: 1px; height: 40px; margin: 0; background: linear-gradient(to bottom, var(--orange), transparent); }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-main { padding: 48px 0; }
  .footer-top { padding: 48px 0; }
  .nav-inner { padding: 0 16px; gap: 16px; height: 64px; }
  .logo-text { font-size: 1rem; }
  .logo img { width: 32px; height: 32px; }
  .section-sub { padding: 0 16px; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .about-grid { grid-template-columns: 1fr !important; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { width: 100%; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .cta-banner-inner { flex-direction: column; text-align: center; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .section-title { font-size: 1.6rem; }
  .stat-num { font-size: 1.8rem; }
}
