/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    color: #2d3748;
    line-height: 1.7;
    overflow-x: hidden;
    background: #ffffff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== COLORS ===== */
:root {
    --primary: #0f766e;
    --primary-dark: #115e59;
    --primary-light: #99f6e4;
    --primary-50: #f0fdfa;
    --accent: #2563eb;
    --accent-light: #dbeafe;
    --accent-dark: #1d4ed8;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --success: #10b981;
    --warm-50: #fefce8;
    --warm-100: #fef9c3;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif; font-weight: 700; color: var(--slate-900); }
.accent-text { color: var(--primary); }
.accent-light { color: var(--teal-600); font-weight: 600; }

/* ===== NAVIGATION ===== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15,23,42,0.06);
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--teal-600));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
}
.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--slate-900);
}
.logo-text span { color: var(--primary); }
.logo-sub {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--slate-500);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--slate-700);
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 11px 26px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}
.nav-cta:hover { background: var(--primary-dark); box-shadow: 0 4px 12px rgba(15,118,110,0.3); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}
.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 5% 90px;
    background: linear-gradient(170deg, var(--teal-50) 0%, var(--white) 40%, var(--blue-50) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(204,251,241,0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(219,234,254,0.4) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content { max-width: 860px; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--slate-300);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--slate-500);
}
.hero p strong { color: var(--primary); font-weight: 600; }
.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 8px 24px rgba(15,118,110,0.25); transform: translateY(-1px); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--white);
    color: var(--slate-700);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid var(--slate-300);
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

/* ===== SERVICES STRIP ===== */
.services-strip {
    background: var(--white);
    padding: 40px 5%;
    border-bottom: 1px solid var(--slate-100);
}
.services-strip-inner {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.service-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--slate-500);
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: -0.2px;
    position: relative;
    padding-left: 18px;
}
.service-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--slate-900);
    padding: 24px 5%;
}
.stats-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.stats-bar .stat {
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
    color: var(--white);
}
.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2px;
    background: linear-gradient(135deg, var(--primary-light), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ===== SECTION SHARED ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 14px;
}
.section-label .line {
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    margin-top: 2px;
}

/* ===== ABOUT / ORIGIN STORY ===== */
.about-story {
    padding: 72px 5%;
    background: var(--white);
}
.about-story-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.about-story-hero {
    text-align: center;
    margin-bottom: 64px;
}
.about-story-hero h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.about-story-hero .tagline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.about-story-hero p {
    max-width: 740px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--slate-500);
    line-height: 1.8;
}

.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 72px;
}
.origin-narrative {
    padding: 0;
}
.origin-narrative h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--slate-900);
    letter-spacing: -0.2px;
}
.origin-narrative h3 .highlight { color: var(--primary); }
.origin-narrative p {
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.8;
    margin-bottom: 18px;
}
.origin-narrative .quote-block {
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
    border-left: 4px solid var(--primary);
    padding: 24px 28px;
    border-radius: 0 14px 14px 0;
    margin: 28px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--slate-900);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.5;
}

.philosophy-card {
    background: var(--slate-900);
    border-radius: 20px;
    padding: 44px 36px;
    color: var(--white);
}
.philosophy-card h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 16px;
}
.philosophy-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 16px;
}
.philosophy-card .mission-badge {
    display: inline-block;
    background: rgba(153,246,228,0.12);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

/* ===== WHAT MAKES US DIFFERENT ===== */
.differentiators {
    padding: 80px 5% 0;
    background: var(--white);
}
.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.diff-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s;
}
.diff-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}
.diff-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    background: var(--teal-50);
    color: var(--primary);
}
.diff-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--slate-900);
}
.diff-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.65;
}

/* ===== MEET THE FOUNDER ===== */
.founder {
    padding: 80px 5% 100px;
    background: var(--white);
}
.founder-inner {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.founder-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    font-size: 14px;
    border: 1px solid var(--slate-100);
}
.founder-content h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}
.founder-content .founder-title {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}
.founder-content p {
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ===== AT A GLANCE ===== */
.at-a-glance {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
}
.glance-inner {
    max-width: 900px;
    margin: 0 auto;
}
.glance-inner h2 {
    text-align: center;
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}
.glance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.glance-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px 22px;
    border: 1px solid var(--slate-100);
}
.glance-item strong {
    font-size: 13px;
    color: var(--slate-900);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}
.glance-item span {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.5;
}
.glance-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
}

