
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal:        #1FC4C4;
  --teal-deep:   #0D7A7A;
  --teal-dark:   #0A4A4A;
  --ocean:       #0B2D2D;
  --olive:       #4A5E3A;
  --lime:        #A8C44A;
  --lime-bright: #C8E060;
  --moss:        #2E3D1F;
  --black:       #060C0C;
  --graphite:    #0E1A1A;
  --charcoal:    #131E1E;
  --surface:     #172020;
  --glass:       rgba(31, 196, 196, 0.06);
  --glass-border:rgba(31, 196, 196, 0.15);
  --text-primary:#E8F4F4;
  --text-muted:  #7AADAD;
  --text-dim:    #3D6060;
  --glow-teal:   0 0 40px rgba(31,196,196,0.25), 0 0 80px rgba(31,196,196,0.08);
  --glow-lime:   0 0 40px rgba(168,196,74,0.25), 0 0 80px rgba(168,196,74,0.08);
  --font:        'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--black); color: var(--text-primary); overflow-x: hidden; cursor: none; line-height: 1.6; }

#cursor { width: 12px; height: 12px; background: var(--teal); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.1s, background 0.3s; mix-blend-mode: screen; }
#cursor-follower { width: 36px; height: 36px; border: 1px solid rgba(31,196,196,0.4); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform 0.25s var(--ease-luxury), opacity 0.3s; mix-blend-mode: screen; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--teal-deep); border-radius: 2px; }

.display-xl { font-size: clamp(3rem, 5vw, 5.4rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.02; }
.display-lg { font-size: clamp(2rem, 4vw, 4rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.display-md { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 600; letter-spacing: -0.01em; }
.body-lg { font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 300; line-height: 1.8; }
.body-sm { font-size: 0.875rem; font-weight: 400; line-height: 1.7; }
.label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; }

.gradient-text { background: linear-gradient(135deg, var(--teal) 0%, var(--lime-bright) 60%, var(--teal) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; background-size: 200% auto; animation: shimmer 4s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }

.container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }
.section { padding: clamp(5rem, 10vw, 10rem) 0; }
.section-label { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--teal); margin-bottom: 1.5rem; }
.section-label::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--teal); }

.page { display: none; min-height: 100vh; }
.page.active { display: block; }

.ambient-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 80% 60% at 10% 20%, rgba(13,122,122,0.12) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 90% 80%, rgba(46,61,31,0.15) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 50% 50%, rgba(6,12,12,0) 0%, var(--black) 100%); }

#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.5rem 0; transition: all 0.4s var(--ease-luxury); }
#header.scrolled { padding: 1rem 0; background: rgba(6,12,12,0.85); backdrop-filter: blur(20px) saturate(1.5); -webkit-backdrop-filter: blur(20px) saturate(1.5); border-bottom: 1px solid var(--glass-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; text-decoration: none; }
.header-logo { height: 90px; width: auto; object-fit: contain; transition: transform 0.3s ease; }
.header-logo:hover { transform: scale(1.03); }
.logo-item img { width: 100%; height: 100%; object-fit: contain; opacity: 0.9; transition: transform 0.35s ease, opacity 0.35s ease; }

nav { display: flex; align-items: center; gap: 3rem; }
nav a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; position: relative; padding: 0.5rem 0; transition: color 0.3s; cursor: pointer; }
nav a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 1px; background: var(--teal); transition: right 0.3s var(--ease-luxury); }
nav a:hover, nav a.active { color: var(--teal); }
nav a:hover::after, nav a.active::after { right: 0; }

