/* =========================================================
   United Answering Service - Global Stylesheet
   Brand: Navy #0B2A5B, Red #C8102E, White
   ========================================================= */

:root {
  /* Brand colors from logo */
  --navy-900: #071A3D;
  --navy-800: #0B2A5B;
  --navy-700: #103C7A;
  --navy-600: #1B4EA0;
  --navy-500: #2A63BF;
  --red-700: #A00D24;
  --red-600: #C8102E;
  --red-500: #E63946;
  --gold-500: #E6B800;

  --white: #ffffff;
  --gray-50: #F7F9FC;
  --gray-100: #EEF2F7;
  --gray-200: #DDE4EE;
  --gray-300: #C3CDDB;
  --gray-500: #7A8AA3;
  --gray-700: #3E4E68;
  --gray-900: #16233B;

  --shadow-sm: 0 1px 2px rgba(11, 42, 91, 0.06), 0 1px 3px rgba(11, 42, 91, 0.04);
  --shadow-md: 0 6px 20px rgba(11, 42, 91, 0.08), 0 2px 6px rgba(11, 42, 91, 0.05);
  --shadow-lg: 0 20px 50px rgba(11, 42, 91, 0.14), 0 6px 12px rgba(11, 42, 91, 0.06);
  --shadow-xl: 0 30px 80px rgba(11, 42, 91, 0.18);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  --container: 1200px;
  --gutter: clamp(1rem, 3vw, 2rem);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;

  --ease-out: cubic-bezier(0.2, 0.7, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-700); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--red-600); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1rem; color: var(--gray-700); }

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

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.section-alt { background: var(--gray-50); }
.section-navy {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
}
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.85); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
  padding: .4rem .9rem;
  background: rgba(200, 16, 46, 0.08);
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}
.section-navy .eyebrow {
  background: rgba(255,255,255,0.1);
  color: #ffd4dc;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red-600);
  border-radius: 50%;
}
.section-navy .eyebrow::before { background: var(--red-500); }

.section-title {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-title.left { text-align: left; margin-left: 0; }
.section-title p { font-size: 1.08rem; color: var(--gray-700); }
.section-navy .section-title p { color: rgba(255,255,255,0.8); }

/* =============== Buttons =============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease-out), background .25s, color .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.28);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200, 16, 46, 0.38);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--navy-700);
  color: var(--navy-800);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11,42,91,0.3);
}

.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.65rem 1.1rem; font-size: 0.88rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: .8rem; }

/* =============== Announcement bar =============== */
.announcement-bar {
  background: var(--navy-900);
  color: #fff;
  font-size: .85rem;
  padding: .55rem var(--gutter);
  text-align: center;
}
.announcement-bar a { color: var(--gold-500); font-weight: 600; }
.announcement-bar a:hover { color: #ffd54a; }

/* =============== Header / Nav =============== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow .25s var(--ease-out);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-900);
  line-height: 1;
}
.brand img { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-text .name { font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-text .tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; color: var(--red-600); text-transform: uppercase; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--gray-700);
  position: relative;
  padding: .3rem 0;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--navy-900); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  border-radius: 2px;
  background: var(--red-600);
}

/* Mobile-only CTA injected by JS — hide on desktop */
.nav-menu .mobile-cta { display: none; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.98rem;
}
.nav-phone svg { color: var(--red-600); width: 20px; height: 20px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  color: var(--navy-900);
}
.menu-toggle svg { width: 28px; height: 28px; }

@media (max-width: 992px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--gutter) 1.5rem;
    gap: 0;
    box-shadow: 0 20px 40px rgba(11, 42, 91, 0.18);
    border-top: 1px solid var(--gray-100);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s var(--ease-out), opacity .25s ease, visibility 0s linear .3s;
    max-height: calc(100vh - var(--header-h) - 40px);
    overflow-y: auto;
    z-index: 90;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform .3s var(--ease-out), opacity .25s ease, visibility 0s;
  }
  .nav-menu li { border-bottom: 1px solid var(--gray-100); }
  .nav-menu li:last-child { border-bottom: 0; }
  .nav-menu a {
    display: block;
    padding: .95rem .25rem;
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 500;
  }
  .nav-menu a.active { color: var(--red-600); }
  .nav-menu a.active::after { display: none; }
  .nav-menu .mobile-cta {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gray-100);
    border-bottom: 0 !important;
  }
  .nav-menu .mobile-cta a {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    color: #fff !important;
    text-align: center;
    padding: .95rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.25);
  }
  .menu-toggle { display: inline-flex; }
  .menu-toggle .icon-close { display: none; }
  .menu-toggle[aria-expanded="true"] .icon-open { display: none; }
  .menu-toggle[aria-expanded="true"] .icon-close { display: inline; }
  .nav-cta .btn { display: none; }
  .nav-phone { display: none; }

  /* Hide WhatsApp FAB while mobile menu is open, to avoid overlap */
  body.menu-open .whatsapp-fab { opacity: 0; pointer-events: none; transform: scale(.4); }

  /* Prevent background scroll while menu is open */
  body.menu-open { overflow: hidden; }
}