/* ===== DASHBOARD MOCKUPS ===== */
.dashboard-mock {
    padding: 0;
    overflow: hidden;
    position: relative;
}
.dash-container {
    width: 100%;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dash-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--slate-900);
}
.dash-period {
    font-size: 12px;
    color: var(--slate-500);
    background: var(--slate-100);
    padding: 4px 12px;
    border-radius: 20px;
}
.dark-dash .dash-period {
    background: rgba(255,255,255,0.08);
}
.dash-stats-row {
    display: flex;
    gap: 12px;
}
.dash-stat {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
}
.dark-dash .dash-stat {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
}
.dash-stat-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
}
.dash-stat-label {
    font-size: 10.5px;
    color: var(--slate-500);
    margin-top: 2px;
}
.dash-chart {
    flex: 1;
    border: 1px solid var(--slate-100);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.dash-chart-label {
    font-size: 11px;
    color: var(--slate-500);
    margin-bottom: 10px;
    font-weight: 600;
}
.dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    flex: 1;
    min-height: 60px;
}
.dash-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    min-height: 8px;
    transition: height 0.6s ease;
}
.dash-months {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}
.dash-months span {
    font-size: 9px;
    color: var(--slate-500);
    flex: 1;
    text-align: center;
}
.dash-line-chart {
    flex: 1;
    min-height: 60px;
    display: flex;
    align-items: center;
}
.dash-svg {
    width: 100%;
    height: 100%;
}
.dash-legend {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    font-size: 10px;
}
.dash-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dash-ai-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.dash-ai-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--slate-500);
    font-weight: 500;
}
.dash-ai-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== ABOUT (original section now "How We Help") ===== */
.about {
    padding: 72px 5%;
    background: var(--white);
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.about h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.about-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    font-size: 14px;
    border: 1px solid var(--slate-100);
}
.about-card {
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: 18px;
    padding: 40px;
}
.about-card p {
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.75;
}
.about-card h4 {
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--slate-900);
}
.about-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14.5px;
    color: var(--slate-700);
    line-height: 1.6;
}

/* ===== WHAT'S INCLUDED ===== */
.included {
    padding: 72px 5%;
    background: var(--slate-50);
}
.included h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.included .subtitle {
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 50px;
}
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.included-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 16px;
    padding: 36px 28px;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.included-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
}
.included-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.included-card-icon.seo { background: var(--teal-50); color: var(--primary); }
.included-card-icon.ai { background: var(--blue-50); color: var(--blue-600); }
.included-card-icon.report { background: #f0fdf4; color: var(--success); }
.included-card h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--slate-900);
    letter-spacing: -0.2px;
}
.included-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.55;
}
.included-card li .dot-bullet {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 8px;
}

/* ===== FEATURES / TWO WAYS ===== */
.features {
    padding: 72px 5%;
    background: var(--slate-900);
    color: var(--white);
}
.features-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.features .section-label { color: var(--primary-light); }
.features .section-label .line { background: var(--primary-light); }
.features h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 28px;
    color: var(--white);
    letter-spacing: -0.3px;
}
.features h2 .highlight { color: var(--primary-light); }
.features h3 {
    color: var(--primary-light);
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.features p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}
.features h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
}
.features ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
}
.features ul li .check-icon {
    background: rgba(153,246,228,0.15);
    color: var(--primary-light);
}
.features-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 14px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 72px 5%;
    background: var(--slate-50);
}
.why-choose-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.why-choose h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.why-choose .subtitle {
    text-align: center;
    color: var(--slate-500);
    font-size: 1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 18px;
    padding: 36px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
}
.why-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
}
.why-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.why-card-icon.teal { background: var(--teal-50); color: var(--primary); }
.why-card-icon.blue { background: var(--blue-50); color: var(--blue-600); }
.why-card-icon.green { background: #f0fdf4; color: var(--success); }
.why-card-icon.warm { background: var(--warm-50); color: #d97706; }
.why-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--slate-900);
}
.why-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.65;
}

/* ===== PROCESS ===== */
.process {
    padding: 72px 5%;
    background: var(--white);
}
.process h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.process .subtitle {
    text-align: center;
    color: var(--primary);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 56px;
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--blue-100));
}
.process-step {
    text-align: left;
    position: relative;
    padding: 0 14px;
}
.process-dot {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 14px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(15,118,110,0.2);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
}
.process-dot svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}
.process-step h4 {
    font-size: 13.5px;
    margin-bottom: 10px;
    color: var(--slate-900);
    font-weight: 700;
    text-align: center;
}
.process-step p {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.55;
}
.process-step ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.process-step ul li {
    font-size: 12.5px;
    color: var(--slate-500);
    line-height: 1.5;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}
.process-step ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ===== MARKETING APPROACH (new) ===== */
.approach {
    padding: 72px 5%;
    background: linear-gradient(170deg, var(--teal-900) 0%, var(--slate-900) 100%);
    color: var(--white);
}
.approach-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.approach h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: -0.3px;
}
.approach h2 .highlight { color: var(--primary-light); }
.approach .subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 50px;
    max-width: 600px;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.approach-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s;
}
.approach-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(153,246,228,0.2);
}
.approach-card .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(153,246,228,0.12);
    color: var(--primary-light);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 18px;
}
.approach-card h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.approach-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}
.approach-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}
.approach-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.approach-card ul li {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}
.approach-card ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
}

