/* Omnichannel inbox marketing pages — shared layout */
:root {
  --primary: #69448E;
  --primary-deep: #4a2f68;
  --accent: #f8bc3b;
  --ink: #14121a;
  --muted: #5c5668;
  --surface: #f6f4f8;
  --white: #fff;
  --line: rgba(20, 18, 26, 0.08);
  --shadow: 0 12px 40px rgba(20, 18, 26, 0.12);
  --radius: 14px;
  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); }
.container { width: min(1120px, calc(100% - 2.5rem)); margin: 0 auto; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 1rem;
}
.logo img { width: 38px; height: 38px; }
.nav-desktop { display: flex; gap: 1.75rem; }
.nav-desktop a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.92rem;
}
.nav-desktop a:hover { color: var(--primary); }
.header-cta { display: flex; gap: 0.65rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.15rem; border-radius: 10px;
  font-weight: 700; font-size: 0.92rem; text-decoration: none;
  border: 2px solid transparent; transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--primary); color: var(--white); }
.btn-solid:hover { background: var(--primary-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: var(--white); }
.btn-light { background: var(--white); color: var(--primary-deep); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* Quick nav */
.quick-nav {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: rgba(246, 244, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.quick-nav-inner {
  display: flex; gap: 0.45rem; justify-content: center;
  padding: 0.55rem 1rem; width: max-content; min-width: 100%; margin: 0 auto;
}
.quick-nav a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  color: var(--ink); text-decoration: none; font-size: 0.78rem; font-weight: 600;
  white-space: nowrap;
}
.quick-nav a:hover { border-color: var(--primary); color: var(--primary); }

/* Full-bleed hero — image never stretched */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex; align-items: flex-end;
  padding: 150px 0 72px;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: heroKen 18s ease-out forwards;
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(20, 12, 28, 0.88) 0%, rgba(20, 12, 28, 0.72) 42%, rgba(74, 47, 104, 0.45) 72%, rgba(74, 47, 104, 0.28) 100%),
    linear-gradient(180deg, rgba(20, 12, 28, 0.35) 0%, rgba(20, 12, 28, 0.55) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 640px;
  animation: fadeUp .8s ease-out both;
}
.brand-mark {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}
.brand-mark::before {
  content: ""; width: 28px; height: 2px; background: var(--accent);
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.hero .lead {
  font-size: 1.08rem; opacity: 0.94;
  max-width: 34rem; margin-bottom: 1.5rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
  margin-bottom: 1.75rem; font-size: 0.9rem; font-weight: 600;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.4rem; opacity: 0.95; }
.hero-meta i { color: var(--accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

@keyframes heroKen {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 88px 0; }
.section.alt { background: var(--surface); }
.section-head { max-width: 640px; margin: 0 auto 2.75rem; text-align: center; }
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.65rem;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem; align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-copy { order: 2; }
.split h2 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.9rem;
}
.split p { color: var(--muted); margin-bottom: 0.9rem; }
.split a { font-weight: 700; }

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #1a1522;
  aspect-ratio: 3 / 2;
}
.media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.checklist { list-style: none; margin-top: 1rem; }
.checklist li {
  display: flex; gap: 0.7rem; margin-bottom: 0.75rem;
  color: var(--ink); font-weight: 500;
}
.checklist i { color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}
.feature-card {
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.section.alt .feature-card { box-shadow: 0 4px 18px rgba(20, 18, 26, 0.04); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(105, 68, 142, 0.12); color: var(--primary);
  margin-bottom: 0.85rem; font-size: 1.1rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; font-weight: 750; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

.geo-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 2rem;
}
.geo-links a {
  padding: 0.55rem 0.95rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.88rem;
}
.geo-links a:hover { border-color: var(--primary); color: var(--primary); }

.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.3rem;
  margin-bottom: 0.75rem;
}
.faq-item h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.faq-item p { color: var(--muted); }

.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 55%, #7d5aa8 100%);
  color: var(--white); text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800; margin-bottom: 0.65rem;
}
.cta-band p { opacity: 0.92; margin-bottom: 1.5rem; }
.cta-band .hero-actions { justify-content: center; }

.site-footer {
  background: var(--ink); color: rgba(255,255,255,.88); padding: 56px 0 22px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.75rem; margin-bottom: 2rem;
}
.site-footer h3 { color: var(--accent); margin-bottom: 0.85rem; font-size: 0.95rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem; text-align: center; opacity: 0.8; font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.45rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-copy { order: 0; }
  .hero { min-height: auto; padding: 132px 0 56px; align-items: flex-end; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(20, 12, 28, 0.55) 0%, rgba(20, 12, 28, 0.82) 55%, rgba(20, 12, 28, 0.92) 100%);
  }
}
@media (max-width: 640px) {
  .quick-nav { top: 60px; }
  .header-row { min-height: 60px; }
  .header-cta .btn-ghost { display: none; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; transform: none; }
  .hero-inner { animation: none; }
}
