:root {
  --bg:        #ffffff;
  --surface:   #f7f7f9;
  --border:    rgba(0,82,204,0.25);
  --border-m:  rgba(0,82,204,0.35);
  --text:      #1a1a1a;
  --muted:     #666666;
  --gold:      #0052cc;
  --gold-lt:   #0066ff;
  --gold-dim:  rgba(0,82,204,0.08);
  --gold-glow: rgba(0,82,204,0.15);
  --r:         20px;
  --r-lg:      28px;
  --max:       1140px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content:"";
  position:fixed; inset:0; z-index:0; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.3;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: min(92%, var(--max));
  margin: 0 auto;
  position: relative;
}

/* ─── UTILITY ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 12px;
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 999px;
  background: var(--gold-dim);
  margin-bottom: 20px;
}

.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.5; transform:scale(0.7); }
}

/* ─── HEADER ─── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center;
  gap: 32px; list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.nav-links a:hover { color: #ffffff; }

.nav-cta {
  display: inline-flex; align-items: center;
  gap: 8px;
  font-size: 0.88rem; font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #ffffff;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none; border: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(17,17,17,0.99);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 36px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute; top: 28px; right: 24px;
  font-size: 1.5rem; cursor: pointer;
  background: none; border: none; color: rgba(255,255,255,0.6);
}

/* ─── HERO ─── */
.hero {
  padding: 80px 0 72px;
  position: relative;
}

/* big decorative number */
.hero-bg-text {
  position: absolute;
  top: -20px; right: -60px;
  font-size: clamp(180px, 25vw, 340px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(0,82,204,0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
  position: relative; z-index: 1;
}

.hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 52px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--border-m);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(0,82,204,0.3);
  color: var(--gold);
  transform: translateY(-2px);
}

/* STATS ROW */
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.stat {
  background: var(--surface);
  padding: 22px 20px;
  text-align: center;
  transition: background 0.2s;
}

.stat:hover { background: #f0f0f2; }

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* HERO RIGHT — CARD */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky; top: 96px;
}

.hero-card-img {
  width: 100%; aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, rgba(0,82,204,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #f5f5f7, #ffffff);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #ccc; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  border-radius: 28px;
}

.hero-card-img::before {
  content:"";
  position: absolute; inset:0;
  background:
    repeating-linear-gradient(-45deg,
      rgba(0,82,204,0.015), rgba(0,82,204,0.015) 1px,
      transparent 1px, transparent 28px);
}

.hero-card-img-label {
  position: relative; z-index:1;
  text-align: center; padding: 20px;
}

.hero-card-body { padding: 22px; }

.hero-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-card-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.pill-row {
  display: flex; flex-wrap: wrap; gap: 7px;
}

.pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-m);
  color: var(--muted);
}

/* ─── DIVIDER ─── */
.divider {
  display: none;
}

/* ─── SECTION SHARED ─── */
section { padding: 28px 0; position: relative; }

.section-head { margin-bottom: 56px; }

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ─── HOW WE WORK ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.process-item {
  background: var(--surface);
  padding: 30px 24px 28px;
  transition: background 0.2s;
  position: relative;
}

