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

:root {
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --color-primary: #1A56DB;
  --color-primary-hover: #1442B0;
  --color-primary-light: #EFF6FF;
  --color-primary-glow: rgba(26, 86, 219, 0.15);
  
  --color-accent: #F59E0B;
  --color-accent-hover: #D97706;
  --color-accent-light: #FEF3C7;
  
  --color-teal: #0D9488;
  --color-teal-light: #F0FDFA;
  
  --color-bg-main: #FFFFFF;
  --color-bg-subtle: #F8FAFC;
  --color-bg-card: #FFFFFF;
  
  --color-text-main: #0F172A;
  --color-text-body: #475569;
  --color-text-muted: #64748B;
  
  --color-border: #E2E8F0;
  --color-border-light: #F1F5F9;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  --shadow-card-hover: 0 20px 35px -5px rgba(26, 86, 219, 0.1), 0 1px 4px rgba(15, 23, 42, 0.04);
  
  --transition-normal: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-bg-main);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  background-color: var(--color-bg-main);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Live Status Pulse Badge */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-main);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.4);
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Badges & Tags */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
}

.badge-primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid rgba(26, 86, 219, 0.2);
}

.badge-accent {
  background-color: var(--color-accent-light);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-teal {
  background-color: var(--color-teal-light);
  color: var(--color-teal);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.badge-subtle {
  background-color: var(--color-bg-subtle);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1A56DB 0%, #1E40AF 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1E40AF 0%, #172554 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 86, 219, 0.35);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--color-text-main);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: #CBD5E1;
  background-color: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 24px -4px rgba(15, 23, 42, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 48px;
}

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-body);
  position: relative;
  padding: 8px 0;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--color-text-main);
}

/* Mobile Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 99;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-nav-links .nav-link {
  font-size: 17px;
  font-weight: 600;
  display: block;
  padding: 8px 0;
}

/* Hero Section with Grid Pattern & Ambient Glow */
.hero {
  position: relative;
  z-index: 0;
  padding-top: 88px;
  padding-bottom: 96px;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 86, 219, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 85% 60%, rgba(13, 148, 136, 0.08), transparent),
    radial-gradient(#E2E8F0 1px, transparent 1px);
  background-size: auto, auto, 28px 28px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero::before {
  top: -140px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.28), transparent 70%);
  animation: float-blob-1 15s ease-in-out infinite;
}

.hero::after {
  bottom: -160px;
  right: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.22), transparent 70%);
  animation: float-blob-2 17s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

@keyframes float-blob-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-25px, 25px) scale(0.94); }
}

@keyframes float-blob-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -25px) scale(1.12); }
}

/* Standalone hero used on Services page */
.services-hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 56px;
  text-align: center;
  background: radial-gradient(ellipse 80% 55% at 50% -15%, rgba(26, 86, 219, 0.10), transparent);
}

.services-hero::before,
.services-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.services-hero::before {
  top: -120px;
  left: 8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.20), transparent 70%);
  animation: float-blob-1 15s ease-in-out infinite;
}

.services-hero::after {
  top: -80px;
  right: 5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16), transparent 70%);
  animation: float-blob-2 18s ease-in-out infinite;
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: 56px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--color-text-main);
}

.hero-title span.gradient-text {
  background: linear-gradient(100deg, #1A56DB 0%, #0D9488 45%, #1A56DB 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Arrow icons nudge forward on hover */
.btn svg {
  transition: transform 0.25s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.hero-subtitle {
  font-size: 19.5px;
  line-height: 1.65;
  color: var(--color-text-body);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

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

/* Hero Interactive UI Card Mockup */
.hero-mockup-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 
    0 24px 48px -12px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: var(--transition-normal);
}

.hero-mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px -16px rgba(26, 86, 219, 0.16);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 20px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #FDA4AF; }
.mockup-dot.yellow { background: #FDE047; }
.mockup-dot.green { background: #86EFAC; }

.mockup-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.mockup-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.mockup-stat-box {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 16px;
}

.mockup-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.mockup-stat-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-main);
}

.mockup-stat-trend {
  font-size: 12px;
  color: #10B981;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
}

.mockup-progress-item {
  margin-top: 14px;
}

.mockup-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text-main);
}

.mockup-progress-bar {
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
}

.mockup-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #1A56DB, #0D9488);
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cursor-follow spotlight glow on the hero mockup card */
.hero-mockup-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(26, 86, 219, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 3;
}

.hero-mockup-card:hover::before {
  opacity: 1;
}

/* Metrics Counter Banner */
.metrics-strip {
  background: #FFFFFF;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 36px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.metric-number span.plus {
  color: var(--color-primary);
}

.metric-label {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Sections */
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-subtle {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.section-subtle::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -90px;
  right: -70px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 70%);
  animation: float-blob-1 18s ease-in-out infinite;
  pointer-events: none;
}

/* Staggered scroll-reveal cascade for grid items */
.bento-grid > *:nth-child(1), .services-grid > *:nth-child(1), .process-grid > *:nth-child(1), .why-grid > *:nth-child(1), .testimonials-grid > *:nth-child(1) { transition-delay: 0.03s; }
.bento-grid > *:nth-child(2), .services-grid > *:nth-child(2), .process-grid > *:nth-child(2), .why-grid > *:nth-child(2), .testimonials-grid > *:nth-child(2) { transition-delay: 0.1s; }
.bento-grid > *:nth-child(3), .services-grid > *:nth-child(3), .process-grid > *:nth-child(3), .why-grid > *:nth-child(3) { transition-delay: 0.17s; }
.services-grid > *:nth-child(4) { transition-delay: 0.24s; }
.services-grid > *:nth-child(5) { transition-delay: 0.31s; }
.services-grid > *:nth-child(6) { transition-delay: 0.38s; }

/* Scroll progress bar (injected by main.js) */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #1A56DB, #0D9488, #F59E0B);
  z-index: 1000;
  transition: width 0.1s ease-out;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px auto;
}

