/* ============================================================
   CLARICO — Modern Financial Advisory Website
   Design System & Full Stylesheet
   ============================================================ */

/* ---- BillYantra brand colors ---- */
:root {
  --by-primary:  #7C3AED;   /* violet */
  --by-accent:   #06B6D4;   /* cyan */
  --by-gold:     #F59E0B;
  --by-dark:     #0D0A1E;
  --by-mid:      #1A1233;
  --by-glow:     rgba(124, 58, 237, 0.3);
}

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --navy:       #0A1628;
  --navy-mid:   #122040;
  --navy-light: #1A3060;
  --blue:       #2563EB;
  --blue-light: #3B82F6;
  --blue-glow:  rgba(37, 99, 235, 0.25);
  --cyan:       #06B6D4;
  --indigo:     #6366F1;
  --teal:       #10B981;
  --amber:      #F59E0B;
  --pink:       #EC4899;
  --purple:     #8B5CF6;
  --orange:     #F97316;
  --white:      #FFFFFF;
  --off-white:  #F8FAFF;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --gray-900:   #111827;

  /* Semantic */
  --bg:         var(--white);
  --bg-alt:     var(--off-white);
  --text:       var(--gray-900);
  --text-muted: var(--gray-500);
  --border:     var(--gray-200);

  /* Typography */
  --font-head:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   0.75rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  5rem;
  --space-4xl:  7rem;

  /* Border radius */
  --radius-sm:  0.5rem;
  --radius-md:  0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.75rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.18);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast: 150ms var(--ease);
  --trans:      280ms var(--ease);
  --trans-slow: 500ms var(--ease);

  /* Layout */
  --max-w:      1200px;
  --nav-h:      72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Section spacing ---- */
.section {
  padding: var(--space-4xl) 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
h5 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

p { line-height: 1.7; }

.gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: all var(--trans);
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; padding: 1rem; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.btn-ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---- Icons ---- */
.icon-xs { width: 14px; height: 14px; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; flex-shrink: 0; }
.icon-md { width: 24px; height: 24px; flex-shrink: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--trans), box-shadow var(--trans);
}

.nav-wrapper.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--trans-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--trans-fast);
}

.nav-phone:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(37, 99, 235, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Floating shapes */
.floating-shapes { position: absolute; inset: 0; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: floatShape 12s ease-in-out infinite;
}

.shape-1 {
  width: 400px; height: 400px;
  background: var(--blue);
  top: -100px; right: 10%;
  animation-delay: 0s;
}
.shape-2 {
  width: 350px; height: 350px;
  background: var(--indigo);
  bottom: 10%; left: -80px;
  animation-delay: -4s;
}
.shape-3 {
  width: 250px; height: 250px;
  background: var(--cyan);
  top: 40%; right: 5%;
  animation-delay: -8s;
}
.shape-4 {
  width: 200px; height: 200px;
  background: var(--teal);
  top: 20%; left: 20%;
  animation-delay: -6s;
  opacity: 0.15;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 6rem;
  flex: 1;
}

/* Entrance animation */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

/* Hero title */
.hero-title {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 1.5rem;
}

/* Hero subtitle */
.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-subtitle strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Social proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c, var(--blue));
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.hero-proof p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.hero-proof strong { color: rgba(255,255,255,0.85); }

/* ---- Stats Bar ---- */
.stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
}

.stats-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 1.75rem 1rem;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 0.75rem 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--gray-700);
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--amber);
}

.trust-sep {
  color: var(--gray-400);
  font-size: 1.2rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  color: white;
}

.service-card.featured h3 { color: white; }
.service-card.featured p { color: rgba(255,255,255,0.65); }
.service-card.featured .service-features li { color: rgba(255,255,255,0.75); }
.service-card.featured .service-link { color: #60A5FA; }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--ic) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 24px;
  height: 24px;
  color: var(--ic);
}

.service-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.625rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--gray-700);
}