/* ==================== CLIENTS SECTION ==================== */
.clients-section {
  background: #108585;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.06), transparent 40%);
  pointer-events: none;
}
.clients-section .section-label { color: white; }
.clients-section .section-label::before { background: white; }
.clients-section .display-lg { color: white; }
.clients-section .logos-strip { margin-top: 2rem; padding: 1rem 0; }
.clients-section .logo-item {
  width: 180px; height: 95px; background: rgba(255,255,255,0.95);
  border-radius: 18px; padding: 1rem; border: none; backdrop-filter: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.clients-section .logo-item img { width: 100%; height: 100%; object-fit: contain; opacity: 1; }
.clients-section .logo-item:hover { transform: translateY(-8px); box-shadow: 0 18px 45px rgba(0,0,0,.18); }

.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.8rem; background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%); color: var(--black); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; text-decoration: none; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 20px rgba(31,196,196,0.3); }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--lime) 0%, var(--lime-bright) 100%); opacity: 0; transition: opacity 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(31,196,196,0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.8rem; background: transparent; color: var(--text-primary); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--glass-border); border-radius: 2px; cursor: pointer; text-decoration: none; transition: all 0.3s var(--ease-luxury); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); background: var(--glass); box-shadow: var(--glow-teal); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; z-index: 1001; }
.hamburger span { display: block; height: 1.5px; background: var(--text-primary); transition: all 0.4s var(--ease-luxury); }
.hamburger span:nth-child(1) { width: 28px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.open span:nth-child(1) { width: 24px; transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { width: 24px; transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { position: fixed; inset: 0; z-index: 999; background: rgba(6,12,12,0.97); backdrop-filter: blur(30px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease-luxury); }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text-muted); text-decoration: none; transition: color 0.3s; cursor: pointer; }
.mobile-nav a:hover { color: var(--teal); }

/* ==================== HERO ==================== */
.hero { min-height: 78vh; display: flex; align-items: center; position: relative; overflow: hidden; bottom: -60px; padding-top: 6.5rem; padding-bottom: 3rem; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.hero-content { max-width: 820px; }
.hero-sub { color: var(--text-muted); max-width: 620px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--glass); border: 1px solid var(--glass-border); padding: 0.5rem 1rem; border-radius: 100px; margin-bottom: 2rem; backdrop-filter: blur(10px); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.badge-text { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); }
.hero-headline { max-width: 20ch; line-height: 1.05; letter-spacing: -0.04em; text-wrap: balance; margin-bottom: 1.5rem; }
.hero-sub { color: var(--text-muted); max-width: 600px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.trust-strip { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-num { font-size: 1.5rem; font-weight: 700; color: var(--teal); }
.trust-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); line-height: 1.3; }

/* Hero trust indicators (checkmark style) */
.hero-trust-indicators { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); }
.hero-trust-item .check { color: var(--teal); font-weight: 700; font-size: 0.9rem; }

/* ==================== HERO GROWTH GRAPH ==================== */
#hero-graph-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}
/* Vignette overlay so edges fade into the dark hero bg */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 15% 50%, transparent 40%, rgba(6,12,12,0.65) 100%),
    linear-gradient(to bottom, rgba(6,12,12,0.35) 0%, transparent 20%, transparent 75%, rgba(6,12,12,0.55) 100%);
}

/* ==================== STATS SECTION ==================== */
.stats-section { background: var(--graphite); padding: clamp(4rem, 8vw, 8rem) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; }
.stat-block { text-align: center; padding: 3rem 2rem; position: relative; transition: background 0.3s; }
.stat-block:not(:last-child)::after { content: ''; position: absolute; top: 20%; right: 0; height: 60%; width: 1px; background: var(--glass-border); }
.stat-block:hover { background: var(--glass); }
.stat-block-num { font-size: clamp(3rem, 5vw, 5rem); font-weight: 800; line-height: 1; color: var(--teal); margin-bottom: 0.5rem; display: block; }
.stat-block-suffix { color: var(--lime-bright); }
.stat-block-label { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); line-height: 1.5; }
.stat-block-sub { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.3rem; }

