/* ==========================================================================
   SMARTMIND CONSULTANCY SERVICES (SCS) - Production Design System
   Brand: Luxury Corporate Navy & Emerald Teal & Champagne Gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap');

:root {
  /* Official SCS Brand Palette (from SCS_Brand_Guidelines.md) */
  --scs-primary: #00A896;       /* Teal Green (Primary) */
  --scs-primary-hover: #008F80; /* Darker Teal */
  --scs-secondary: #006B8F;     /* Deep Teal Blue */
  --scs-dark: #0F2D4A;          /* Navy (Dark / Headings) */
  --scs-light: #EAF9F7;         /* Soft Mint (Backgrounds / UI) */
  --scs-white: #FFFFFF;

  --navy-950: #071524;
  --navy-900: var(--scs-dark);
  --navy-850: #14375a;
  --navy-800: #1b4570;
  --navy-700: #24558a;
  
  --teal-600: var(--scs-primary-hover);
  --teal-500: var(--scs-primary);
  --teal-400: var(--scs-secondary);
  --teal-300: #20c997;
  --teal-100: #ccfbf1;
  --teal-50: var(--scs-light);
  
  --gold-500: #d97706;
  --gold-400: #f59e0b;
  --gold-100: #fef3c7;
  --gold-50: #fffbeb;
  
  --slate-900: #0F2D4A;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-sans);

  /* Elevation & Glassmorphism */
  --shadow-sm: 0 1px 2px 0 rgba(15, 45, 74, 0.05);
  --shadow-md: 0 4px 16px -1px rgba(15, 45, 74, 0.08), 0 2px 4px -1px rgba(15, 45, 74, 0.04);
  --shadow-lg: 0 12px 30px -4px rgba(15, 45, 74, 0.12), 0 4px 8px -2px rgba(15, 45, 74, 0.05);
  --shadow-xl: 0 24px 50px -12px rgba(15, 45, 74, 0.22);
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(226, 232, 240, 0.85);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.container-narrow {
  width: min(960px, 92%);
  margin-inline: auto;
}

/* Typography Presets */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--slate-600);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--slate-700);
  line-height: 1.6;
}

/* Eyebrow / Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-600);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.badge-gold {
  background: var(--gold-50);
  border-color: var(--gold-100);
  color: var(--gold-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--scs-primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 168, 150, 0.28);
}

.btn-primary:hover {
  background: var(--scs-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 168, 150, 0.38);
}

.btn-navy {
  background: var(--scs-dark);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 45, 74, 0.2);
}

.btn-navy:hover {
  background: #153e66;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 45, 74, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--slate-300);
}

.btn-secondary:hover {
  background: var(--slate-50);
  border-color: var(--slate-400);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

/* Top Notification / Info Bar */
.top-bar {
  background: var(--navy-950);
  color: var(--slate-400);
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: var(--teal-300);
}

.top-bar-badge {
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal-300);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
}

/* Header & Navigation */
header.site-header {
  position: sticky;
  top: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 52px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-700);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--teal-500);
}

/* Services Dropdown */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-wrapper:hover .dropdown-menu,
.nav-dropdown-wrapper:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 580px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xl);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 1050;
}

.dropdown-item {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--teal-50);
}

.dropdown-item .item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--teal-100);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.dropdown-item .item-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
}

.dropdown-item .item-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy-900);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 6px;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--slate-500);
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--slate-400);
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--teal-500);
}

.breadcrumbs .current {
  color: var(--navy-900);
  font-weight: 600;
}

/* Layman Translation Hero Card */
.layman-hero-card {
  background: linear-gradient(135deg, #091728 0%, #0d2847 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}

.layman-hero-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.layman-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: var(--teal-300);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.layman-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.4;
  color: #f1f5f9;
  border-left: 4px solid var(--teal-400);
  padding-left: 20px;
  margin: 18px 0 20px;
}

.layman-subtext {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Before vs After Cards (Layman Comparison) */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}

.card-without {
  background: #fff8f8;
  border: 1px solid #fee2e2;
}

.card-without h4 {
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.card-with {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  box-shadow: 0 8px 24px rgba(0, 135, 121, 0.08);
}

.card-with h4 {
  color: var(--teal-600);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.pain-list li, .gain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.pain-list li::before {
  content: "✕";
  font-weight: 900;
  color: #ef4444;
  background: #fee2e2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.gain-list li::before {
  content: "✓";
  font-weight: 900;
  color: var(--teal-600);
  background: var(--teal-100);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Deliverable Steps */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-400);
  box-shadow: var(--shadow-lg);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal-100);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card:hover .step-num {
  color: var(--teal-400);
}

.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--slate-600);
}