/* ===== AI VISIBILITY FOUNDATION ===== */
.ai-foundation {
    padding: 72px 5%;
    background: linear-gradient(170deg, var(--slate-900) 0%, var(--teal-900) 100%);
    color: var(--white);
}
.ai-foundation-inner {
    max-width: 900px;
    margin: 0 auto;
}
.ai-foundation .section-label { color: var(--primary-light); }
.ai-foundation .section-label .line { background: var(--primary-light); }
.ai-foundation h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: -0.3px;
}
.ai-foundation .badge-line {
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 13px;
    margin-top: 8px;
    margin-bottom: 32px;
}
.ai-foundation h3 {
    font-size: 0.95rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    margin-bottom: 20px;
    font-weight: 700;
}
.ai-foundation ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 36px;
    counter-reset: pillar;
}
.ai-foundation ol li {
    font-size: 15px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    counter-increment: pillar;
}
.ai-foundation ol li::before {
    content: counter(pillar);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(153,246,228,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-light);
}
.ai-foundation h4 {
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.ai-foundation > .ai-foundation-inner > ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

/* ===== ROI SECTION ===== */
.roi {
    padding: 72px 5%;
    background: var(--white);
}
.roi-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.roi h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.roi .subtitle {
    text-align: center;
    color: var(--slate-500);
    font-size: 1rem;
    margin-bottom: 56px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.roi-intro {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}
.roi-intro p {
    font-size: 16px;
    color: var(--slate-700);
    line-height: 1.8;
    margin-bottom: 16px;
}
.roi-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.roi-case {
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 18px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.roi-case:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}
.roi-case-badge {
    display: inline-block;
    background: var(--teal-50);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.roi-case h4 {
    font-size: 1.1rem;
    color: var(--slate-900);
    margin-bottom: 12px;
}
.roi-case p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.65;
    margin-bottom: 16px;
}
.roi-breakdown {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}
.roi-breakdown li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: var(--slate-600);
    line-height: 1.55;
    padding: 6px 0;
    border-bottom: 1px solid var(--slate-100);
}
.roi-breakdown li:last-child { border-bottom: none; }
.roi-breakdown li::before {
    content: "";
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 7px;
}
.roi-breakdown li strong {
    color: var(--slate-700);
    min-width: 115px;
    flex-shrink: 0;
}
.roi-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.roi-metric {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}
.roi-metric-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}
.roi-metric-label {
    font-size: 11px;
    color: var(--slate-500);
    margin-top: 2px;
}
.roi-multiplier {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--teal-600));
    border-radius: 12px;
    padding: 16px;
    color: var(--white);
}
.roi-multiplier-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
}
.roi-multiplier-label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}
.roi-formula {
    max-width: 780px;
    margin: 0 auto;
    background: var(--slate-900);
    border-radius: 18px;
    padding: 40px 36px;
    color: var(--white);
}
.roi-formula h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}
.roi-formula p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 16px;
}
.roi-formula .formula-highlight {
    display: block;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-light);
    padding: 18px;
    background: rgba(153,246,228,0.08);
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(153,246,228,0.15);
}

/* ===== COST OF INACTION ===== */
.inaction {
    padding: 72px 5%;
    background: linear-gradient(170deg, #1a0a0a 0%, var(--slate-900) 100%);
    color: var(--white);
}
.inaction-inner {
    max-width: 900px;
    margin: 0 auto;
}
.inaction .section-label { color: #f87171; }
.inaction .section-label .line { background: #f87171; }
.inaction h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}
.inaction h2 .red { color: #f87171; }
.inaction-narrative p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    margin-bottom: 20px;
}
.inaction-narrative strong {
    color: var(--white);
}
.inaction-narrative em {
    color: rgba(255,255,255,0.9);
    font-style: italic;
}
.inaction-costs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0;
}
.inaction-cost {
    background: rgba(248,113,113,0.08);
    border: 1px solid rgba(248,113,113,0.15);
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.inaction-cost-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(248,113,113,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f87171;
    font-size: 16px;
}
.inaction-cost h5 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 4px;
}
.inaction-cost p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
    margin: 0;
}
.inaction-cta {
    text-align: center;
    margin-top: 40px;
}
.inaction-cta p {
    font-size: 17px;
    color: var(--white);
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 20px;
}
.inaction-cta a {
    display: inline-block;
    padding: 14px 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}
.inaction-cta a:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(15,118,110,0.3);
    transform: translateY(-1px);
}

/* ===== PRICING ===== */
.pricing {
    padding: 72px 5%;
    background: var(--slate-50);
}
.pricing h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 50px;
    letter-spacing: -0.3px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border: 2px solid var(--slate-200);
    border-radius: 18px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    position: relative;
}
/* Subgrid alignment for pricing cards inside .pricing-grid */
.pricing-grid > .pricing-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 14;
    align-content: start;
}
/* 5-row variant for pages with fewer sections (e.g. AI Receptionist) */
.pricing-grid.pricing-rows-5 > .pricing-card {
    grid-row: span 5;
}
.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}
/* Featured / Most Popular card */
.pricing-card-featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(0,166,126,0.15);
    transform: scale(1.03);
    z-index: 2;
    padding-top: 44px;
}
.pricing-card-featured:hover {
    box-shadow: 0 16px 48px rgba(0,166,126,0.20);
    border-color: var(--primary);
    transform: scale(1.03) translateY(-2px);
}
.pricing-card-featured::before {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 5px 20px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
}
.pricing-why-growth {
    font-size: 12.5px;
    color: var(--slate-600);
    line-height: 1.6;
    padding: 16px 22px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
    border: 1px solid var(--teal-100);
    border-radius: 14px;
}
.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--slate-900);
    letter-spacing: -0.2px;
}
.pricing-card h3 .price {
    color: var(--primary);
    display: block;
    margin-top: 4px;
    font-size: 1.15rem;
}
.pricing-purpose {
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
    border: 1px solid var(--teal-100);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 22px;
}
.pricing-purpose h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--slate-900);
}
.pricing-purpose p {
    font-size: 13.5px;
    color: var(--slate-500);
    margin-bottom: 10px;
    line-height: 1.5;
}
.pricing-purpose strong {
    font-size: 12.5px;
    display: block;
    margin-bottom: 6px;
    color: var(--slate-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-purpose ul li {
    font-size: 13px;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
    color: var(--slate-500);
}
.pricing-purpose ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--primary);
}
.pricing-bestfor {
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
    border: 1px solid var(--teal-100);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 22px;
}
.pricing-bestfor strong {
    font-size: 12.5px;
    display: block;
    margin-bottom: 6px;
    color: var(--slate-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-bestfor ul li {
    font-size: 13px;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
    color: var(--slate-500);
}
.pricing-bestfor ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--primary);
}
.pricing-section-title {
    font-size: 12.5px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 10px;
    color: var(--slate-900);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-card > ul li,
.pricing-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 7px;
    color: var(--slate-500);
    line-height: 1.45;
}
.pricing-card > ul li::before,
.pricing-section ul li::before {
    content: "";
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 7px;
}
.pricing-section .pricing-section-title {
    margin-top: 0;
}
.pricing-card-footer {
    margin-top: auto;
    padding-top: 24px;
}
.pricing-btn {
    display: block;
    text-align: center;
    padding: 13px 0;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14.5px;
    transition: all 0.3s;
}
.pricing-btn:hover { background: var(--primary-dark); box-shadow: 0 4px 12px rgba(15,118,110,0.25); }
.pricing-note {
    font-size: 12.5px;
    color: var(--slate-700);
    font-style: normal;
    padding: 14px 18px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: 10px;
    line-height: 1.6;
    margin-top: 10px;
}
.pricing-note-heading {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate-900);
    margin-bottom: 6px;
}

