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

:root {
  --ink:       #0F1623;
  --ink-mid:   #2E3A4E;
  --ink-soft:  #5A6A7E;
  --accent:    #5B6EF5;
  --accent-lt: #7B8EFF;
  --accent-bg: #EEF0FE;
  --lavender:  #F5F6FF;
  --white:     #FFFFFF;
  --border:    #E3E6F0;
  --success:   #22C55E;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(91,110,245,0.08);
  --shadow-md: 0 6px 24px rgba(91,110,245,0.12);
  --shadow-lg: 0 16px 48px rgba(91,110,245,0.16);
  --max-w: 1240px;
  --nav-h: 78px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.accent { color: var(--accent); }
.section-label {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 96px 0; }
.section-alt { background: var(--lavender); }
.section-dark { background: var(--ink); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.text-center { text-align: center; }
.section-header { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.section-header p { margin-top: 1rem; font-size: 1.1rem; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo:hover { text-decoration: none; opacity: 0.88; }
.logo-img { height: 56px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; flex-wrap: nowrap; }
.nav-links a {
  font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 500;
  color: var(--ink-mid); padding: 6px 11px; border-radius: 8px;
  transition: all 0.2s; text-decoration: none; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: var(--accent-bg); color: var(--accent); text-decoration: none; }

/* Dropdown menus */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; transition: transform 0.2s; }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); min-width: 230px; padding: 8px;
  list-style: none;
  /* Use opacity/visibility instead of display so the bridge + transition work */
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  margin-top: 10px;          /* visual offset, NOT a dead gap (bridge covers it) */
}
/* Invisible bridge: fills the gap between the link and the menu so hover never drops */
.dropdown-menu::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
  background: transparent;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}
.dropdown-menu a {
  display: block; padding: 11px 14px; border-radius: var(--radius-sm);
  font-size: 0.875rem; color: var(--ink-mid); white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--accent-bg); color: var(--accent); text-decoration: none; }

.nav-cta {
  background: var(--accent); color: white !important;
  padding: 10px 22px !important; border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--accent-lt) !important; transform: translateY(-1px); text-decoration: none !important; }

.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile expanded nav (when burger opens .nav-links) */
@media (max-width: 1024px) {
  .nav-links.mobile-open {
    display: flex !important; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: white; padding: 0.75rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border); gap: 0.1rem; z-index: 99;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    box-shadow: var(--shadow-md);
  }
  .nav-links.mobile-open > li { width: 100%; }
  .nav-links.mobile-open > li > a {
    display: block; padding: 12px 14px; font-size: 1rem;
    border-bottom: 1px solid var(--lavender);
  }
  /* In mobile, show dropdown items inline, indented, always visible */
  .nav-links.mobile-open .nav-dropdown > a::after { display: none; }
  .nav-links.mobile-open .dropdown-menu {
    display: block; position: static; box-shadow: none; border: none;
    background: var(--lavender); border-radius: var(--radius-sm);
    margin: 0.25rem 0 0.5rem; padding: 0.25rem 0.5rem; min-width: 0;
    opacity: 1; visibility: visible; transform: none; transition: none;
  }
  .nav-links.mobile-open .dropdown-menu::before { display: none; }
  .nav-links.mobile-open .dropdown-menu a { padding: 10px 14px; font-size: 0.9rem; }
  .nav-links.mobile-open .nav-cta {
    display: block !important; text-align: center; margin-top: 0.75rem;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.9375rem;
  padding: 13px 28px; border-radius: var(--radius-sm);
  cursor: pointer; border: none; transition: all 0.2s; text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-lt); transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; color: white; }
.btn-outline {
  background: white; color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); text-decoration: none; }
.btn-white { background: white; color: var(--ink); }
.btn-white:hover { background: var(--accent-bg); color: var(--accent); text-decoration: none; }

/* ===== CARDS ===== */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem;
  transition: all 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--accent-bg); }
.card-icon {
  width: 52px; height: 52px; background: var(--accent-bg);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.card-icon svg { fill: var(--accent); width: 24px; height: 24px; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.9375rem; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: white;
}
.stat-item {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Sora', sans-serif; font-size: 2.6rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.875rem; color: var(--ink-soft); }

/* ===== TRUST BADGE ===== */
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lavender); border: 1px solid var(--border);
  border-radius: 100px; padding: 7px 18px;
  font-size: 0.875rem; font-weight: 500; color: var(--ink-mid);
  margin-bottom: 2rem;
}
.trust-badge span { color: var(--accent); font-size: 1rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); background: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,110,245,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-btns { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }

/* Shield pulse animation */
.shield-wrap {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 480px; height: 480px; display: flex; align-items: center; justify-content: center;
}
.shield-pulse {
  position: relative; width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.shield-pulse::before, .shield-pulse::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(91,110,245,0.25);
  animation: pulse-ring 3s ease-out infinite;
}
.shield-pulse::before { width: 280px; height: 280px; animation-delay: 0s; }
.shield-pulse::after  { width: 380px; height: 380px; animation-delay: 1s; }
.shield-pulse-3 {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  border: 1.5px solid rgba(91,110,245,0.12);
  animation: pulse-ring 3s ease-out infinite; animation-delay: 2s;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.1);  opacity: 0; }
}
.shield-core {
  width: 160px; height: 160px; background: var(--accent-bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(91,110,245,0.2); z-index: 1;
}
.shield-core svg { fill: var(--accent); width: 72px; height: 72px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--lavender); padding: 7rem 0 5rem;
  margin-top: var(--nav-h); border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { max-width: 560px; margin: 1rem auto 0; font-size: 1.1rem; }

/* ===== PROCESS STEPS ===== */
.process-step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 700;
  color: var(--accent); background: var(--accent-bg);
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; letter-spacing: 0.05em;
}
.step-body h3 { margin-bottom: 0.4rem; }

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem;
}
.testimonial blockquote {
  font-style: italic; color: var(--ink-mid); margin-bottom: 1.2rem;
  font-size: 0.9375rem; line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-bg); display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.875rem; color: var(--accent);
}
.author-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.8rem; color: var(--ink-soft); }