/* Small phones — shrink header, hide brand tag line */
@media (max-width: 520px) {
  :root { --header-h: 66px; }
  .brand img { height: 42px; }
  .brand-text .name { font-size: .98rem; }
  .brand-text .tag { display: none; }
  .announcement-bar { font-size: .78rem; padding: .45rem var(--gutter); }
  .hero-floater { display: none; }
  .hero-visual { aspect-ratio: 4/3; }
}

/* =============== Hero =============== */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(1000px 500px at 90% -10%, rgba(200, 16, 46, 0.12), transparent 55%),
    radial-gradient(900px 500px at -10% 40%, rgba(11, 42, 91, 0.08), transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, #f2f5fa 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,42,91,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,42,91,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, black 45%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black 45%, transparent 75%);
  opacity: .8;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  line-height: 1.06;
  margin-bottom: 1.2rem;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--red-600), var(--red-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin: 2.2rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--gray-200);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--gray-700);
  font-weight: 500;
}
.hero-badge svg { color: var(--red-600); width: 18px; height: 18px; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 5/4;
  background: #071A3D;
}
.hero-visual img,
.hero-visual svg {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.hero-floater {
  position: absolute;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  z-index: 2;
}
.hero-floater.f1 { bottom: -18px; left: -14px; }
.hero-floater.f2 { top: 20px; right: -18px; }
.hero-floater .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(200, 16, 46, 0.1);
  color: var(--red-600);
}
.hero-floater .icon.blue { background: rgba(11,42,91,0.08); color: var(--navy-800); }
.hero-floater .title { font-weight: 700; color: var(--navy-900); font-size: .95rem; line-height: 1.2; }
.hero-floater .sub { font-size: .78rem; color: var(--gray-500); }

/* =============== Trust bar =============== */
.trust-bar {
  padding: 1.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 700px) { .trust-inner { grid-template-columns: 1fr; text-align: center; } }
.trust-inner .label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: flex-end;
}
@media (max-width: 700px) { .trust-list { justify-content: center; } }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--navy-800);
  font-size: .95rem;
}
.trust-item svg { color: var(--red-600); width: 20px; height: 20px; }

/* =============== Feature grid / Services =============== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}
.card .icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(11,42,91,0.09), rgba(11,42,91,0.03));
  color: var(--navy-800);
  margin-bottom: 1.2rem;
}
.card .icon svg { width: 28px; height: 28px; }
.card.accent .icon {
  background: linear-gradient(135deg, rgba(200,16,46,0.12), rgba(200,16,46,0.03));
  color: var(--red-600);
}
.card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.card p { margin: 0; font-size: .96rem; }
.card .link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.1rem;
  font-weight: 600;
  color: var(--red-600);
  font-size: .92rem;
}
.card .link:hover { gap: .55rem; color: var(--red-700); }

.section-navy .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}
.section-navy .card h3 { color: #fff; }
.section-navy .card p { color: rgba(255,255,255,0.75); }
.section-navy .card .icon {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.section-navy .card.accent .icon { background: rgba(200,16,46,0.2); color: var(--red-500); }

/* =============== Split feature =============== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
}

.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #071A3D;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.split-visual img,
.split-visual svg { width: 100%; height: 100%; object-fit: cover; display: block; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.check-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--gray-700);
}
.check-list li strong { color: var(--navy-900); }
.check-list .cli-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--red-600), var(--red-500));
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  margin-top: 2px;
}
.check-list .cli-icon svg { width: 14px; height: 14px; }
.section-navy .check-list li { color: rgba(255,255,255,0.85); }
.section-navy .check-list li strong { color: #fff; }

/* =============== Stats =============== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 1.5rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .num .plus { color: var(--red-500); }
.stat .label {
  margin-top: .5rem;
  font-size: .88rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* Stats variant on light bg */