/* ===== AUDIT FORM ===== */
.audit {
    padding: 72px 5%;
    background: var(--white);
}
.audit-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.audit h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.audit > .audit-inner > p {
    font-size: 15px;
    color: var(--slate-500);
    margin-bottom: 32px;
}
.audit-form input, .audit-form select {
    display: block;
    width: 100%;
    padding: 13px 18px;
    margin-bottom: 10px;
    border: 1px solid var(--slate-300);
    border-radius: 10px;
    font-size: 14.5px;
    font-family: 'DM Sans', sans-serif;
    color: var(--slate-700);
    transition: border-color 0.3s;
    background: var(--slate-50);
}
.audit-form input:focus, .audit-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(15,118,110,0.08);
}
.audit-form button {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s;
    margin-top: 6px;
}
.audit-form button:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(15,118,110,0.25);
}

/* ===== FAQ ===== */
.faq {
    padding: 72px 5%;
    background: var(--slate-50);
}
.faq-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
.faq h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}
.faq h2 .highlight { color: var(--primary); }
.faq-item {
    border-bottom: 1px solid var(--slate-100);
    padding: 16px 0;
    cursor: pointer;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-900);
}
.faq-question .arrow {
    font-size: 16px;
    transition: transform 0.3s;
    color: var(--primary);
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 12px;
}
.faq-item.open .arrow {
    transform: rotate(180deg);
}
.faq-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    font-size: 14px;
    border: 1px solid var(--slate-100);
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
    padding: 72px 5%;
    background: var(--white);
}
.blog-preview h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 50px;
    letter-spacing: -0.3px;
}
.blog-preview h2 .highlight { color: var(--primary); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--slate-100);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
}
.blog-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--teal-800), var(--slate-900));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}
.blog-card-body {
    padding: 22px;
}
.blog-card-date {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}
.blog-card-body h3 {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 14px;
    color: var(--slate-900);
    letter-spacing: -0.2px;
}
.blog-card-body a {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}
.blog-card-body a:hover { color: var(--primary-dark); }

/* ===== PODCAST CARDS ===== */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.podcast-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
}
.podcast-card:hover {
    border-color: rgba(94,234,212,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.podcast-card-featured {
    border-color: var(--primary);
    background: rgba(94,234,212,0.08);
}
.podcast-card-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
    align-self: flex-start;
}
.podcast-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.podcast-card-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    width: fit-content;
}
.podcast-card-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.podcast-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 3px;
    line-height: 1.3;
}
.podcast-card-guest {
    font-size: 12px;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 6px;
}
.podcast-card p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
    margin-bottom: 8px;
}
.podcast-card-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
    margin-top: auto;
}
.podcast-card-topics span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.podcast-card-listen {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.podcast-card-listen:hover {
    color: var(--white);
}
@media (max-width: 900px) {
    .podcast-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
    .podcast-card { flex-direction: column; }
    .podcast-card-img { width: 100%; height: auto; aspect-ratio: 1 / 1; }
}

.blog-explore {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 13px 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14.5px;
    transition: all 0.3s;
}
.blog-explore:hover { background: var(--primary-dark); box-shadow: 0 4px 12px rgba(15,118,110,0.25); }

/* ===== NARRATIVE SECTIONS ===== */
.narrative-section {
    padding: 80px 5%;
}
.narrative-dark {
    background: var(--slate-900);
}
.narrative-light {
    background: var(--white);
}
.narrative-inner {
    max-width: 800px;
    margin: 0 auto;
}
.narrative-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.3;
}
.narrative-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.75);
}
.narrative-light .narrative-body p {
    color: var(--slate-600);
}
.narrative-kicker {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem !important;
    color: var(--primary-light) !important;
    margin-top: 32px !important;
    text-align: center;
}
.narrative-light .narrative-kicker {
    color: var(--slate-900) !important;
}
.narrative-image {
    margin-top: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.narrative-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ===== OUTCOME BLOCKS (How It Works) ===== */
.outcome-blocks {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.outcome-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.outcome-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--teal-800));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
}
.outcome-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}
.outcome-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}
.outcome-result {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-light);
    padding: 12px 16px;
    background: rgba(94,234,212,0.08);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    margin-top: 8px;
}