/* ===== CASE STUDY CARD ===== */
.case-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all 0.25s;
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.case-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--accent-bg) 0%, #dde1fc 100%);
  display: flex; align-items: center; justify-content: center;
}
.case-card-img svg { fill: var(--accent); opacity: 0.4; width: 72px; height: 72px; }
.case-card-body { padding: 1.5rem; }
.case-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--accent); background: var(--accent-bg);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 0.75rem;
}
.case-card-body h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.case-card-body p { font-size: 0.9rem; margin-bottom: 1rem; }
.case-result {
  display: flex; gap: 1.5rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.case-result-item .number {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--ink);
}
.case-result-item .label { font-size: 0.78rem; color: var(--ink-soft); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block; font-family: 'Sora', sans-serif;
  font-size: 0.875rem; font-weight: 600; color: var(--ink-mid);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: var(--ink);
  background: white; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,110,245,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* Success state */
.form-success {
  display: none; text-align: center; padding: 2.5rem;
  background: #F0FDF4; border: 1px solid #BBF7D0;
  border-radius: var(--radius-md);
}
.form-success .check-icon {
  width: 60px; height: 60px; background: var(--success);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.form-success h3 { color: #166534; margin-bottom: 0.5rem; }
.form-success p { color: #166534; opacity: 0.8; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.3rem 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--ink); gap: 1rem;
}
.faq-question .icon { font-size: 1.2rem; color: var(--accent); flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.3rem; }
.faq-answer p { font-size: 0.9375rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { display: inline-flex; margin-bottom: 1.25rem; }
.footer-brand .logo-img { height: 64px; border-radius: 8px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.875rem;
  color: white; margin-bottom: 1.2rem; letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: white; text-decoration: none; }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: white; text-decoration: none; }

/* ===== NOTICE BANNER ===== */
.notice-box {
  background: var(--accent-bg); border: 1px solid rgba(91,110,245,0.3);
  border-radius: var(--radius-md); padding: 1.5rem 2rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.notice-icon { color: var(--accent); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

/* ===== SERVICE PAGE FEATURES ===== */
.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.9375rem; color: var(--ink-mid);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent); text-decoration: none; }
.breadcrumb span { color: var(--ink-soft); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .shield-wrap { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logo-img { height: 48px; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .nav-inner { padding: 0 1.25rem; }
  .page-hero { padding: 5.5rem 0 3.5rem; }
  /* Dual CTA band: drop the divider border when stacked */
  .section-dark .grid-2 > div[style*="border-left"] {
    border-left: none !important; padding-left: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.12); padding-top: 2.5rem !important;
  }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .container { padding: 0 1.25rem; }
  .pricing-card.featured { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .shield-pulse::before, .shield-pulse::after, .shield-pulse-3 { animation: none; }
}

/* ===== PRICING TABLE ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: stretch; }
.pricing-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent); background: var(--ink);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--ink); margin-bottom: 0.4rem;
}
.pricing-card.featured .pricing-name { color: white; }
.pricing-price {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 2.4rem; color: var(--ink); line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}
.pricing-card.featured .pricing-price { color: white; }
.pricing-period { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 1.2rem 0; }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.15); }
.pricing-features { list-style: none; flex: 1; margin-bottom: 1.75rem; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--ink-mid);
  padding: 0.55rem 0; border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }
.pricing-features .check { color: var(--accent); flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.pricing-card.featured .pricing-features .check { color: #8FA8F8; }
.pricing-features .dash { color: var(--border); flex-shrink: 0; }
.pricing-highlight {
  font-size: 0.72rem; color: var(--ink-soft); font-style: italic;
  margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.pricing-card.featured .pricing-highlight { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.1); }

/* ===== CLUTCH BADGE ===== */
.clutch-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 16px;
  margin-top: 1.5rem;
}
.clutch-badge .clutch-stars { color: #FF3D2E; font-size: 0.9rem; letter-spacing: 1px; }
.clutch-badge .clutch-text { font-family: 'Sora', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.clutch-badge .clutch-sub { font-size: 0.68rem; font-weight: 500; color: var(--ink-soft); }
.clutch-badge .clutch-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1rem; color: #FF3D2E; letter-spacing: -0.5px; }

/* Footer Clutch */
.footer-clutch {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); padding: 10px 16px; margin-top: 1.2rem;
}
.footer-clutch .clutch-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1rem; color: #FF6B5E; }
.footer-clutch .clutch-stars { color: #FF6B5E; font-size: 0.85rem; letter-spacing: 1px; }
.footer-clutch .clutch-text { font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.8); line-height: 1.3; }
.footer-clutch .clutch-sub { font-size: 0.65rem; color: rgba(255,255,255,0.45); }

/* ===== SEO PAGE SPECIFICS ===== */
.seo-approach-tab {
  display: flex; gap: 0; border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
}
.seo-tab-item {
  padding: 0.75rem 1.5rem; font-family: 'Sora', sans-serif;
  font-size: 0.875rem; font-weight: 600; color: var(--ink-soft);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  cursor: default;
}
.seo-tab-item.active { color: var(--accent); border-bottom-color: var(--accent); }
.who-serve-card {
  background: var(--lavender); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem;
}
.who-serve-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.who-serve-card p { font-size: 0.9375rem; }

/* Responsive pricing */
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pricing-grid { grid-template-columns: 1fr; } .pricing-card.featured { transform: none; } }