.service-features li i {
  width: 14px;
  height: 14px;
  color: var(--teal);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
  transition: gap var(--trans-fast);
}

.service-link:hover { gap: 0.625rem; }

/* ============================================================
   WHY CLARICO
   ============================================================ */
.why-clarico { background: var(--bg-alt); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.why-left .section-title { margin-bottom: 1.25rem; }

.why-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.why-vision {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.why-vision blockquote {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

.why-cta-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mini-stat { line-height: 1.2; }

.mini-stat-number {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
}

.mini-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Why features */
.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  transition: transform var(--trans);
}

.why-feature:first-child { padding-top: 0; }
.why-feature:last-child { border-bottom: none; padding-bottom: 0; }
.why-feature:hover { transform: translateX(4px); }

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--wc) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon i {
  width: 20px;
  height: 20px;
  color: var(--wc);
}

.why-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.why-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--navy); }

.how-it-works .section-tag { color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-subtitle { color: rgba(255,255,255,0.5); }

.steps-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 320px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all var(--trans);
}

.step-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
}

.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.3);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step-icon i {
  width: 24px;
  height: 24px;
  color: var(--blue-light);
}

.step-card h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.step-card p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.step-arrow {
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.step-arrow i { width: 28px; height: 28px; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { background: var(--bg); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--trans);
  cursor: default;
}

.industry-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--blue);
  transform: translateY(-3px);
}

.industry-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.industry-icon i {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.industry-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.industry-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--bg-alt); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all var(--trans);
  position: relative;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--av, var(--blue));
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.125rem;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--av) 30%, transparent);
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 8px;
  color: var(--blue);
  transition: all var(--trans-fast);
}

.team-linkedin:hover {
  background: var(--blue);
  color: white;
}

.team-linkedin i { width: 16px; height: 16px; }

/* ============================================================
   AWARDS
   ============================================================ */
.awards { background: var(--navy); }

.awards-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.awards-left .section-tag { color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.awards-left .section-title { color: var(--white); }

.awards-desc {
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.awards-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.award-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  transition: all var(--trans);
}

.award-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateX(4px);
}

.award-year {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  min-width: 60px;
}

.award-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.award-icon {
  width: 42px;
  height: 42px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.award-icon i {
  width: 20px;
  height: 20px;
  color: var(--amber);
}

.award-body h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.award-body p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients { background: var(--bg); }

.clients-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.client-logo {
  padding: 0.5rem 0.5rem;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-500);
  transition: all var(--trans);
  cursor: default;
  align-items: center;
}

.client-logo:hover {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.client-logo-more {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
  color: var(--blue);
  border-color: rgba(37, 99, 235, 0.2);
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-alt); }

.faq-container { max-width: 780px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--blue);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--trans-fast);
}

.faq-question:hover { color: var(--blue); }

.faq-question[aria-expanded="true"] { color: var(--blue); }

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--trans);
}

.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 1.5rem 1.375rem;
  animation: slideDown 0.25s var(--ease);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--trans-fast);
}

.faq-answer a:hover { text-decoration-color: var(--blue); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 40%, #7C3AED 100%);
  z-index: 0;
}

.cta-bg::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: 60px 60px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cd-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-icon i {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.cd-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-detail a, .contact-detail p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  display: block;
}

.contact-detail a:hover { color: var(--blue); }

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all var(--trans-fast);
}

.social-link:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}

.social-link i { width: 18px; height: 18px; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast), background var(--trans-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  justify-content: center;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  color: #059669;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-success i { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-light .logo-name { color: var(--white); }
.logo-light .logo-sub { color: rgba(255,255,255,0.4); }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--trans-fast);
}

.footer-social a:hover {
  background: var(--blue);
  color: white;
}

.footer-social a i { width: 16px; height: 16px; }

.footer-links-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-links-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--trans-fast);
}

.footer-links-col a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.875rem; }

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}