.section-title {
  font-size: 40px;
  margin-top: 14px;
  margin-bottom: 18px;
  color: var(--color-text-main);
}

.section-desc {
  font-size: 18.5px;
  color: var(--color-text-body);
  line-height: 1.6;
}

/* Card Base */
.card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: #CBD5E1;
  transform: translateY(-3px);
}

/* Shine sweep on hover — card & bento-card */
.card::after,
.bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

.card:hover::after,
.bento-card:hover::after {
  left: 130%;
}

/* Why / Feature Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.why-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.card:hover .why-icon-wrap {
  transform: translateY(-2px);
  background: var(--color-primary);
  color: #FFFFFF;
}

.why-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.why-desc {
  font-size: 15.5px;
  color: var(--color-text-body);
  line-height: 1.65;
}

/* Trust Tag */
.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.trust-tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

/* Bento Grid System for Features */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bento-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: var(--transition-normal);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: #CBD5E1;
}

.bento-card:hover::before {
  background: linear-gradient(90deg, #1A56DB, #0D9488);
}

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bento-icon svg {
  width: 26px;
  height: 26px;
}

.bento-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.bento-desc {
  font-size: 15.5px;
  color: var(--color-text-body);
  line-height: 1.65;
}

/* Services High-End Cards */
.service-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #93C5FD;
  box-shadow: 0 20px 40px -8px rgba(26, 86, 219, 0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--color-primary);
  transition: var(--transition-normal);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-icon {
  background: #1A56DB;
  color: #FFFFFF;
}

.service-title {
  font-size: 21px;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--color-text-body);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-good-for {
  padding: 12px 16px;
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-primary);
  font-size: 13.5px;
  color: var(--color-text-body);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  gap: 10px;
}

/* Comparison Table (Brand Tech vs Traditional Agencies) */
.comparison-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-top: 48px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th.brandtech-col {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.comparison-table td {
  padding: 18px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--color-border-light);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td.brandtech-col {
  background-color: rgba(239, 246, 255, 0.4);
  font-weight: 600;
  color: var(--color-text-main);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: rgba(26, 86, 219, 0.2);
  margin-bottom: 14px;
}

.process-card:hover .process-step-num {
  color: var(--color-primary);
}

.process-title {
  font-size: 21px;
  margin-bottom: 12px;
}

.process-desc {
  font-size: 15.5px;
  color: var(--color-text-body);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--color-text-main);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1A56DB, #0D9488);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-text-main);
}

.author-meta {
  font-size: 13.5px;
  color: var(--color-text-muted);
}

/* FAQ Accordion */
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: #FFFFFF;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--color-text-main);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--color-bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
  color: var(--color-text-body);
  font-size: 15.5px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 280px;
  padding: 0 28px 24px 28px;
}

/* CTA Banner */
.cta-banner {
  background: radial-gradient(ellipse at 80% 0%, #1E3A8A 0%, #0F172A 75%);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px -15px rgba(15, 23, 42, 0.35);
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 18px;
}

.cta-banner p {
  color: #94A3B8;
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding-top: 72px;
  padding-bottom: 36px;
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 340px;
  line-height: 1.65;
}

.footer-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
}

/* Floating WhatsApp Action Button */
.bt-float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
}

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

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

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-main);
  background-color: #FFFFFF;
  transition: var(--transition-normal);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-title {
    font-size: 46px;
  }
  .bento-grid, .process-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-consultation {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .bento-grid, .services-grid, .process-grid, .testimonials-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 48px 24px;
  }
  .cta-banner h2 {
    font-size: 30px;
  }
}

/* ==========================================================================
   Modern Animations & Micro-Interactions (Light Theme Edition)
   ========================================================================== */

/* Infinite Marquee Ticker */
.marquee-container {
  overflow: hidden;
  position: relative;
  background: #F8FAFC;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  user-select: none;
  display: flex;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, #FFFFFF 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 32px;
  animation: marquee-slide 32s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text-main);
}

.marquee-bullet {
  color: var(--color-primary);
  font-size: 16px;
}

@keyframes marquee-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Floating Animation */
@keyframes float-subtle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: float-subtle 4s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-subtle 4.5s ease-in-out 1.5s infinite;
}

/* Shimmer Button Effect */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 35%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 65%
  );
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-shimmer:hover::after {
  transform: rotate(25deg) translateY(100%);
}

/* Glowing Halo Card Effect */
.glow-card {
  position: relative;
  transition: var(--transition-normal);
}

.glow-card:hover {
  box-shadow: 
    0 20px 38px -10px rgba(26, 86, 219, 0.14),
    0 0 24px rgba(13, 148, 136, 0.08);
  border-color: #93C5FD;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

