/* =============================================
   READY LOCKERS — Premium Global Stylesheet
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  --navy:     #05101f;
  --navy2:    #0a1e38;
  --blue:     #1a4fd6;
  --blue-mid: #2563eb;
  --blue-lt:  #3b82f6;
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --sky:      #60a5fa;
  --white:    #ffffff;
  --off:      #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gold:     #f59e0b;
  --font:    'Plus Jakarta Sans', sans-serif;
  --mono:    'Inter', monospace;
  --r:  14px;
  --r-sm: 8px;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.22);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-800); background: var(--white); overflow-x: hidden; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ---- CONTAINER ---- */
.wrap  { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.wrap--narrow { max-width: 860px; margin: 0 auto; padding: 0 40px; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-mid); display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--blue-mid); border-radius: 2px; flex-shrink: 0; }
.eyebrow--white { color: rgba(255,255,255,0.65); }
.eyebrow--white::before { background: rgba(255,255,255,0.4); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

h1.display {
  font-family: var(--font); font-size: clamp(44px,5.5vw,80px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--white);
}
h1.display span { color: var(--sky); }
h2.section-h {
  font-family: var(--font); font-size: clamp(28px,3.5vw,48px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 16px;
}
h2.section-h--white { color: var(--white); }
.section-lead { font-size: 17px; font-weight: 400; color: var(--gray-500); line-height: 1.8; max-width: 580px; }
.section-lead--white { color: rgba(255,255,255,0.65); }
.section-lead--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--r-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.22s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--blue-mid); color: var(--white); border-color: var(--blue-mid); }
.btn-primary:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,99,235,0.35); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); font-weight: 800; }
.btn-white:hover { background: var(--blue-100); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue-mid); border-color: var(--blue-mid); }
.btn-outline:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }
.btn svg, .btn-arrow::after { content: '→'; margin-left: 2px; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---- BADGE ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,99,235,0.1); color: var(--blue-mid);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(37,99,235,0.2);
}
.badge--white { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.2); }
.badge::before { content: '●'; font-size: 6px; color: var(--blue-lt); }
.badge--white::before { color: var(--sky); }

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0; transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.nav.solid { background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(0,0,0,0.08); }
.nav__bar { max-width: 1360px; margin: 0 auto; padding: 22px 40px; display: flex; align-items: center; justify-content: space-between; }
.nav.solid .nav__bar { padding: 14px 40px; }

/* Logo */
.nav__logo { font-family: var(--font); font-size: 20px; font-weight: 800; display: flex; align-items: center; gap: 3px; }
.nav__logo .r { color: var(--white); transition: color 0.3s; }
.nav__logo .l { color: var(--sky); transition: color 0.3s; }
.nav.solid .nav__logo .r { color: var(--blue); }
.nav.solid .nav__logo .l { color: var(--blue-lt); }

/* Links */
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.82); padding: 8px 14px; border-radius: var(--r-sm); transition: all 0.2s; }
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav.solid .nav__links a { color: var(--gray-600); }
.nav.solid .nav__links a:hover { color: var(--blue); background: var(--blue-50); }
.nav__cta-btn { background: var(--blue-mid) !important; color: var(--white) !important; border-radius: var(--r-sm); padding: 10px 20px !important; }
.nav__cta-btn:hover { background: var(--blue) !important; box-shadow: 0 4px 16px rgba(37,99,235,0.4); }
.nav.solid .nav__cta-btn { background: var(--blue-mid) !important; color: var(--white) !important; }

/* Phone in nav */
.nav__phone { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.nav__phone:hover { color: var(--white); }
.nav.solid .nav__phone { color: var(--blue-mid); }

/* Burger */
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: background 0.3s; display: block; }
.nav.solid .nav__burger span { background: var(--gray-800); }

/* Mobile overlay */
.mob-nav { position: fixed; inset: 0; background: var(--navy); z-index: 1100; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; transform: translateX(100%); transition: transform 0.38s var(--ease); }
.mob-nav.open { transform: none; }
.mob-nav a { font-size: 28px; font-weight: 800; color: var(--white); transition: color 0.2s; }
.mob-nav a:hover { color: var(--sky); }
.mob-nav__close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: var(--white); font-size: 36px; cursor: pointer; line-height: 1; }
.mob-nav__phone { font-size: 18px !important; color: var(--sky) !important; margin-top: 8px; }