.footer-icon {
  width: 15px;
  height: 15px;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.5);
  transition: color var(--trans-fast);
}

.footer-contact-list a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* Footer SEO text (keyword links) */
.footer-seo {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-seo a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  transition: color var(--trans-fast);
}

.footer-seo a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  transition: all var(--trans);
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
}

.back-to-top:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--blue-light); transform: translateY(-3px); }
.back-to-top i { width: 20px; height: 20px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-scroll-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-scroll-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .awards-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .awards-left .section-title { text-align: center; }
  .awards-left .section-tag { display: block; margin-left: auto; margin-right: auto; width: fit-content; }
  .awards-desc { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .step-card { max-width: 100%; width: 100%; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root { --space-4xl: 4rem; --space-3xl: 3rem; }

  .nav-links, .nav-cta { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }

  .nav-links.open a {
    display: block;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }

  .nav-cta.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--nav-h) + 280px);
    left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 1.5rem 1.5rem;
    z-index: 999;
  }

  .hamburger { display: flex; }

  .hero-content { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 4rem; }

  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }

  .trust-strip .container { flex-direction: column; gap: 1rem; text-align: center; }
  .trust-logos { gap: 0.75rem; }
  .trust-sep { display: none; }

  .services-grid { grid-template-columns: 1fr !important;}
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .why-cta-block { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .form-row { grid-template-columns: 1fr; }

  .contact-info .section-title { text-align: center; }
  .contact-info .section-tag { display: block; margin: 0 auto 1rem; width: fit-content; }
  .contact-details { margin: 0 auto 2rem; max-width: 340px; }
  .social-links { justify-content: center; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-seo { justify-content: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; align-items: center; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .clients-grid { flex-direction: column; align-items: stretch; }
  .client-logo { text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-logos { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CLARICO LOGO (image)
   ============================================================ */
.clarico-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  /* White background pill so the coloured logo is always legible on dark nav */
  background: white;
  border-radius: 8px;
  padding: 4px 8px;
}

/* ---- Nav new badge ---- */
.nav-link-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.nav-new-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--by-primary), var(--by-accent));
  color: white;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  line-height: 1.4;
  vertical-align: middle;
}

/* ============================================================
   PRESS & MEDIA SECTION
   ============================================================ */
.press { background: var(--bg); }

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.press-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.press-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--trans);
  text-decoration: none;
  color: inherit;
}

.press-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37,99,235,0.1);
  transform: translateY(-4px);
}

.press-card-blog,
.press-card-static { cursor: default; text-decoration: none; }
.press-card-blog:hover,
.press-card-static:hover { transform: none; border-color: var(--border); box-shadow: none; }

.press-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-top: auto;
}

.press-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.press-pub {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.press-year {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--gray-100);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.press-title-text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.press-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.press-read {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--trans-fast);
}

.press-read:hover { gap: 0.6rem; }

/* Directory strip */
.press-directories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.press-dir-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.press-dir-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.press-dir-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all var(--trans-fast);
}

.press-dir-links a:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.press-dir-links span { color: var(--gray-300); }

@media (max-width: 640px) {
  .press-grid,
  .press-grid-2x2 { grid-template-columns: 1fr; }
}

/* ============================================================
   BILLYANTRA SECTION
   ============================================================ */
.billyantra {
  position: relative;
  background: var(--by-dark);
  overflow: hidden;
}

.by-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(124, 58, 237, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 60%, rgba(6, 182, 212, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.by-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Header */
.by-header { position: relative; z-index: 1; }

.by-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.by-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #A78BFA;
  animation: pulse 2s ease infinite;
  display: inline-block;
  flex-shrink: 0;
}

/* BillYantra brand name */
.by-brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.by-logo-text {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #A78BFA 0%, #60A5FA 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.by-product-logo {
  max-width: 360px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.by-by {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

.by-title {
  color: var(--white) !important;
  margin-bottom: 1rem;
}

.by-subtitle {
  color: rgba(255,255,255,0.55) !important;
  max-width: 620px;
  margin: 0 auto;
}

.by-subtitle strong { color: rgba(255,255,255,0.85); }

/* Main grid */
.by-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
  margin-top: 3.5rem;
}

/* Feature list */
.by-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.by-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
  transition: transform var(--trans);
}

.by-feature:first-child { padding-top: 0; }
.by-feature:last-child { border-bottom: none; padding-bottom: 0; }
.by-feature:hover { transform: translateX(6px); }

.by-feat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--bic) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--bic) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.by-feat-icon i {
  width: 20px; height: 20px;
  color: var(--bic);
}