/* ===== SERVICES TRIO ===== */
.services-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-outcome-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 18px;
    padding: 36px 28px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-outcome-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.service-outcome-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1;
}
.service-outcome-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--slate-900);
    margin-bottom: 12px;
}
.service-outcome-card p {
    font-size: 14.5px;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 16px;
}
.service-outcome-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.service-outcome-link:hover {
    color: var(--teal-900);
}
@media (max-width: 768px) {
    .services-trio { grid-template-columns: 1fr; }
    .outcome-block { flex-direction: column; }
    .narrative-heading { font-size: 1.5rem; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary), var(--teal-800));
    text-align: center;
    color: var(--white);
}
.cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: -0.3px;
}
.cta-banner p {
    font-size: 16px;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.85);
}
.cta-banner a {
    display: inline-block;
    padding: 14px 36px;
    background: var(--white);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}
.cta-banner a:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.15); transform: translateY(-1px); }

/* ===== FOOTER ===== */
.footer {
    padding: 60px 5% 30px;
    background: var(--slate-900);
    color: rgba(255,255,255,0.7);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-logo .logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.footer-logo .logo-text span { color: var(--primary-light); }
.footer-logo .logo-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
}
.footer-logo p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}
.footer h4 {
    font-size: 14px;
    margin-bottom: 18px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary-light); }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.footer-contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(153,246,228,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 16px;
    flex-shrink: 0;
}
.footer-contact-item strong {
    display: block;
    font-size: 13px;
    color: var(--white);
}
.footer-contact-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 22px;
    background: #0A66C2;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.linkedin-btn:hover {
    background: #004182;
    transform: translateY(-1px);
}
.footer-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 8px 18px;
    background: #0A66C2;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}
.footer-linkedin:hover {
    background: #004182;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border-bottom: 1px solid var(--slate-100);
    }
    .hamburger { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner,
    .features-inner,
    .faq-inner,
    .origin-grid,
    .founder-inner { grid-template-columns: 1fr; }
    .included-grid,
    .pricing-grid,
    .blog-grid,
    .approach-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
    .roi-cases { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 56px; }
    .inaction-costs { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .glance-grid { grid-template-columns: 1fr; }
    .pain-points-inner[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .process-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .process-timeline::before { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .diff-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .pillar-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ===== SERVICES OVERVIEW GRID ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 18px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}
.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    background: var(--teal-50);
    color: var(--primary);
}
.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--slate-900);
    letter-spacing: -0.2px;
}
.service-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}
.service-card .service-btn {
    display: block;
    text-align: center;
    padding: 11px 0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    margin-top: auto;
}
.service-btn.primary, .service-btn-primary {
    background: var(--primary);
    color: var(--white);
}
.service-btn.primary:hover, .service-btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(15,118,110,0.25);
}
.service-btn.outline, .service-btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.service-btn.outline:hover, .service-btn-outline:hover {
    background: var(--teal-50);
}

/* ===== FEATURED SERVICE CARD ===== */
.service-card.service-card-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--teal-50) 0%, #f0fdfa 50%, var(--white) 100%);
    border: 2px solid var(--primary);
    padding: 36px 36px 32px;
    position: relative;
    box-shadow: 0 4px 24px rgba(15,118,110,0.08);
}
.service-card.service-card-featured:hover {
    box-shadow: 0 8px 36px rgba(15,118,110,0.14);
    transform: translateY(-2px);
}
.service-card-featured-badge {
    position: absolute;
    top: -1px; right: 32px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 0 0 10px 10px;
}
.service-card.service-card-featured h3 {
    font-size: 1.3rem;
    letter-spacing: -0.3px;
}
.service-card.service-card-featured p {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .service-card.service-card-featured { padding: 28px 22px 24px; }
    .service-card-featured-badge { right: 20px; }
}

/* ===== PAIN POINTS ===== */
.pain-points {
    padding: 72px 5%;
    background: var(--white);
}
.pain-points-inner {
    max-width: 900px;
    margin: 0 auto;
}
.pain-points h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.pain-points h2 .highlight { color: var(--primary); }
.pain-points > .pain-points-inner > p {
    font-size: 16px;
    color: var(--slate-500);
    margin-bottom: 40px;
    line-height: 1.8;
}
.pain-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}
.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 14px;
    padding: 20px 24px;
    transition: all 0.3s;
}
.pain-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.pain-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(248,113,113,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f87171;
    font-size: 16px;
}
.pain-item p {
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.65;
}

/* ===== SOLUTION PILLARS ===== */
.pillars {
    padding: 72px 5%;
    background: var(--slate-50);
}
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.pillar-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 18px;
    padding: 36px 28px;
    transition: box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}