.stats-light { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 700px) { .stats-light { grid-template-columns: repeat(2, 1fr); } }
.stats-light .stat {
  background: #fff;
  border: 1px solid var(--gray-100);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.stats-light .stat .num { color: var(--navy-800); }
.stats-light .stat .label { color: var(--gray-700); }

/* =============== Industries =============== */
.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .industries { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .industries { grid-template-columns: repeat(2, 1fr); } }

.industry {
  background: #fff;
  border: 1px solid var(--gray-100);
  padding: 1.6rem 1.2rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.industry:hover {
  transform: translateY(-4px);
  border-color: var(--red-600);
  box-shadow: var(--shadow-md);
}
.industry .icon {
  width: 52px; height: 52px;
  margin: 0 auto .9rem;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
}
.industry .icon svg { width: 26px; height: 26px; }
.industry h4 { margin: 0 0 .3rem; font-size: 1rem; color: var(--navy-900); }
.industry p { margin: 0; font-size: .82rem; color: var(--gray-500); }

/* =============== Process steps =============== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process { grid-template-columns: 1fr; } }

.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem 1.5rem;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .num {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red-600);
  line-height: 1;
  margin-bottom: .8rem;
}
.step .num::before { content: "0" counter(step); }
.step h4 { margin: 0 0 .4rem; font-size: 1.1rem; color: var(--navy-900); }
.step p { margin: 0; font-size: .92rem; color: var(--gray-600); }

/* On dark navy sections: invert the card so white text is readable */
.section-navy .step {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(2px);
}
.section-navy .step h4 { color: #fff; }
.section-navy .step p { color: rgba(255, 255, 255, .78); }

/* =============== Testimonials =============== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px; left: 24px;
  font-size: 5rem;
  color: var(--red-600);
  opacity: .15;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial .stars { display: flex; gap: 2px; margin-bottom: .8rem; color: var(--gold-500); }
.testimonial .stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial p { font-size: 1rem; color: var(--gray-700); font-style: italic; margin-bottom: 1.3rem; }
.testimonial .author { display: flex; align-items: center; gap: .8rem; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--red-600));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
}
.testimonial .name { font-weight: 700; color: var(--navy-900); font-size: .95rem; }
.testimonial .role { font-size: .82rem; color: var(--gray-500); }

/* =============== Pricing =============== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.plan {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.featured {
  border-color: var(--red-600);
  box-shadow: 0 20px 40px rgba(200,16,46,0.15);
  transform: translateY(-6px);
}
.plan.featured .plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: #fff;
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.plan .plan-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: .3rem;
}
.plan .plan-desc { font-size: .88rem; color: var(--gray-500); margin-bottom: 1.4rem; }
.plan .plan-price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--gray-100);
}
.plan .plan-price .amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}
.plan .plan-price .cur { font-size: 1.2rem; font-weight: 700; color: var(--navy-900); align-self: flex-start; margin-top: .5rem; }
.plan .plan-price .per { color: var(--gray-500); font-size: .95rem; }
.plan .plan-features { list-style: none; padding: 0; margin: 0 0 1.6rem; flex: 1; display: flex; flex-direction: column; gap: .7rem; }
.plan .plan-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; color: var(--gray-700); }
.plan .plan-features .yes { color: var(--red-600); flex-shrink: 0; margin-top: 3px; }
.plan .plan-features .no { color: var(--gray-300); flex-shrink: 0; margin-top: 3px; }
.plan .plan-features .no + span { color: var(--gray-500); }
.plan .btn { width: 100%; }

/* =============== FAQ =============== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] { border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.8rem;
  color: var(--red-600);
  transition: transform .3s var(--ease-out);
  line-height: 1;
  font-weight: 300;
}
.faq-item[open] summary::after { content: "\2212"; transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.4rem 1.4rem;
  color: var(--gray-700);
  font-size: .98rem;
}
.faq-answer p:last-child { margin: 0; }

/* =============== CTA banner =============== */
.cta-banner {
  background:
    radial-gradient(600px 300px at 90% 20%, rgba(200,16,46,0.35), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: clamp(3rem, 6vw, 5rem) auto;
  max-width: calc(var(--container) - 2rem);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; max-width: 720px; margin: 0 auto 1rem; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.08rem; max-width: 640px; margin: 0 auto 2rem; }
.cta-banner .btn-group { justify-content: center; }

/* =============== Contact =============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.3rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s;
}
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-item .icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: #fff;
}
.contact-item .icon svg { width: 22px; height: 22px; }
.contact-item .label { font-size: .8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.contact-item .value { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); margin-top: .2rem; }
.contact-item .value a { color: inherit; }
.contact-item .value a:hover { color: var(--red-600); }
.contact-item .sub { font-size: .82rem; color: var(--gray-500); margin-top: .2rem; }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: .4rem;
  font-size: .92rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy-900);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red-600);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--gray-500); margin: .8rem 0 0; }
.form-success {
  display: none;
  padding: 1rem 1.2rem;
  background: #E8F5E9;
  border-left: 4px solid #43A047;
  border-radius: var(--radius-sm);
  color: #1B5E20;
  font-weight: 600;
  margin-bottom: 1rem;
}
.form-success.show { display: block; }

/* =============== Page header =============== */
.page-header {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(700px 400px at 90% -10%, rgba(200,16,46,0.28), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black 40%, transparent 75%);
}
.page-header > .container { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin-bottom: .6rem; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.breadcrumbs {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: .88rem;
  margin-bottom: 1.2rem;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { color: rgba(255,255,255,0.4); }

/* =============== Value pillars =============== */
.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 700px) { .value-list { grid-template-columns: 1fr; } }
.value {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
}
.value:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value .icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  display: grid; place-items: center;
}
.value .icon svg { width: 24px; height: 24px; }
.value h4 { margin: 0 0 .35rem; font-size: 1.05rem; }
.value p { margin: 0; font-size: .92rem; }

/* =============== Footer =============== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
  color: #fff;
}
.footer-brand img { height: 52px; }
.footer-brand .name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.footer-brand .tag { font-size: 0.7rem; letter-spacing: 0.14em; color: var(--red-500); text-transform: uppercase; }
.footer-col p { color: rgba(255,255,255,0.65); font-size: .92rem; }
.footer-col h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: .93rem; }
.footer-col a:hover { color: #fff; }

.footer-contact li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.75);
  font-size: .92rem;
}
.footer-contact svg { color: var(--red-500); width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.85); }

.socials { display: flex; gap: .6rem; margin-top: 1.1rem; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.socials a:hover { background: var(--red-600); transform: translateY(-3px); color: #fff; }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
}
.footer-bottom .legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom .legal a { color: rgba(255,255,255,0.6); }
.footer-bottom .legal a:hover { color: #fff; }

/* =============== Utilities =============== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hide-mob { display: initial; }
@media (max-width: 600px) { .hide-mob { display: none; } }

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* =============== WhatsApp floating button =============== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform .25s var(--ease-out), box-shadow .25s;
  animation: wa-pulse 2.4s ease-out infinite;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55), 0 6px 14px rgba(0, 0, 0, 0.2);
}
.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.whatsapp-fab .wa-tip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--navy-900);
  color: #fff;
  padding: .55rem .9rem;
  border-radius: var(--radius-md);
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: var(--shadow-md);
}
.whatsapp-fab .wa-tip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--navy-900);
}
.whatsapp-fab:hover .wa-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .whatsapp-fab { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
  .whatsapp-fab .wa-tip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { animation: none; }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--red-600);
  color: #fff;
  padding: .8rem 1.2rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { top: 0; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