.by-feature h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.by-feature p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* Pricing card */
.by-pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.by-pricing-card {
  background: rgb(25, 33, 67);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.15);
}

.by-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--by-primary), var(--by-accent));
}

.by-pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--by-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.by-price-amount {
  display: flex;
  align-items: flex-start;
  gap: 0.125rem;
  margin-bottom: 0.35rem;
}

.by-currency {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

.by-price {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.by-period {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  align-self: flex-end;
  margin-bottom: 0.4rem;
}

.by-billing-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.75rem;
}

.by-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.by-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.by-pricing-features li i {
  width: 16px; height: 16px;
  color: #34D399;
  flex-shrink: 0;
}

/* BillYantra buttons */
.by-btn-primary {
  background: linear-gradient(135deg, var(--by-primary) 0%, #6D28D9 100%);
  color: white;
  border: none;
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.35);
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--trans);
}

.by-btn-primary:hover {
  background: linear-gradient(135deg, #6D28D9 0%, var(--by-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(124, 58, 237, 0.45);
}

.by-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.15);
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--trans);
  justify-content: center;
  display: inline-flex;
  width: 100%;
  padding: 0.75rem;
  font-size: 0.9rem;
}

.by-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: white;
}

.by-contact-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* Proof strip under pricing */
.by-proof {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}

.by-proof-icon {
  width: 20px; height: 20px;
  color: var(--by-gold);
  flex-shrink: 0;
}

.by-proof p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.by-proof strong { color: rgba(255,255,255,0.75); }

/* Responsive adjustments for BillYantra */
@media (max-width: 1024px) {
  .by-grid { grid-template-columns: 1fr; gap: 3rem; }
  .by-pricing-wrap { max-width: 420px; margin: 0 auto; width: 100%; }
}

@media (max-width: 480px) {
  .by-logo-text { font-size: 2.25rem; }
  .by-price { font-size: 3.25rem; }
  .by-pricing-card { padding: 1.75rem 1.5rem; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .nav-wrapper, .back-to-top, .cta-banner, .floating-shapes { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  * { animation: none !important; transition: none !important; }
}

/* ============================================================
   SUB-PAGE ADDITIONS — Navigation Dropdown, Page Hero, etc.
   ============================================================ */

/* ---- Dropdown Nav ---- */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--trans);
  z-index: 200;
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--trans-fast);
}
.dropdown-menu li a:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--blue);
}
.dropdown-menu li a .icon-xs { color: var(--blue); }

/* ---- Page Hero (sub-pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a6e 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.page-breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--trans-fast); }
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 620px; }
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

/* ---- Service Detail Page ---- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-detail-content h2 { margin-bottom: 1.25rem; }
.service-detail-content p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.8; }
.service-detail-list { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.sdl-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--trans);
}
.sdl-item:hover { border-color: rgba(37,99,235,0.3); background: rgba(37,99,235,0.03); }
.sdl-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(var(--ic-rgb, 37,99,235), 0.12);
  color: var(--blue);
}
.sdl-icon svg { width: 20px; height: 20px; }
.sdl-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.sdl-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ---- Visual Stat Card ---- */
.stats-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.stat-visual-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stat-visual-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.stat-visual-card .svc-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-visual-card .svc-num span { color: var(--cyan); }
.stat-visual-card .svc-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.stat-visual-card.accent { background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%); }