.pillar-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
}
.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--slate-900);
}
.pillar-card .challenge {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 16px;
    line-height: 1.6;
    font-style: italic;
}
.pillar-card .solution {
    font-size: 14px;
    color: var(--slate-700);
    margin-bottom: 16px;
    line-height: 1.6;
}
.pillar-card h4 {
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate-900);
    margin-bottom: 10px;
    font-weight: 700;
}
.pillar-card ul li {
    font-size: 13px;
    color: var(--slate-500);
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.pillar-card ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--primary);
}
.pillar-card ul {
    flex: 1;
}
.pillar-card .pillar-result {
    margin-top: auto;
    padding: 14px 18px;
    background: var(--teal-50);
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 600;
}
.pillar-card .result {
    margin-top: auto;
    padding: 14px 18px;
    background: var(--teal-50);
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 600;
}

/* ===== DFY / DWY MODELS ===== */
.models {
    padding: 72px 5%;
    background: var(--white);
}
.models-inner {
    max-width: 900px;
    margin: 0 auto;
}
.models h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.models .subtitle {
    text-align: center;
    color: var(--slate-500);
    margin-bottom: 50px;
}
.model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.model-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 18px;
    padding: 36px 28px;
}
.model-card h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--slate-900);
}
.model-card .model-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.model-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.65;
    margin-bottom: 16px;
}
.model-card ul li {
    font-size: 13.5px;
    color: var(--slate-700);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.model-card ul li::before {
    content: "✓";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

/* ===== COMPLIANCE ===== */
.compliance {
    padding: 72px 5%;
    background: linear-gradient(170deg, var(--slate-900) 0%, var(--teal-900) 100%);
    color: var(--white);
}
.compliance-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.compliance h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.compliance .subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 48px;
    max-width: 720px;
    line-height: 1.8;
}
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.compliance-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(153,246,228,0.15);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;
}
.compliance-card:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(153,246,228,0.3);
}
.compliance-card h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.compliance-card h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
}
.compliance-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    padding: 80px 5%;
    background: var(--teal-50);
}
.testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.testimonial blockquote {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--slate-700);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial cite {
    font-style: normal;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}
.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
}
.testimonial-stat {
    text-align: center;
}
.testimonial-stat .val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.testimonial-stat .label {
    font-size: 13px;
    color: var(--slate-500);
}

/* ===== FEATURE CARDS (AI Receptionist etc) ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 16px;
    padding: 32px 26px;
    transition: all 0.3s;
}
.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
}
.feature-card h4 {
    font-size: 1.05rem;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.feature-card .how {
    font-size: 13.5px;
    color: var(--slate-500);
    margin-bottom: 10px;
    line-height: 1.6;
}
.feature-card .why {
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 600;
}

/* ===== ADD-ONS ===== */
.addons {
    padding: 60px 5% 100px;
    background: var(--slate-50);
}
.addons-inner {
    max-width: 900px;
    margin: 0 auto;
}
.addons h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--slate-900);
}
.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.addon-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 14px;
    padding: 28px 22px;
}
.addon-card h4 {
    font-size: 1rem;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.addon-card p {
    font-size: 13.5px;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 12px;
}
.addon-card .addon-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 900px) {
    .service-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pillar-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .compliance-grid { grid-template-columns: 1fr; }
    .model-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .addon-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testimonial-stats { flex-direction: column; gap: 20px; }
    .page-hero { padding: 90px 5% 40px; }
    .page-hero h1 { font-size: 2rem; }
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
    padding: 140px 5% 60px;
    background: linear-gradient(170deg, var(--slate-900) 0%, var(--teal-900) 100%);
    text-align: center;
    color: var(--white);
}
.page-hero-inner {
    max-width: 780px;
    margin: 0 auto;
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.page-hero h1 .highlight {
    background: linear-gradient(90deg, #5eead4, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

/* ===== CTA BANNER INNER ===== */
.cta-banner-inner {
    max-width: 700px;
    margin: 0 auto;
}

/* ===== APPROACH NUMBER (alias for step-num) ===== */
.approach-card .approach-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(153,246,228,0.15);
    color: var(--primary-light);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 18px;
}

/* ===== FEATURE HOW / WHY (AI Receptionist page) ===== */
.feature-how {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.65;
    margin-bottom: 8px;
}
.feature-why {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.65;
}

/* ===== OUR TEAM (About page) ===== */
.our-team {
    padding: 80px 5%;
    background: var(--white);
    text-align: center;
}
.our-team h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}
.our-team p {
    font-size: 16px;
    color: var(--slate-500);
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BOOK PAGE TEXTAREA ===== */
.audit-form textarea {
    display: block;
    width: 100%;
    padding: 13px 18px;
    margin-bottom: 10px;
    border: 1px solid var(--slate-300);
    border-radius: 10px;
    font-size: 14.5px;
    font-family: 'DM Sans', sans-serif;
    color: var(--slate-700);
    transition: border-color 0.3s;
    background: var(--slate-50);
    resize: vertical;
    min-height: 100px;
}
.audit-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(15,118,110,0.08);
}

/* ===== BLOG FILTER TAGS ===== */
.blog-filter-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-500);
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
    cursor: pointer;
}
.blog-filter-tag:hover,
.blog-filter-tag.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ===== PILLAR CARD IMAGES ===== */
.pillar-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.pillar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== SERVICE ICON (home page strip) ===== */
.service-label .service-icon {
    font-size: 18px;
    margin-right: 4px;
}