/* Persona Section ("Who Needs This?") */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.persona-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.persona-card:hover {
  background: var(--white);
  border-color: var(--teal-300);
  box-shadow: var(--shadow-md);
}

.persona-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.persona-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* Service Detail Layout */
.service-body-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.sidebar-sticky {
  position: sticky;
  top: 104px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.sidebar-service-list li {
  margin-bottom: 8px;
}

.sidebar-service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  border: 1px solid transparent;
}

.sidebar-service-list a:hover,
.sidebar-service-list a.active {
  background: var(--teal-50);
  color: var(--teal-600);
  border-color: var(--teal-100);
}

.contact-highlight-box {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.contact-highlight-box h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.contact-highlight-box p {
  color: var(--slate-300);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-wrap {
  margin-top: 36px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--slate-50);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--teal-500);
  transition: transform 0.25s ease;
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.65;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Global Form Elements */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--slate-800);
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(0, 135, 121, 0.15);
}

select.form-control {
  appearance: auto;
}

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

/* Sections */
.section {
  padding: clamp(60px, 8vw, 96px) 0;
}

.section-alt {
  background: var(--slate-50);
}

.section-navy {
  background: var(--navy-900);
  color: var(--white);
}

.section-navy h2, .section-navy h3 {
  color: var(--white);
}

.section-navy p {
  color: var(--slate-300);
}

.section-header {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-header.text-center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  margin-top: 10px;
  margin-bottom: 16px;
}

/* Home Hero */
.home-hero {
  background: radial-gradient(circle at 85% 15%, rgba(0, 168, 150, 0.12) 0%, transparent 40%),
              linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--slate-200);
}

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.1;
}

.stat-item span {
  font-size: 0.82rem;
  color: var(--slate-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Interactive Card */
.hero-glass-card {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-glass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--teal-300);
  font-weight: 700;
}

.badge-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-300);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.6; }
}

.kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 14px;
}

.kpi-card small {
  font-size: 0.75rem;
  color: var(--slate-400);
}

.kpi-card .val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal-300);
  margin-top: 4px;
}

.hero-insight-box {
  background: rgba(0, 135, 121, 0.15);
  border: 1px solid rgba(0, 168, 150, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.88rem;
  color: #e2e8f0;
}

/* Service Card (Grid) */
.services-grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.service-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--teal-400);
  box-shadow: var(--shadow-xl);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card-item:hover .service-icon-box {
  background: var(--teal-500);
  color: var(--white);
  border-color: var(--teal-500);
}

.service-card-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-layman-summary {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-bottom: 20px;
  line-height: 1.55;
}

.service-perk-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.perk-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--slate-100);
  border-radius: var(--radius-pill);
  color: var(--slate-700);
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal-600);
}

.service-card-item:hover .service-learn-more {
  gap: 10px;
  color: var(--teal-500);
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--teal-600) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 64px);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner-content {
  max-width: 680px;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

/* Footer */
footer.site-footer {
  background: var(--navy-950);
  color: var(--slate-400);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--teal-400);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--slate-400);
}

.footer-links a:hover {
  color: var(--teal-300);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact-item svg, .footer-contact-item span.icon {
  color: var(--teal-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Mobile Navigation Overlay */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85%);
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 44, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  padding: 8px 0;
  border-bottom: 1px solid var(--slate-100);
}

.mobile-services-sublist {
  padding-left: 14px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-services-sublist a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-600);
  border: none;
  padding: 4px 0;
}

/* Responsive Media Queries */
@media (max-width: 1080px) {
  .services-grid-9 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-body-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .nav-menu {
    display: none;
  }
  .nav-actions .btn-whatsapp,
  .nav-actions .btn-consultation {
    display: none !important;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--teal-50);
    color: var(--navy-900);
    border: 1px solid var(--teal-100);
  }
  .navbar {
    height: 72px;
  }
  .brand-logo img {
    height: 44px;
  }
  .brand-title {
    font-size: 1.1rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .persona-grid {
    grid-template-columns: 1fr;
  }
  .dropdown-menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .top-bar {
    display: none !important;
  }
  .navbar {
    height: 64px;
  }
  .brand-logo {
    gap: 10px;
  }
  .brand-logo img {
    height: 38px;
  }
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-subtitle {
    display: none !important;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .services-grid-9 {
    grid-template-columns: 1fr;
  }
  .service-card-item {
    padding: 24px 20px;
  }
  .layman-hero-card {
    padding: 24px 20px;
  }
  .comparison-card {
    padding: 20px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
