/* ==========================================================================
   SkyMarketing — design tokens & base
   ========================================================================== */
:root {
  --bg: #0e0c0a;
  --bg-soft: #141110;
  --surface: #1a1613;
  --surface-2: #211c18;
  --border: #2e2823;
  --border-soft: #24201c;

  --gold: #d9a441;
  --gold-light: #e8be6c;
  --gold-dim: #a9822f;

  --red: #e2542e;
  --red-dark: #c94a33;

  --text: #f5f3f0;
  --text-dim: #a69e96;
  --text-mute: #6e665f;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1200px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* Typography */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 16px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.placeholder {
  color: var(--gold-dim);
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1408;
  box-shadow: 0 8px 24px -8px rgba(217,164,65,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -8px rgba(217,164,65,.7); }
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }

.btn-sm { padding: 12px 22px; font-size: 0.9rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14,12,10,0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
  padding: 12px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--red));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #150f08;
  font-weight: 900;
}
.logo span.accent { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: color .25s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--text); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(14,12,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { font-size: 1.6rem; font-weight: 700; }
.mobile-nav a.active { color: var(--gold-light); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(226,84,46,0.18), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow.two {
  top: auto; bottom: -30%; left: -15%; right: auto;
  background: radial-gradient(circle, rgba(217,164,65,0.14), transparent 65%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 900px; }
.hero h1 { margin-bottom: 28px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: inline-block; }
.hero-lead {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-scroll-hint {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-mute); font-size: 0.85rem; font-weight: 600;
}
.hero-scroll-hint .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .4; transform: scale(1.4);} }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border-soft);
  padding-top: 36px;
}
.hero-stats .stat-num {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--gold-light);
}
.hero-stats .stat-label { font-size: 0.85rem; color: var(--text-mute); margin-top: 4px; }

/* ==========================================================================
   Reveal / scroll animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; }

/* ==========================================================================
   Sections generic
   ========================================================================== */
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.section-alt { background: var(--bg-soft); }
.section-border-top { border-top: 1px solid var(--border-soft); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(217,164,65,0.10), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dim);
  background: var(--surface-2);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217,164,65,.18), rgba(226,84,46,.14));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  color: var(--gold-light);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-dim); font-size: 0.96rem; margin-bottom: 18px; }
.service-card .link-arrow {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .3s var(--ease);
}
.service-card .link-arrow:hover { gap: 12px; }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.why-item:hover { border-color: var(--gold-dim); background: rgba(217,164,65,0.04); }
.why-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  min-width: 44px;
}
.why-item h4 { margin-bottom: 8px; font-size: 1.1rem; }
.why-item p { color: var(--text-dim); font-size: 0.94rem; }

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.case-card:hover { transform: translateY(-8px); border-color: var(--gold-dim); }
.case-media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-soft));
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute);
  font-size: 0.85rem;
  position: relative;
}
.case-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(14,12,10,0.7);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.case-media-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute);
  opacity: 0.6;
}
.case-media-icon svg { width: 24px; height: 24px; }
.case-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.case-body h3 { margin-bottom: 10px; }
.case-body p { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }
.case-metrics { display: flex; gap: 20px; margin-bottom: 18px; }
.case-metrics div { font-size: 1.2rem; font-weight: 800; color: var(--gold-light); }
.case-metrics span { display: block; font-size: 0.75rem; color: var(--text-mute); font-weight: 500; margin-top: 2px; }

.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .3s var(--ease);
}
.filter-btn:hover { border-color: var(--gold-dim); color: var(--text); }
.filter-btn.active { background: var(--gold); color: #1a1408; border-color: var(--gold); }

/* Testimonials */
.testimonial-track { overflow: hidden; }
.testimonial-slider {
  display: flex;
  gap: 24px;
  transition: transform .6s var(--ease);
}
.testimonial-card {
  min-width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
@media (min-width: 800px) {
  .testimonial-card { min-width: calc(50% - 12px); }
}
.testimonial-quote { font-size: 1.15rem; color: var(--text); margin-bottom: 28px; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #1a1408;
}
.author-name { font-weight: 700; }
.author-role { font-size: 0.85rem; color: var(--text-mute); }
.slider-nav { display: flex; gap: 12px; margin-top: 36px; }
.slider-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold-light); }