/* ===== FAQ ACCORDION (AI Receptionist) ===== */
.faq-item summary {
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item[open] summary span:last-child {
    transform: rotate(45deg);
}
.faq-item summary:hover {
    background: var(--slate-50);
}

/* ===== COMPARISON TABLE RESPONSIVE ===== */
.comparison-table-wrap table td,
.comparison-table-wrap table th {
    border-bottom: 1px solid var(--slate-100);
}
.comparison-table-wrap table tr:last-child td {
    border-bottom: none;
}

/* ===== RESPONSIVE: AI RECEPTIONIST SECTIONS ===== */
@media (max-width: 900px) {
    .inaction-costs[style*="repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .approach-grid[style*="repeat(4"] {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin: 0 auto;
    }
    .comparison-table-wrap {
        margin: 0 -5%;
        padding: 0 5%;
    }
}
@media (max-width: 600px) {
    .inaction-costs[style*="repeat(4"] {
        grid-template-columns: 1fr !important;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ====================================================
   SERVICE PAGE VISUAL REVAMP COMPONENTS
   ==================================================== */

/* ===== SPLIT SECTION (image + text side by side) ===== */
.svc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.svc-split.reverse { direction: rtl; }
.svc-split.reverse > * { direction: ltr; }
.svc-split-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.svc-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== STAT COUNTERS (inline stats row) ===== */
.svc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.svc-stat {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}
.svc-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
}
.svc-stat-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
}
.svc-stat-label {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.45;
}

/* ===== ICON BOX GRID (visual feature cards with large icons) ===== */
.svc-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.svc-icon-box {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 18px;
    padding: 32px 26px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.svc-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--teal-600));
    opacity: 0;
    transition: opacity 0.3s;
}
.svc-icon-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
    border-color: var(--primary-light);
}
.svc-icon-box:hover::before { opacity: 1; }
.svc-icon-box-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.svc-icon-box-icon.teal   { background: var(--teal-50); }
.svc-icon-box-icon.blue   { background: var(--blue-50); }
.svc-icon-box-icon.green  { background: rgba(16,185,129,0.08); }
.svc-icon-box-icon.warm   { background: rgba(251,146,60,0.08); }
.svc-icon-box-icon.purple { background: rgba(139,92,246,0.08); }
.svc-icon-box-icon.rose   { background: rgba(244,63,94,0.08); }
.svc-icon-box h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--slate-900);
    margin-bottom: 10px;
}
.svc-icon-box p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ===== GRADIENT PANEL (tinted info block) ===== */
.svc-gradient-panel {
    border-radius: 20px;
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
}
.svc-gradient-panel h3 {
    margin-bottom: 12px;
}
.svc-gradient-panel p {
    margin-bottom: 0;
}
.svc-gradient-panel.teal {
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
    border: 1px solid var(--teal-100);
}
.svc-gradient-panel.dark {
    background: linear-gradient(170deg, var(--slate-900) 0%, var(--teal-900) 100%);
    color: var(--white);
}
.svc-gradient-panel.dark h3,
.svc-gradient-panel.dark h4 { color: var(--white); }
.svc-gradient-panel.dark p { color: rgba(255,255,255,0.75); }
.svc-gradient-panel.dark .svc-stat-val { color: var(--primary-light); }
.svc-gradient-panel.dark .svc-stat-label { color: rgba(255,255,255,0.6); }
.svc-gradient-panel.dark .svc-stat {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}
.svc-gradient-panel.dark .svc-stat:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(153,246,228,0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== PULL-QUOTE (testimonial style) ===== */
.svc-quote {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
}
.svc-quote blockquote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 500;
    color: var(--slate-900);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}
.svc-quote blockquote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.svc-quote cite {
    font-size: 14px;
    color: var(--slate-500);
    font-style: normal;
    font-weight: 500;
}

/* ===== CHECKLIST (visual tick list) ===== */
.svc-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.svc-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.65;
    margin-bottom: 14px;
}
.svc-checklist li::before {
    content: '\2713';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

/* ===== BENEFIT STRIP (horizontal cards) ===== */
.svc-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.svc-benefit {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
}
.svc-benefit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    border-color: var(--primary-light);
}
.svc-benefit-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.svc-benefit h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.svc-benefit p {
    font-size: 13.5px;
    color: var(--slate-500);
    line-height: 1.6;
}

/* ===== RESPONSIVE: SERVICE PAGE VISUAL COMPONENTS ===== */
@media (max-width: 900px) {
    .svc-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .svc-split.reverse { direction: ltr; }
    .svc-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .svc-icon-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .svc-benefits {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .svc-gradient-panel {
        padding: 32px 24px;
    }
}
@media (max-width: 600px) {
    .svc-stats {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}

/* ===== CURRENCY TOGGLE ===== */
.currency-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
}
.currency-toggle button {
    padding: 10px 14px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--slate-400);
    transition: all 0.2s;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.currency-toggle button:hover {
    color: var(--slate-700);
    background: var(--slate-50);
}
.currency-toggle button.active {
    background: var(--primary);
    color: var(--white);
}

/* ===== ROI CALCULATOR ===== */
.roi-calculator {
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
    border: 2px solid var(--teal-100);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.roi-calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}
.roi-calc-field label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--slate-700);
    margin-bottom: 8px;
}
.roi-calc-field input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--slate-200);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--slate-900);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.roi-calc-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
}
.roi-calc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}
.roi-calc-result {
    background: linear-gradient(170deg, var(--slate-900) 0%, var(--teal-900) 100%);
    border-radius: 16px;
    padding: 24px 12px;
    overflow: hidden;
    min-width: 0;
}
.roi-calc-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.roi-calc-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 600px) {
    .roi-calc-inputs { grid-template-columns: 1fr; }
    .roi-calc-results { grid-template-columns: 1fr; max-width: 260px; margin: 0 auto; }
    .roi-calculator { padding: 32px 24px; }
    .currency-toggle { bottom: 12px; right: 12px; }
}