/* ==================== PACKAGES ==================== */
.packages-section { background: var(--graphite); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.pkg-card { background: rgba(13,26,26,0.8); border: 1px solid var(--glass-border); border-radius: 12px; padding: 2.5rem; position: relative; overflow: hidden; transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s; backdrop-filter: blur(20px); }
.pkg-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--lime), var(--teal-dark)); transition: opacity 0.3s; }
.pkg-card.featured { border-color: rgba(31,196,196,0.3); background: linear-gradient(145deg, rgba(13,26,26,0.9) 0%, rgba(10,74,74,0.2) 100%); }
.pkg-card.featured::before { opacity: 1; }
.pkg-card:not(.featured)::before { opacity: 0.4; }
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--glow-teal); }
.pkg-card:hover::before { opacity: 1; }
.pkg-badge { display: inline-block; padding: 0.3rem 0.8rem; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 100px; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem; }
.pkg-name { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.4rem; }
.pkg-target { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.pkg-divider { height: 1px; background: var(--glass-border); margin-bottom: 1.5rem; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pkg-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.pkg-features li::before { content: '→'; color: var(--teal); flex-shrink: 0; margin-top: 1px; font-size: 0.7rem; }
.pkg-price { margin-bottom: 1.5rem; }
.pkg-price-num { font-size: 2rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pkg-price-note { font-size: 0.7rem; color: var(--text-dim); margin-top: 4px; letter-spacing: 0.05em; }
.featured .pkg-price-num { color: var(--teal); }

/* ==================== TESTIMONIALS ==================== */
.testimonials-section { overflow: hidden; }
.testimonials-track { display: flex; gap: 1.5rem; animation: testimonial-scroll 30s linear infinite; width: max-content; }
.testimonials-track:hover { animation-play-state: paused; }
@keyframes testimonial-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.testi-card { background: rgba(13,26,26,0.85); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2.5rem; min-width: 380px; max-width: 380px; backdrop-filter: blur(20px); flex-shrink: 0; position: relative; box-shadow: 0 8px 40px rgba(0,0,0,0.2); }
.testi-quote { font-size: 3.5rem; line-height: 0.5; color: var(--teal); opacity: 0.25; margin-bottom: 1.2rem; font-family: Georgia, serif; }
.testi-text { font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 2rem; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; border-top: 1px solid var(--glass-border); padding-top: 1.25rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-deep), var(--moss)); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; color: var(--teal); flex-shrink: 0; border: 1px solid var(--glass-border); }
.testi-name { font-size: 0.9rem; font-weight: 700; }
.testi-co { font-size: 0.72rem; color: var(--text-dim); margin-top: 3px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star { color: var(--lime); font-size: 0.8rem; }

/* ==================== LOGOS STRIP ==================== */
.logos-strip { position: relative; width: 100%; overflow: hidden; padding: 3rem 0; margin-top: 2rem; }
.logos-track { display: flex; align-items: center; gap: 2rem; width: max-content; animation: marquee 85s linear infinite; }
.logo-item { width: 170px; height: 90px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 1rem 1.2rem; border-radius: 18px; background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.06); backdrop-filter: blur(14px); transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease; }
.logo-item:hover { transform: translateY(-8px); border-color: rgba(31,196,196,0.25); background: linear-gradient(135deg, white); box-shadow: 0 10px 40px rgba(31,196,196,0.12); }
.logo-item:hover img { transform: scale(1.08); opacity: 1; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==================== CTA SECTION ==================== */
.cta-section { position: relative; overflow: hidden; text-align: center; background: linear-gradient(180deg, var(--graphite) 0%, var(--black) 100%); }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(31,196,196,0.08) 0%, transparent 70%); pointer-events: none; }
.cta-headline { margin-bottom: 1.5rem; }
.cta-sub { color: var(--text-muted); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==================== ABOUT PAGE ==================== */
.about-hero { min-height: 70vh; display: flex; align-items: center; padding-top: 8rem; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--black) 0%, var(--graphite) 50%, var(--black) 100%); }
.about-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(13,122,122,0.12) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 20% 20%, rgba(46,61,31,0.1) 0%, transparent 50%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-hero-image-wrap { position: relative; display: flex; align-items: center; justify-content: center; padding: 3px; border-radius: 24px; }
.about-hero-image-wrap::before { content: ''; position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(135deg, var(--teal), var(--lime-bright), var(--teal-dark), var(--teal)); background-size: 300% 300%; z-index: 0; animation: border-glow-anim 4s ease-in-out infinite alternate; opacity: 0.7; }
@keyframes border-glow-anim { 0% { background-position: 0% 50%; opacity: 0.4; box-shadow: 0 0 30px rgba(31,196,196,0.2); } 100% { background-position: 100% 50%; opacity: 0.85; box-shadow: 0 0 70px rgba(31,196,196,0.5), 0 0 140px rgba(168,196,74,0.2); } }
.about-hero-img-inner { position: relative; z-index: 1; border-radius: 22px; overflow: hidden; width: 100%; background: var(--black); }
.about-hero-img { width: 100%; height: auto; display: block; border-radius: 22px; filter: saturate(1.1) contrast(1.05); transition: transform 0.6s var(--ease-luxury), filter 0.4s; }
.about-hero-image-wrap:hover .about-hero-img { transform: scale(1.02) translateY(-4px); filter: saturate(1.2) contrast(1.08) brightness(1.06); }
.about-img-corner { position: absolute; width: 20px; height: 20px; z-index: 3; }
.about-img-corner.tl { top: 16px; left: 16px; border-top: 2px solid var(--teal); border-left: 2px solid var(--teal); }
.about-img-corner.tr { top: 16px; right: 16px; border-top: 2px solid var(--lime); border-right: 2px solid var(--lime); }
.about-img-corner.bl { bottom: 16px; left: 16px; border-bottom: 2px solid var(--lime); border-left: 2px solid var(--lime); }
.about-img-corner.br { bottom: 16px; right: 16px; border-bottom: 2px solid var(--teal); border-right: 2px solid var(--teal); }
.about-img-scan { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); z-index: 4; animation: img-scan-anim 4s linear infinite; opacity: 0; pointer-events: none; }
@keyframes img-scan-anim { 0%{top:3%;opacity:0} 8%{opacity:0.6} 90%{opacity:0.6} 100%{top:97%;opacity:0} }