/* ============================================
   TICKER
   ============================================ */
.ticker { background: var(--blue-mid); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ticker__inner { display: inline-flex; animation: tick 40s linear infinite; }
.ticker__inner span { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.9); padding: 0 32px; }
.ticker__inner .dot { color: rgba(255,255,255,0.35); font-size: 6px; padding: 0; display: flex; align-items: center; }
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============================================
   STATS
   ============================================ */
.stats { background: var(--navy); padding: 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 44px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; transition: background 0.3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--sky)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.stat-item:hover::after { transform: scaleX(1); }
.stat-num { font-family: var(--font); font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-sup { font-size: 32px; color: var(--sky); }
.stat-label { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 10px; }

/* ============================================
   FEATURE PILLS
   ============================================ */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: var(--blue-50); color: var(--blue); border: 1px solid var(--blue-100); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 100px; transition: all 0.2s; cursor: default; }
.pill:hover { background: var(--blue-mid); color: var(--white); border-color: var(--blue-mid); transform: translateY(-2px); }

/* ============================================
   SPLIT SECTIONS (image + text)
   ============================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split--flip .split__img { order: 2; }
.split--flip .split__text { order: 1; }
.split__img { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.split__img img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.55s var(--ease); }
.split__img:hover img { transform: scale(1.04); }
.split__img-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(5,16,31,0.85); backdrop-filter: blur(8px); color: var(--white); border-radius: var(--r-sm); padding: 10px 16px; border: 1px solid rgba(255,255,255,0.1); }
.split__img-badge strong { display: block; font-size: 14px; font-weight: 800; }
.split__img-badge span { font-size: 11px; color: var(--sky); font-weight: 600; }
.split__text h2 { margin-bottom: 16px; }
.split__text p { font-size: 16px; color: var(--gray-500); line-height: 1.8; margin-bottom: 20px; }
.split__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.split__list li { font-size: 15px; color: var(--gray-600); display: flex; align-items: center; gap: 10px; font-weight: 500; }
.split__list li::before { content: '✓'; width: 22px; height: 22px; background: var(--blue-50); color: var(--blue-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }

/* ============================================
   CARDS
   ============================================ */
.cards-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

.card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r);
  padding: 36px 28px; transition: all 0.28s var(--ease); position: relative; overflow: hidden;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--sky)); transform: scaleX(0); transition: transform 0.4s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon { font-size: 38px; margin-bottom: 20px; display: block; }
.card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.card p { font-size: 14px; color: var(--gray-500); line-height: 1.75; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--blue-mid); margin-top: 18px; transition: gap 0.2s, color 0.2s; }
.card-link:hover { gap: 10px; color: var(--blue); }

/* Photo card */
.photo-card { border-radius: var(--r); overflow: hidden; border: none; background: none; }
.photo-card img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s var(--ease); }
.photo-card:hover img { transform: scale(1.06); }
.photo-card__body { padding: 24px; background: var(--white); border: 1px solid var(--gray-200); border-top: none; border-radius: 0 0 var(--r) var(--r); }
.photo-card__body h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.photo-card__body p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* Licensing card */
.lic-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r); padding: 32px; position: relative; overflow: hidden; transition: all 0.28s var(--ease); }
.lic-card__num { font-size: 64px; font-weight: 900; color: rgba(37,99,235,0.07); line-height: 1; margin-bottom: -12px; }
.lic-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.lic-card p { font-size: 14px; color: var(--gray-500); line-height: 1.75; }
.lic-card::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, var(--blue), var(--sky)); transform: scaleY(0); transform-origin: top; transition: transform 0.4s var(--ease); }
.lic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.lic-card:hover::after { transform: scaleY(1); }
.lic-card--highlight { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); border-color: transparent; }
.lic-card--highlight .lic-card__num { color: rgba(255,255,255,0.05); }
.lic-card--highlight h3 { color: var(--white); }
.lic-card--highlight p { color: rgba(255,255,255,0.6); }

/* ============================================
   PHOTO STRIP (full-width cinematic banner)
   ============================================ */