.process-item:hover { background: #f0f0f2; }

.process-n {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.process-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.process-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content:"";
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-dim), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover { border-color: rgba(0,82,204,0.2); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(232,160,32,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative; z-index:1;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative; z-index:1;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.news-image-slot {
  min-height: 340px;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(180deg, #f6f6f8, #ffffff);
  border: 1px solid rgba(0,82,204,0.18);
  display: grid;
  place-items: center;
  padding: 24px;
}

.news-image-slot .image-placeholder {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.6;
}

.news-content {
  padding: 34px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid rgba(0,82,204,0.18);
}

.news-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.geo-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
}

.geo-card:last-child { border-right: none; }

.geo-flag {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1;
}

.geo-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.geo-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.geo-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.geo-tag {
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--border-m);
  color: var(--muted);
}

/* ─── DEAL TYPES ─── */
.deal-strip {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 40px;
}

.deal-item {
  background: var(--surface);
  padding: 22px 18px;
  text-align: center;
  transition: background 0.2s;
}

.deal-item:hover { background: #f0f0f2; }

.deal-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.deal-item span {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── FIT ─── */
.fit-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fit-block {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.fit-block-head {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}

.fit-block.yes .fit-block-head { background: rgba(30,180,80,0.05); }
.fit-block.no .fit-block-head  { background: rgba(200,50,50,0.05); }

.fit-block-head h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fit-block.yes .fit-block-head h3 { color: #4ade80; }
.fit-block.no  .fit-block-head h3 { color: #f87171; }

.fit-dot {
  width: 8px; height: 8px; border-radius: 50%;
}

.fit-block.yes .fit-dot { background: #4ade80; }
.fit-block.no  .fit-dot { background: #f87171; }

.fit-list {
  padding: 20px 24px;
  display: grid; gap: 14px;
}

.fit-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.fit-icon {
  font-size: 0.85rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ─── GEOS & VERTICALS ─── */
.gv-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.gv-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.gv-block-head {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,82,204,0.02);
}

.gv-icon { font-size: 1.3rem; }

.gv-block-head h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.gv-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.gv-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 0.91rem;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.gv-item:nth-child(even) { border-right: none; }
.gv-item:hover { background: rgba(0,82,204,0.03); color: var(--text); }

.gv-flag {
  font-size: 1.05rem;
  width: 22px; text-align: center;
  flex-shrink: 0;
}

.gv-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.gv-more {
  grid-column: span 2;
  color: #bbb;
  font-style: italic;
  font-size: 0.84rem;
  border-right: none !important;
}

@media (max-width: 760px) {
  .gv-grid { grid-template-columns: 1fr; }
}

/* ─── BRANDS ─── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 0;
}

.brand-slot {
  background: var(--surface);
  min-height: 90px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  color: #ddd;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  padding: 12px;
  text-align: center;
}

.brand-slot:hover { background: #f0f0f2; }

/* ─── CTA ─── */
.cta-section { padding: 96px 0; }

.cta-box {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.cta-box::before {
  content:"";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  pointer-events:none;
}

.cta-box::after {
  content:"";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.08), transparent 65%);
  pointer-events:none;
}

.cta-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-inner-contact {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: start;
}

.contact-left,
.contact-right {
  min-width: 0;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info {
  display: grid;
  gap: 12px;
}

.contact-info-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(0,82,204,0.04);
  border: 1px solid rgba(0,82,204,0.1);
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}

.contact-info-item:hover {
  background: rgba(0,82,204,0.08);
  border-color: rgba(0,82,204,0.15);
}

.contact-info-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0,82,204,0.1);
  color: var(--gold);
  font-size: 0.9rem;
}

.cta-box h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.cta-box h2 em {
  font-style: normal;
  color: var(--gold);
}

.cta-box p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

.cta-buttons {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}

.contact-right {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  background: rgba(0,82,204,0.02);
  border: 1px solid rgba(0,82,204,0.1);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-form .cf-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form .cf-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid var(--border-m);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(0,82,204,0.1);
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-form .cf-submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.contact-form .cf-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.contact-form .cf-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.cf-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.cf-success-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.cf-success h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.cf-success p {
  color: var(--muted);
}

@media (max-width: 860px) {
  .cta-inner-contact { grid-template-columns: 1fr; gap: 36px; }
  .contact-form .cf-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

@media (max-width: 520px) {
  .cta-box { padding: 32px 20px; }
  .contact-form { padding: 20px; }
}

.contact-form .cf-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.contact-form .cf-success-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-form .cf-success h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contact-form .cf-success p {
  color: var(--muted);
}

@media (max-width: 520px) {
  .contact-form .cf-row {
    grid-template-columns: 1fr;
  }
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-logo span { color: var(--gold); }

.footer-mid {
  font-size: 0.82rem;
  color: #888;
  text-align: center;
}

.footer-links {
  display: flex; gap: 20px;
}

.footer-links a {
  font-size: 0.84rem;
  color: #888;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1060px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { position: static; }
  .hero-bg-text { display: none; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .geo-grid { grid-template-columns: 1fr; }
  .geo-card { border-right: none; border-bottom: 1px solid var(--border); }
  .geo-card:last-child { border-bottom: none; }
  .deal-strip { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 760px) {
  section { padding: 40px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .fit-wrap { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3,1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-inner-contact { grid-template-columns: 1fr; gap: 36px; }
  .cta-buttons { align-items: flex-start; }
  .contact-form { max-width: none; }
  .cta-box { padding: 36px 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .deal-strip { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .deal-strip { grid-template-columns: 1fr 1fr; }
}