/* Why Us */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.why-card { padding: 2rem; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; transition: all 0.3s var(--ease-luxury); cursor: default; }
.why-card:hover { background: rgba(31,196,196,0.06); border-color: rgba(31,196,196,0.25); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.why-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(200px, 280px)); justify-content: center; gap: 1.5rem; margin-top: 3rem; }
.svc-block { padding: 2.5rem 1.5rem; text-align: center; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; transition: all 0.4s var(--ease-luxury); cursor: default; position: relative; overflow: hidden; }
.svc-block::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--lime)); transform: scaleX(0); transition: transform 0.3s; }
.svc-block:hover { transform: translateY(-6px); box-shadow: var(--glow-teal); }
.svc-block:hover::after { transform: scaleX(1); }
.svc-icon { font-size: 1.8rem; margin-bottom: 0.75rem; display: block; }
.svc-name { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem; }
.svc-desc { font-size: 0.78rem; color: var(--text-dim); line-height: 1.6; }

/* ==================== PROCESS SECTION ==================== */
.process-section { background: var(--black); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 4rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 2.5rem; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), var(--lime), var(--teal), transparent); opacity: 0.3; z-index: 0; }
.process-card { background: rgba(13,26,26,0.7); border: 1px solid var(--glass-border); border-radius: 14px; padding: 2rem 1.25rem; text-align: center; position: relative; z-index: 1; transition: all 0.4s var(--ease-luxury); }
.process-card:hover { border-color: var(--teal); transform: translateY(-6px); box-shadow: var(--glow-teal); background: rgba(13,26,26,0.95); }
.process-step-num { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--teal); background: var(--glass); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 0.75rem; font-weight: 700; color: var(--teal); letter-spacing: 0.05em; }
.process-card-title { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em; margin-bottom: 0.6rem; line-height: 1.4; }
.process-card-desc { font-size: 0.72rem; color: var(--text-dim); line-height: 1.6; }