.photo-strip { position: relative; overflow: hidden; }
.photo-strip img { width: 100%; display: block; object-fit: cover; transition: transform 0.6s var(--ease); }
.photo-strip:hover img { transform: scale(1.025); }
.photo-strip__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 80px; }
.photo-strip__overlay--right { align-items: flex-end; padding: 0 80px; text-align: right; }
.photo-strip__overlay--center { align-items: center; text-align: center; }
.photo-strip h2 { font-size: clamp(28px,4vw,52px); font-weight: 800; color: var(--white); line-height: 1.1; max-width: 560px; margin-bottom: 16px; }
.photo-strip p { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 440px; margin-bottom: 28px; line-height: 1.75; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, #1d4ed8 100%); padding: 88px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -60%; right: -10%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 65%); border-radius: 50%; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; position: relative; }
.cta-band h2 { font-size: clamp(26px,3.2vw,44px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 500px; }

/* ============================================
   FORM
   ============================================ */
.form-card { background: var(--white); border-radius: var(--r); padding: 48px; box-shadow: var(--shadow-xl); border: 1px solid var(--gray-100); }
.form-card h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-card .sub { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); }
.fg input, .fg select, .fg textarea {
  background: var(--off); border: 1.5px solid var(--gray-200); border-radius: var(--r-sm);
  padding: 12px 16px; font-family: var(--font); font-size: 14px; color: var(--gray-800);
  outline: none; width: 100%; -webkit-appearance: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); background: var(--white); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--gray-400); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy); padding: 72px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.footer__logo-text { font-size: 22px; font-weight: 900; margin-bottom: 14px; }
.footer__logo-text .r { color: var(--white); }
.footer__logo-text .l { color: var(--sky); }
.footer__desc { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.85; max-width: 280px; margin-bottom: 22px; }
.footer__contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer__contact-list a { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: flex-start; gap: 10px; transition: color 0.2s; line-height: 1.5; }
.footer__contact-list a:hover { color: var(--white); }
.footer__contact-list a span { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.footer__socials { display: flex; gap: 8px; }
.footer__socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.5); transition: all 0.22s; }
.footer__socials a:hover { background: var(--blue-mid); border-color: var(--blue-mid); color: var(--white); }
.footer__col h5 { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 18px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__col a { font-size: 13px; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; }
.footer__copy, .footer__addr { font-size: 11px; color: rgba(255,255,255,0.22); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero { padding: 160px 0 90px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0d2a54 100%); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 65%); border-radius: 50%; pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(96,165,250,0.08), transparent 65%); border-radius: 50%; pointer-events: none; }
.page-hero h1 { font-size: clamp(36px,5vw,64px); font-weight: 800; color: var(--white); margin-bottom: 18px; position: relative; letter-spacing: -0.02em; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.68); max-width: 580px; margin: 0 auto; line-height: 1.78; position: relative; }

/* ============================================
   THANK YOU PAGE
   ============================================ */
.ty-page { min-height: 100vh; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; gap: 0; }
.ty-check { width: 88px; height: 88px; background: linear-gradient(135deg, var(--blue), var(--sky)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 38px; margin: 0 auto 32px; box-shadow: 0 0 60px rgba(37,99,235,0.45); animation: pop 0.55s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes pop { 0%{transform:scale(0);opacity:0} 100%{transform:scale(1);opacity:1} }
.ty-page h1 { font-size: clamp(32px,5vw,54px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.ty-page h1 span { color: var(--sky); }
.ty-page p { font-size: 17px; color: rgba(255,255,255,0.62); max-width: 440px; line-height: 1.78; margin-bottom: 10px; }
.ty-box { margin: 32px auto; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r); padding: 28px 36px; max-width: 460px; }
.ty-box strong { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sky); margin-bottom: 10px; }
.ty-box p { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; }
.ty-cd { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: 24px; }
.ty-cd span { color: var(--sky); font-weight: 700; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--flip .split__img, .split--flip .split__text { order: unset; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .photo-strip__overlay { padding: 0 48px; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .nav__bar { padding: 16px 24px; }
  .cards-grid-3 { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 32px 20px; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .form-card { padding: 32px 24px; }
  .wrap { padding: 0 24px; }
  .wrap--narrow { padding: 0 24px; }
}
@media (max-width: 600px) {
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .photo-strip__overlay { padding: 0 28px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}
