/* ============================================
   Purisaki® — Design System
   Premium Wellness Aesthetic
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
    /* Brand Colors */
    --color-primary: #1a3a5c;
    --color-primary-dark: #0f2640;
    --color-primary-light: #2a5a8c;
    --color-accent: #3b82f6;
    --color-accent-hover: #2563eb;
    --color-cta: #f59e0b;
    --color-cta-hover: #d97706;
    --color-cta-text: #1a1a1a;
    --color-success: #10b981;
    --color-warning: #f59e0b;

    /* Neutrals */
    --color-white: #ffffff;
    --color-off-white: #f8fafc;
    --color-light-gray: #f1f5f9;
    --color-mid-gray: #94a3b8;
    --color-dark-gray: #475569;
    --color-text: #1e293b;
    --color-text-light: #64748b;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0f2640 0%, #1a3a5c 50%, #1e4d7b 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    --gradient-cta: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(241,245,249,0.6) 100%);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-pad: 80px;
    --container-width: 1200px;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
}

p {
    margin-bottom: 1rem;
    color: var(--color-dark-gray);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 48px;
}

.text-center {
    text-align: center;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--color-cta-text);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
    color: var(--color-cta-text);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn .arrow {
    transition: transform var(--transition);
}
.btn:hover .arrow {
    transform: translateX(4px);
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
}

.site-header.scrolled .logo {
    color: var(--color-primary);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-cta);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-cta);
    transition: width var(--transition);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}
.nav-desktop a:hover {
    color: var(--color-white);
}

.site-header.scrolled .nav-desktop a {
    color: var(--color-dark-gray);
}
.site-header.scrolled .nav-desktop a:hover {
    color: var(--color-primary);
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--gradient-cta) !important;
    color: var(--color-cta-text) !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
}
.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}
.site-header.scrolled .hamburger span {
    background: var(--color-primary);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-primary-dark);
    padding: 80px 32px 32px;
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu a {
    display: block;
    padding: 14px 0;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a:hover {
    color: var(--color-cta);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}
.nav-overlay.active {
    opacity: 1;
}

/* ── HERO SECTION ── */
.hero {
    background: var(--gradient-hero);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--color-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-cta);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.hero-features .icon-check {
    width: 24px;
    height: 24px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 460px;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
}

.hero-rating {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.hero-rating .stars {
    color: #f59e0b;
    font-size: 1rem;
}

.hero-rating .rating-text {
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.9rem;
}

/* ── SUB-PAGE HERO ── */
.page-hero {
    background: var(--gradient-hero);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.7);
}
.page-hero .breadcrumb a:hover {
    color: var(--color-cta);
}

/* ── SECTIONS ── */
.section {
    padding: var(--section-pad) 0;
}

.section-alt {
    background: var(--color-off-white);
}

.section-dark {
    background: var(--color-primary-dark);
    color: var(--color-white);
}
.section-dark h2, .section-dark h3 {
    color: var(--color-white);
}
.section-dark p {
    color: rgba(255,255,255,0.75);
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--color-off-white);
    padding: 32px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark-gray);
}

.trust-item .trust-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
}

/* ── CARD GRID ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(99,102,241,0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    font-size: 0.95rem;
}

/* ── STEPS ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    font-family: var(--font-body);
}

.step h3 {
    margin-bottom: 10px;
}

/* ── REVIEWS ── */
.review-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 14px;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-dark-gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.review-author {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.review-location {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.review-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

/* ── INGREDIENTS ── */
.ingredient-card {
    display: flex;
    gap: 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition);
}

.ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(59,130,246,0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card.popular {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: scale(1.04);
}

.price-card.popular:hover {
    transform: scale(1.06);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card h3 {
    margin-bottom: 8px;
}

.price-supply {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-body);
    margin-bottom: 8px;
}

.price-per-unit {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* ── FAQ ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--color-off-white);
}

.faq-question .faq-toggle {
    font-size: 1.3rem;
    color: var(--color-accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

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

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-dark-gray);
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--gradient-hero);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--color-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* Countdown */
.countdown-wrap {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.cd-num {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    font-family: var(--font-body);
    min-width: 48px;
}

.cd-sep {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    margin: 0 4px;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    text-align: center;
    padding-top: 24px;
}

/* ── Content Page Styles ── */
.content-section {
    padding: 60px 0;
}

.content-body {
    max-width: 800px;
    margin: 0 auto;
}

.content-body h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.content-body h3 {
    margin-top: 30px;
    margin-bottom: 12px;
}

.content-body p {
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.content-body ul, .content-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.content-body ul li, .content-body ol li {
    margin-bottom: 8px;
    color: var(--color-dark-gray);
    list-style: disc;
}

.content-body ol li {
    list-style: decimal;
}

/* ── Two Column Content ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col-reverse {
    direction: rtl;
}
.two-col-reverse > * {
    direction: ltr;
}

.two-col img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ── Scroll Animations ── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ── Comparison Table ── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table thead th {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-body);
}

.comparison-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-light-gray);
    font-size: 0.95rem;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--color-off-white);
}

.comparison-table tbody tr:hover {
    background: rgba(59,130,246,0.05);
}

/* ── Inline CTA ── */
.inline-cta {
    background: linear-gradient(135deg, var(--color-off-white) 0%, rgba(59,130,246,0.05) 100%);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    border: 1px solid rgba(59,130,246,0.1);
}

.inline-cta h3 {
    margin-bottom: 12px;
}

.inline-cta p {
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-features {
        align-items: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-image {
        order: -1;
    }
    .hero-image img {
        max-width: 340px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .two-col, .two-col-reverse {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-desktop {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .nav-overlay {
        display: block;
    }
}

@media (max-width: 640px) {
    :root {
        --section-pad: 50px;
    }
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .page-hero {
        padding: 120px 0 40px;
    }
    .hero-image img {
        max-width: 280px;
    }
    .trust-items {
        gap: 24px;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }
    .price-card.popular {
        transform: scale(1);
    }
}