/* ==================== CASE STUDIES ==================== */
.case-studies-section { background: var(--graphite); }
.case-studies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.case-card { background: rgba(13,26,26,0.85); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2.5rem; position: relative; overflow: hidden; transition: all 0.4s var(--ease-luxury); }
.case-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--lime)); opacity: 0.6; transition: opacity 0.3s; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--glow-teal); border-color: rgba(31,196,196,0.3); }
.case-card:hover::before { opacity: 1; }
.case-client { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.case-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.5rem; }
.case-block { margin-bottom: 1.25rem; }
.case-block-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); margin-bottom: 0.4rem; font-weight: 700; }
.case-block-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.case-results { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--glass-border); }
.case-result-pill { padding: 0.35rem 0.9rem; background: rgba(31,196,196,0.08); border: 1px solid rgba(31,196,196,0.2); border-radius: 100px; font-size: 0.72rem; font-weight: 600; color: var(--teal); }

/* ==================== FAQ ==================== */
.faq-section { background: var(--black); }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; max-width: 860px; margin-inline: auto; margin-top: 3rem; }
.faq-item { background: rgba(13,26,26,0.7); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: rgba(31,196,196,0.3); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 2rem; cursor: pointer; gap: 1rem; }
.faq-question-text { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--teal); font-size: 1.1rem; transition: transform 0.3s, background 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--glass); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-luxury), padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 2rem 1.75rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }

/* Ticker */
.ticker-section { padding: 1.5rem 0; overflow: hidden; background: linear-gradient(90deg, var(--teal-dark), var(--moss), var(--teal-dark)); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.ticker-track { display: flex; gap: 3rem; animation: marquee-slow 12s linear infinite; width: max-content; }
.ticker-item { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--teal); white-space: nowrap; display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }
@keyframes marquee-slow { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Contact */
.contact-hero { min-height: 50vh; display: flex; align-items: center; padding-top: 8rem; position: relative; }
.contact-form-section { background: var(--graphite); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.form-group { margin-bottom: 1.5rem; position: relative; }
.form-group label { display: block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.6rem; transition: color 0.3s; }
.form-group:focus-within label { color: var(--teal); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.9rem 1.1rem; background: rgba(6,12,12,0.8); border: 1px solid var(--glass-border); border-radius: 4px; color: var(--text-primary); font-family: var(--font); font-size: 0.9rem; transition: all 0.3s var(--ease-luxury); outline: none; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,196,196,0.08); background: rgba(10,74,74,0.1); }
.form-group select option { background: var(--graphite); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-card { padding: 1.5rem; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 10px; }
.info-card-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
.info-line { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.info-icon { font-size: 0.85rem; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.info-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.info-text a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.info-text a:hover { color: var(--teal); }
.location-card { padding: 1.5rem; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 10px; margin-bottom: 1rem; }
.loc-city { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.3rem; }
.loc-tag { display: inline-block; font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); background: rgba(168,196,74,0.1); border: 1px solid rgba(168,196,74,0.2); border-radius: 100px; padding: 2px 8px; margin-bottom: 0.6rem; }
.loc-address { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 3rem; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.success-icon { font-size: 3rem; margin-bottom: 1rem; color: var(--teal); }
.success-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.success-text { color: var(--text-muted); font-size: 0.9rem; }

/* Footer */
footer { background: var(--black); border-top: 1px solid var(--glass-border); padding: 5rem 0 2rem; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), var(--lime), var(--teal), transparent); opacity: 0.5; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 3rem; margin-bottom: 4rem; }
.footer-about { max-width: 280px; }
.footer-logo { margin-bottom: 1.5rem; }
.footer-logo-img { height: 90px; width: auto; object-fit: contain; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--text-dim); transition: all 0.3s; cursor: pointer; text-decoration: none; }
.social-btn:hover { border-color: var(--teal); color: var(--teal); box-shadow: var(--glow-teal); }
.footer-nav h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.2rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav ul li a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-nav ul li a:hover { color: var(--teal); }
.newsletter-form { display: flex; gap: 0; margin-top: 1rem; }
.newsletter-form input { flex: 1; padding: 0.75rem 1rem; background: var(--glass); border: 1px solid var(--glass-border); border-right: none; border-radius: 4px 0 0 4px; color: var(--text-primary); font-family: var(--font); font-size: 0.8rem; outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: var(--teal); }
.newsletter-form button { padding: 0.75rem 1.2rem; background: linear-gradient(135deg, var(--teal-deep), var(--teal)); border: none; border-radius: 0 4px 4px 0; color: var(--black); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.newsletter-form button:hover { background: linear-gradient(135deg, var(--lime), var(--lime-bright)); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.75rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }

/* WhatsApp Float */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 990; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; text-decoration: none; animation: wa-bounce 3s ease-in-out infinite; transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.1); animation-play-state: paused; }
@keyframes wa-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.wa-float svg { width: 26px; height: 26px; fill: white; }