/* ---- Process Steps ---- */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.ps-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ps-content h4 { margin-bottom: 0.4rem; }
.ps-content p { font-size: 0.9rem; color: var(--text-muted); }

/* ---- Pricing Table ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--trans);
  position: relative;
}
.pricing-card:hover { border-color: rgba(37,99,235,0.4); box-shadow: var(--shadow-lg); }
.pricing-card.featured-plan {
  border-color: var(--blue);
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0ff 100%);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.plan-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.plan-price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.plan-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.plan-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; }
.plan-features li svg { color: var(--teal); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

/* ---- Team Profile Grid ---- */
.team-profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-profile-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all var(--trans);
}
.team-profile-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 1rem;
  background: var(--av, var(--blue));
}
.team-profile-card h4 { margin-bottom: 0.25rem; }
.team-profile-card .role { font-size: 0.82rem; color: var(--blue); font-weight: 600; margin-bottom: 0.75rem; }
.team-profile-card .bio { font-size: 0.88rem; color: var(--text-muted); }

/* ---- About page styles ---- */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-visual-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-stat-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  color: var(--white);
}
.asp-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--cyan); }
.asp-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ---- Contact page ---- */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.office-cards { display: flex; flex-direction: column; gap: 1rem; }
.office-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--trans);
}
.office-card:hover { border-color: rgba(37,99,235,0.3); background: rgba(37,99,235,0.02); }
.office-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.08);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--blue);
  flex-shrink: 0;
}
.office-card h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.office-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ---- BillYantra landing page ---- */
.by-hero-visual {
  background: var(--by-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.by-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--by-glow) 0%, transparent 60%);
}
.by-invoice-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.by-mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.by-mock-logo { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 1.1rem; }
.by-mock-badge { background: var(--by-primary); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: var(--radius-full); }
.by-mock-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.by-mock-row:last-child { border: none; }
.by-mock-total { display: flex; justify-content: space-between; padding: 0.75rem 0 0; font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1rem; margin-top: 0.5rem; }
.by-chatbot-bubble {
  position: absolute;
  bottom: 3rem;
  right: -1rem;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-lg);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--gray-700);
  max-width: 180px;
  box-shadow: var(--shadow-lg);
  font-weight: 500;
  z-index: 2;
}
.by-chatbot-bubble::before {
  content: '💬';
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

/* ---- Responsive sub-pages ---- */
@media (max-width: 768px) {
  .service-detail-grid,
  .about-intro-grid,
  .contact-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-profiles-grid { grid-template-columns: 1fr 1fr; }
  .stats-visual-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .team-profiles-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHATSAPP FLOATING ACTION BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 88px;          /* sits above back-to-top button */
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px 12px 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 52px;       /* collapsed by default — shows only icon */
}
.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  max-width: 200px;
}
.whatsapp-fab svg { flex-shrink: 0; }
.whatsapp-fab-label {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-width 0.3s ease;
}
.whatsapp-fab:hover .whatsapp-fab-label,
.whatsapp-fab:focus-visible .whatsapp-fab-label {
  opacity: 1;
  max-width: 140px;
}

/* ============================================================
   SOCIAL PROOF TRUST BAR  (used on cta-banner sections)
   ============================================================ */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item i { width:15px; height:15px; color: #67E8F9; flex-shrink:0; }

@media (max-width: 640px) {
  .whatsapp-fab { bottom: 78px; right: 16px; }
  .trust-bar { gap: 1rem; padding: 0.75rem 1rem; }
  .trust-item { font-size: 0.78rem; }
}

/* ============================================================
   VISUAL BANNER (OG image embedded on page)
   ============================================================ */
.visual-banner-section { padding-top: 0 !important; }
.visual-banner-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(30,58,95,0.18);
  border: 1px solid var(--gray-200);
  margin-bottom: 0.5rem;
}
.visual-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .visual-banner-wrap { border-radius: var(--radius-lg); }
}