/* ===== HERO SPLIT LAYOUT (HOMEPAGE) ===== */
.hero-split {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 92vh;
    padding: 130px 5% 80px;
    background: linear-gradient(170deg, var(--teal-50) 0%, var(--white) 40%, var(--blue-50) 100%);
}
.hero-split::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(204,251,241,0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(219,234,254,0.4) 0%, transparent 60%);
    pointer-events: none;
}
.hero-split-content {
    position: relative;
    z-index: 1;
}
.hero-split-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-split-content h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-split-content .hero-tagline {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.8;
    color: var(--slate-500);
    margin-bottom: 12px;
}
.hero-split-content .hero-tagline strong { color: var(--primary); font-weight: 600; }
.hero-split-content .hero-micro {
    font-size: 13px;
    color: var(--slate-500);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-split-content .hero-micro .dot {
    width: 7px; height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero-split-img {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}
.hero-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 120px 5% 60px;
    }
    .hero-split-content .hero-micro { justify-content: center; }
    .hero-split-content .hero-buttons { justify-content: center; }
    .hero-split-img { max-width: 520px; margin: 0 auto; }
    .hero-split-img img { min-height: 280px; }
}

/* ===== HUMAN + AI SECTION ===== */
.human-ai {
    padding: 80px 5%;
    background: linear-gradient(170deg, var(--teal-900) 0%, var(--slate-900) 100%);
    color: var(--white);
}
.human-ai-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.human-ai-content .section-label { color: var(--primary-light); }
.human-ai-content .section-label .line { background: var(--primary-light); }
.human-ai-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.human-ai-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
}
.human-ai-content p strong { color: var(--primary-light); font-weight: 600; }
.human-ai-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.human-ai-pillar {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: background 0.3s;
}
.human-ai-pillar:hover {
    background: rgba(255,255,255,0.1);
}
.human-ai-pillar-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}
.human-ai-pillar h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.human-ai-pillar p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .human-ai-inner { grid-template-columns: 1fr; text-align: center; }
    .human-ai-pillars { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .human-ai-pillars { grid-template-columns: 1fr; max-width: 300px; }
}

/* ===== BLOG ARTICLE ===== */
.blog-back {
    max-width: 740px;
    margin: 0 auto;
    padding: 24px 24px 0;
}
.blog-back a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s;
}
.blog-back a:hover { opacity: 0.7; }
.blog-article {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.blog-article-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-500);
}
.blog-article-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    background: var(--teal-50);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}
.blog-article-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 1px solid var(--slate-100);
}
.blog-article h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--slate-900);
    margin: 40px 0 16px;
    letter-spacing: -0.2px;
}
.blog-article h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 28px 0 12px;
}
.blog-article p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--slate-700);
    margin-bottom: 20px;
}
.blog-article ul {
    margin: 16px 0 24px 0;
    list-style: none;
}
.blog-article ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--slate-700);
    margin-bottom: 8px;
    padding-left: 28px;
    position: relative;
}
.blog-article ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: var(--white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    top: 4px;
}
.blog-article blockquote {
    background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
    border-left: 4px solid var(--primary);
    padding: 24px 28px;
    border-radius: 0 14px 14px 0;
    margin: 32px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--slate-900);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.5;
}
.blog-article strong { color: var(--slate-900); font-weight: 700; }
.blog-article-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--slate-100);
}
.blog-article-hashtags span {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    background: var(--teal-50);
    padding: 4px 12px;
    border-radius: 50px;
}
@media (max-width: 600px) {
    .blog-article { padding: 0 16px 60px; }
    .blog-back { padding: 16px 16px 0; }
}

/* ===== HOMEPAGE PAIN POINTS GRID RESPONSIVE ===== */
@media (max-width: 900px) {
    section[aria-label="Common challenges for medical practices"] div[style*="grid-template-columns:repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    section[aria-label="Common challenges for medical practices"] div[style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr !important;
    }
}

/* ===== STAT FOOTNOTES ===== */
.stat-footnote {
    font-size: 11px;
    font-style: italic;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
    line-height: 1.4;
}
.stat-footnote-light {
    font-size: 11px;
    font-style: italic;
    color: var(--slate-400);
    margin-top: 4px;
    line-height: 1.4;
}
.svc-stat .stat-footnote-light {
    font-size: 10px;
    margin-top: 2px;
}

/* ===== AUDIT PRICING GRID RESPONSIVE ===== */
@media (max-width: 900px) {
    section[style*="grid-template-columns:repeat(3"] > div[style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr !important;
        max-width: 440px;
        margin: 0 auto;
    }
}