.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; margin-top: 3rem; opacity: 0.5; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--teal), transparent); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.glow-divider { height: 1px; margin: 0; background: linear-gradient(90deg, transparent, var(--teal), var(--lime), var(--teal), transparent); opacity: 0.3; }
.section-header { text-align: center; margin-bottom: 1rem; }
.section-header .section-label { justify-content: center; }
.counter { display: inline-block; }
.fade-in-up { animation: fadeInUp 0.9s var(--ease-luxury) both; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
.deco-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--teal), var(--lime)); margin: 1.5rem 0; }
.deco-line.center { margin-inline: auto; }

.about-stats { display:flex; justify-content:center; align-items:center; gap:0; max-width:1200px; margin:5rem auto; padding:2rem 0; }
.about-stat { flex:1; text-align:center; position:relative; padding:0 3rem; }
.about-stat:not(:last-child)::after { content:''; position:absolute; top:50%; right:0; transform:translateY(-50%); width:1px; height:70px; background:rgba(255,255,255,.12); }
.about-stat-num { display:block; font-size:clamp(3rem,4vw,4.5rem); font-weight:800; line-height:1; color:#1FC4C4; margin-bottom:.75rem; }
.about-stat-label { display:block; font-size:.85rem; letter-spacing:.25em; text-transform:uppercase; color:rgba(255,255,255,.55); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .case-studies-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-block:nth-child(2)::after { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-hero-image-wrap { max-width: 340px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .case-studies-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; margin-top: 4rem; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .packages-grid { max-width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block::after { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: 300px; max-width: 300px; }
}

/* ============================================================
   MOBILE OPTIMIZATION
   Fixes horizontal scroll, oversized type, cramped cards, tiny
   touch targets, and heavy GPU effects across 320–1024px.
   Desktop styles above are left completely untouched; everything
   below only activates at <=1024px via media queries.
   ============================================================ */

/* ---- Global safety net: nothing should ever force horizontal scroll ---- */
html, body { overflow-x: hidden; width: 100%; }
img, svg { max-width: 100%; height: auto; }

/* ---- Kill the custom cursor entirely on touch/coarse-pointer devices ---- */
@media (hover: none), (pointer: coarse) {
  #cursor, #cursor-follower { display: none !important; }
  body { cursor: auto; }
}

/* =================== 1024px — small laptops / tablet landscape =================== */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .about-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* =================== 768px — tablets =================== */
@media (max-width: 768px) {
  /* Header: 90px logo was eating the whole mobile header bar */
  .header-logo, .footer-logo-img { height: 56px; }
  #header { padding: 0.85rem 0; }
  /* Hamburger needs a real 44px+ tap target, not just its icon bounds */
  .hamburger { padding: 0.75rem; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

  /* Hero: remove the -60px negative bottom offset + 78vh min-height causing huge empty space */
  .hero { min-height: auto; bottom: 0; padding-top: 5.5rem; padding-bottom: 3rem; }
  .hero-inner, .hero-content { text-align: center; max-width: 100%; margin-inline: auto; }
  .hero-badge, .hero-headline, .hero-sub, .scroll-indicator { margin-inline: auto; }
  .hero-trust-indicators, .hero-ctas { justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block { padding: 2rem 1rem; }

  .packages-grid { grid-template-columns: 1fr; max-width: 480px; }

  .about-stats { flex-wrap: wrap; gap: 2rem 0; }
  .about-stat { flex: 1 1 50%; padding: 0 1rem; margin-bottom: 1.5rem; }
  .about-stat:nth-child(2)::after { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-about { max-width: 100%; }
}

/* =================== 480px — primary mobile tier =================== */
@media (max-width: 480px) {

  /* Layout: default container padding was 1.5rem/side minimum — too much on 320-414px screens */
  .container { padding: 0 1.1rem; }
  .section { padding: 3.25rem 0; } /* was clamp() up to 10rem — absurdly tall on phones */

  /* Typography: stop headings from hitting 48-86px on small screens */
  .display-xl { font-size: 2.15rem; line-height: 1.15; letter-spacing: -0.02em; }
  .display-lg { font-size: 1.65rem; line-height: 1.2; }
  .display-md { font-size: 1.25rem; }
  .body-lg { font-size: 0.95rem; line-height: 1.7; }
  .section-label .label { font-size: 0.62rem; letter-spacing: 0.18em; }

  /* Header */
  #header, #header.scrolled { padding: 0.65rem 0; }
  .header-logo { height: 44px; }

  /* Mobile nav: comfortable tap targets, less oversized type */
  .mobile-nav { gap: 1.75rem; }
  .mobile-nav a { font-size: 1.5rem; padding: 0.5rem 0; }

  /* WhatsApp float: smaller + pulled in from screen edge */
  .wa-float { width: 48px; height: 48px; bottom: 1.1rem; right: 1.1rem; }
  .wa-float svg { width: 22px; height: 22px; }

  /* Hero */
  .hero { padding-top: 5rem; padding-bottom: 2.5rem; }
  .hero-badge { padding: 0.4rem 0.85rem; margin-bottom: 1.25rem; }
  .badge-text { font-size: 0.62rem; }
  .hero-headline { font-size: 2.15rem; max-width: 100%; margin-bottom: 1.1rem; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 1.75rem; }
  .hero-trust-indicators { flex-direction: column; align-items: center; gap: 0.6rem; margin-bottom: 1.75rem; }
  .hero-trust-item { font-size: 0.78rem; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 0.85rem; margin-bottom: 2rem; }

  /* Full-width, 44px+ touch target buttons everywhere on mobile */
  .btn-primary, .btn-ghost { min-height: 48px; padding: 0.9rem 1.5rem; font-size: 0.74rem; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost,
  .cta-buttons .btn-primary, .cta-buttons .btn-ghost { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; width: 100%; }

  /* Client logo marquee: 170x90px logos were oversized + gap too wide for phones */
  .clients-section { padding: 3.5rem 0; }
  .logos-strip { padding: 1.5rem 0; margin-top: 1rem; }
  .logos-track { gap: 0.85rem; animation-duration: 45s; }
  .logo-item, .clients-section .logo-item { width: 108px; height: 60px; padding: 0.6rem; border-radius: 12px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-top: 2rem; }
  .stat-block { padding: 1.5rem 0.75rem; }
  .stat-block:nth-child(2)::after, .stat-block:nth-child(4)::after { display: none; }
  .stat-block-num { font-size: 2.1rem; }
  .stat-block-label { font-size: 0.65rem; }

  /* Services / Process / Case studies: single column, tighter padding */
  .services-grid, .process-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
  .svc-block, .process-card { padding: 1.75rem 1.25rem; }
  .case-studies-grid { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
  .case-card { padding: 1.75rem 1.5rem; }
  .case-title { font-size: 1.05rem; }
  .case-result-pill { font-size: 0.68rem; padding: 0.3rem 0.75rem; }

  /* Testimonials: 380px/300px min-width cards overflowed on 320-375px phones */
  .testi-card { min-width: 82vw; max-width: 82vw; padding: 1.75rem; }
  .testi-text { font-size: 0.88rem; }
  .testimonials-track { gap: 1rem; animation-duration: 22s; }

  /* Packages */
  .packages-grid { gap: 1.25rem; margin-top: 2.5rem; }
  .pkg-card { padding: 1.85rem 1.5rem; }
  .pkg-name { font-size: 1.2rem; }
  .pkg-price-num { font-size: 1.6rem; }

  /* FAQ */
  .faq-question { padding: 1.1rem 1.25rem; }
  .faq-question-text { font-size: 0.86rem; }
  .faq-answer-inner { padding: 0 1.25rem 1.4rem; font-size: 0.82rem; }

  /* About */
  .about-hero { padding-top: 6rem; min-height: auto; }
  .about-hero-image-wrap { max-width: 260px; }
  .about-stats { margin: 3rem auto; gap: 1.5rem 0; }
  .about-stat { flex: 1 1 50%; padding: 0 0.5rem; }
  .about-stat-num { font-size: 2.2rem; }
  .about-stat-label { font-size: 0.62rem; letter-spacing: 0.15em; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
  .why-card { padding: 1.5rem; }
  .ticker-item { font-size: 0.65rem; gap: 1rem; }

  /* Contact */
  .contact-hero { padding-top: 6rem; min-height: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input, .form-group select, .form-group textarea { padding: 0.85rem 1rem; font-size: 0.88rem; }
  .info-card, .location-card { padding: 1.25rem; }

  /* Footer */
  footer { padding: 3.5rem 0 1.5rem; }
  .footer-logo-img { height: 44px; }
  .footer-tagline { font-size: 0.82rem; }
  .newsletter-form { flex-direction: column; gap: 0.6rem; }
  .newsletter-form input { border-radius: 4px; border-right: 1px solid var(--glass-border); }
  .newsletter-form button { border-radius: 4px; padding: 0.85rem 1.2rem; min-height: 44px; }
  .social-btn { width: 44px; height: 44px; border: 1px solid var(--glass-border); } /* was 36px — below min touch target */
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem 1.25rem; }

  /* Performance: strip heavy glow/blur/scan animations on small screens */
  .pkg-card:hover, .why-card:hover, .svc-block:hover,
  .case-card:hover, .process-card:hover { box-shadow: none; }
  .about-hero-image-wrap::before { animation: none; opacity: 0.5; }
  .about-img-scan { display: none; }
  .glow-divider, footer::before, .process-grid::before { opacity: 0.2; }
}

/* =================== 414px — iPhone 12–15 range =================== */
@media (max-width: 414px) {
  .container { padding: 0 1rem; }
  .hero-headline { font-size: 2rem; }
  .testi-card { min-width: 85vw; max-width: 85vw; }
}

/* =================== 360px — common Android width =================== */
@media (max-width: 360px) {
  .display-xl, .hero-headline { font-size: 1.85rem; }
  .display-lg { font-size: 1.5rem; }
  .stat-block-num { font-size: 1.85rem; }
  .logo-item { width: 92px; height: 52px; }
  .btn-primary, .btn-ghost { font-size: 0.7rem; padding: 0.85rem 1.1rem; }
}

/* =================== 320px — smallest supported (iPhone SE, etc.) =================== */
@media (max-width: 320px) {
  .container { padding: 0 0.85rem; }
  .hero-headline { font-size: 1.65rem; }
  .display-lg { font-size: 1.35rem; }
  .pkg-card, .case-card, .why-card, .process-card, .svc-block { padding: 1.4rem 1.1rem; }
  .testi-card { min-width: 88vw; max-width: 88vw; padding: 1.4rem; }
  .about-stat-num { font-size: 1.85rem; }
  .btn-primary, .btn-ghost { font-size: 0.68rem; padding: 0.8rem 1rem; }
}

/* =================== Reduced motion / low-end device courtesy =================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}