/* Forms */
.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--text-dim); }
.field input, .field select, .field textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.98rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217,164,65,0.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--text-mute); }
.form-success {
  display: none;
  background: rgba(217,164,65,0.1);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-split h2 { margin-bottom: 20px; }
.cta-split p { color: var(--text-dim); margin-bottom: 32px; font-size: 1.05rem; }
.cta-contact-list { display: grid; gap: 14px; margin-top: 32px; }
.cta-contact-list a, .cta-contact-list div {
  display: flex; align-items: center; gap: 14px;
  font-weight: 600;
}
.cta-contact-list .icn {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 20px; }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 2.4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-dim);
  display: block;
  margin-bottom: 16px;
}
.process-step h4 { margin-bottom: 10px; font-size: 1.05rem; }
.process-step p { color: var(--text-dim); font-size: 0.9rem; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px; left: 100%;
  width: 20px; height: 1px;
  background: var(--border);
  display: none;
}
@media (min-width: 1000px) {
  .process-step:not(:last-child)::after { display: block; }
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.package-card:hover { transform: translateY(-6px); border-color: var(--gold-dim); }
.package-card.featured {
  border-color: var(--gold-dim);
  background: linear-gradient(180deg, rgba(217,164,65,0.07), var(--surface) 40%);
}
.package-card h3 { margin-bottom: 4px; font-size: 1.5rem; }
.package-card .package-sub { color: var(--text-mute); font-size: 0.9rem; margin-bottom: 26px; }
.package-card .check-list { margin-bottom: 26px; flex: 1; }
.package-includes {
  font-size: 0.85rem;
  color: var(--text-mute);
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--surface-2), var(--bg-soft));
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute);
  font-size: 0.85rem;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.team-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card span { font-size: 0.85rem; color: var(--gold-light); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 72px 0 32px;
  background: var(--bg-soft);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand p { color: var(--text-dim); margin: 18px 0 24px; max-width: 320px; font-size: 0.95rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }
.footer-col h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--text-dim); font-size: 0.95rem; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-mute);
  font-size: 0.85rem;
}

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  box-shadow: 0 12px 28px -6px rgba(217,164,65,.5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  color: #1a1408;
}
.float-whatsapp:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 34px -6px rgba(217,164,65,.65); }
.float-whatsapp svg { width: 28px; height: 28px; }

/* Page hero (inner pages) */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { }
.page-hero p.lead { color: var(--text-dim); font-size: 1.1rem; max-width: 640px; margin-top: 20px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--text-mute); font-size: 0.85rem; margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--gold-light); }

/* Service detail block */
.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
  padding: 80px 0;
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface-2), var(--bg-soft));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute);
  font-size: 0.9rem;
  overflow: hidden;
  position: relative;
}
.service-detail-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(217,164,65,0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.service-illustration {
  width: 62%;
  max-width: 260px;
  height: auto;
  position: relative;
  z-index: 1;
}
.service-detail-content .tag {
  display: inline-block;
  background: rgba(217,164,65,0.12);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.service-detail-content h2 { margin-bottom: 18px; }
.service-detail-content > p { color: var(--text-dim); margin-bottom: 24px; font-size: 1.02rem; }
.check-list { display: grid; gap: 14px; margin-bottom: 28px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 0.96rem; }
.check-list li .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(217,164,65,0.16);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}
.for-whom { color: var(--text-mute); font-size: 0.9rem; }
.for-whom strong { color: var(--text-dim); }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(1) invert(0.92) contrast(0.9);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--gold-dim); }
.blog-media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-soft));
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute); font-size: 0.85rem;
}
.blog-body { padding: 24px; }
.blog-meta { font-size: 0.78rem; color: var(--text-mute); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.blog-body p { color: var(--text-dim); font-size: 0.9rem; }

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links, .header-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 80px 0; }
  .services-grid, .cases-grid, .team-grid, .blog-grid, .packages-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .lead-form { padding: 28px; }
  .hero { padding: 120px 0 60px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .float-whatsapp { right: 16px; bottom: 16px; width: 56px; height: 56px; }
}
