/* ============================================================
   INDIAGRAM — Design System
   Clean, warm, professional. Trust-first.
   Cialdini: focal attention on CTA, warm = trust
   Hadnagy: pretext of legitimate startup, reduce threat detection
   ============================================================ */

:root {
    /* Warm neutrals */
    --bg-primary: #FAFAF8;
    --bg-secondary: #F3F4F6;
    --bg-card: #FFFFFF;
    --bg-dark: #111827;

    /* Brand */
    --brand-saffron: #E8590C;
    --brand-saffron-light: #FFF7ED;
    --brand-saffron-hover: #C2410C;
    --brand-green: #059669;
    --brand-green-light: #ECFDF5;

    /* Text */
    --text-primary: #1A1A1A;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --text-inverse: #FFFFFF;

    /* Borders */
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);

    /* Layout */
    --max-width: 640px;
    --nav-width: 300px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html {
    background-color: var(--bg-primary);
    min-height: 100dvh;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    min-height: 100dvh;
    height: 100dvh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollable pages (homepage, boost, blog) */
body.scrollable {
    overflow-y: auto;
    height: auto;
    min-height: 100dvh;
}
body.scrollable .main-frame {
    overflow: visible;
    flex: none;
}
body.scrollable .content-layer {
    overflow: visible;
    flex: none;
}

/* Hide scrollbars but keep functionality */
* { scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { display: none; }

/* ============================================================
   TYPOGRAPHY (DM Sans headlines, Inter body)
   Cialdini Authority: typography anchors to trusted SaaS brands
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

a { color: var(--brand-saffron); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-saffron-hover); }

/* ============================================================
   TOP HEADER — Clean, confident, minimal
   Hadnagy: pretext of real company, not underground tool
   ============================================================ */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 100;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-decoration: none;
    display: inline-block;
}
.logo span { color: var(--brand-saffron); }

.hamburger {
    background: none;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 9px;
    transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--border-medium); }
.hamburger span {
    display: block;
    height: 2px;
    width: 18px;
    background: var(--text-primary);
    border-radius: 2px;
}

/* ============================================================
   NAVIGATION OVERLAY
   ============================================================ */
.nav-overlay {
    position: fixed;
    top: 0; right: -100%;
    width: var(--nav-width);
    max-width: 85vw;
    height: 100%;
    background: var(--bg-card);
    border-left: 1px solid var(--border-light);
    z-index: 9999;
    padding: 1.5rem;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-overlay.open { right: 0; }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 9998;
    display: none;
    backdrop-filter: blur(2px);
}
.nav-backdrop.show { display: block; }

.nav-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    float: right;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}
.nav-close:hover { color: var(--text-primary); }

.nav-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    clear: both;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.nav-links li a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.55rem 0.8rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active {
    background: var(--brand-saffron-light);
    color: var(--brand-saffron);
    padding-left: 1rem;
}

.nav-section-title {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 1rem 0.8rem 0.25rem;
    font-weight: 700;
}

/* ============================================================
   MAIN FRAME — No neon border. Clean container.
   Hadnagy: reduced visual threat signals
   ============================================================ */
.main-frame {
    flex: 1;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
}

/* ============================================================
   CONTENT LAYER
   ============================================================ */
.content-layer {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 2rem;
}
.content-layer::-webkit-scrollbar { display: none; }

/* ============================================================
   HEADLINE — Clean, weighted, no neon underline
   ============================================================ */
.headline {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.subheadline {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================
   SERVICES GRID & CARDS
   Cialdini Commitment: each card click is a micro-yes
   ============================================================ */
.services-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 0.75rem;
    width: 100%;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.2rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}
.service-card:hover {
    border-color: var(--brand-saffron);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-icon {
    width: 32px;
    height: 32px;
    fill: var(--text-secondary);
    transition: fill 0.2s;
}
.service-card:hover .service-icon {
    fill: var(--brand-saffron);
}

.service-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-align: center;
    transition: color 0.2s;
}
.service-card:hover .service-name {
    color: var(--brand-saffron);
}

.service-meta {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* Homepage larger cards */
.home-grid .service-card { padding: 1.5rem 1rem; }
.home-grid .service-icon { width: 38px; height: 38px; }
.home-grid .service-name { font-size: 0.95rem; }

/* ============================================================
   PLATFORM BADGES
   ============================================================ */
.platform-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-free {
    background: var(--brand-green-light);
    color: var(--brand-green);
    border: 1px solid rgba(5,150,105,0.2);
}

/* ============================================================
   INPUTS & BUTTONS
   Cialdini Focal Attention: CTA is the ONLY bold color element
   ============================================================ */
.neon-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border-medium);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.neon-input:focus {
    border-color: var(--brand-saffron);
    box-shadow: 0 0 0 3px rgba(232,89,12,0.1);
}
.neon-input::placeholder { color: var(--text-muted); }

.neon-button {
    width: 100%;
    padding: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    color: var(--text-inverse);
    background: var(--brand-saffron);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    /* Cialdini: subtle CTA pulse — only animation that matters */
    animation: ctaPulse 3s infinite;
}
.neon-button:hover {
    background: var(--brand-saffron-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232,89,12,0.25);
}
.neon-button:active { transform: translateY(0); }

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(232,89,12,0.2); }
    50%      { box-shadow: 0 4px 20px rgba(232,89,12,0.35); }
}

.input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* ============================================================
   BOOST PAGE
   Hadnagy Rapport: warm copy, trust before input
   ============================================================ */
.boost-rapport {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.boost-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.boost-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.bf-icon { font-size: 1rem; flex-shrink: 0; }

.boost-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.boost-desc strong { color: var(--brand-saffron); }
.boost-form { margin-bottom: 0.8rem; }
.boost-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ============================================================
   TIER SELECTOR
   Cialdini Anchoring: biggest tier first, visually prominent
   ============================================================ */
.tier-selector { margin-bottom: 0.5rem; }
.tier-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    font-weight: 600;
}
.tier-options {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}
.tier-option {
    flex: 1;
    cursor: pointer;
    position: relative;
}
.tier-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.tier-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.75rem 0.4rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    transition: all 0.2s;
}
.tier-option:hover .tier-card {
    border-color: var(--border-medium);
}
.tier-option.selected .tier-card {
    border-color: var(--brand-saffron);
    background: var(--brand-saffron-light);
    box-shadow: 0 0 0 3px rgba(232,89,12,0.08);
}
.tier-qty {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-saffron);
    line-height: 1;
}
.tier-name {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.tier-time {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
}
.tier-option.selected .tier-time { color: var(--brand-saffron); }

/* Anchoring: recommended tier */
.tier-option.recommended { transform: scale(1.03); }
.tier-option.recommended .tier-card {
    background: var(--brand-saffron-light);
    border-color: var(--brand-saffron);
}
.tier-badge {
    display: inline-block;
    background: var(--brand-saffron);
    color: var(--text-inverse);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: 0.3px;
}

/* ============================================================
   FORMS & GENERIC PAGE CONTENT
   ============================================================ */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.4rem; font-weight: 500; }
.form-hint  { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.3rem; }
.form-divider { text-align: center; color: var(--text-muted); margin: 1rem 0; font-size: 0.85rem; }
.form-link { color: var(--brand-saffron); font-weight: 600; }
.form-link:hover { text-decoration: underline; }

.auth-info { text-align: center; color: var(--text-muted); font-size: 0.85rem; }

.alert { padding: 0.9rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.9rem; }
.alert-error   { background: #FEF2F2; border: 1px solid #FECACA; color: #DC2626; }
.alert-success { background: var(--brand-green-light); border: 1px solid rgba(5,150,105,0.2); color: var(--brand-green); }

.page-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
.page-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}
.page-content p { margin-bottom: 1rem; }
.page-content a { color: var(--brand-saffron); text-decoration: underline; }

/* ============================================================
   BLOG / NEWS / TOOL / GAME / SHOP / FREEBIE / STAT CARDS
   ============================================================ */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.2rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
}
.blog-card:hover { border-color: var(--brand-saffron); box-shadow: var(--shadow-sm); }
.blog-card h3 { color: var(--text-primary); font-size: 1.05rem; margin-bottom: 0.4rem; }
.blog-card p  { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; }
.blog-card .blog-meta { font-size: 0.75rem; color: var(--brand-saffron); margin-bottom: 0.4rem; }

.news-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 0.6rem;
    text-decoration: none;
    transition: all 0.2s;
}
.news-card:hover { border-color: var(--brand-saffron); }
.news-card .news-icon { font-size: 2rem; flex-shrink: 0; }
.news-card h4 { color: var(--text-primary); font-size: 0.9rem; margin-bottom: 0.25rem; }
.news-card p  { color: var(--text-muted); font-size: 0.78rem; }
.news-tag { display: inline-block; background: var(--brand-saffron-light); color: var(--brand-saffron); font-size: 0.65rem; padding: 0.1rem 0.5rem; border-radius: var(--radius-full); margin-bottom: 0.35rem; font-weight: 700; text-transform: uppercase; }

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}
.tool-card:hover { border-color: var(--brand-saffron); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.tool-card .tool-icon { font-size: 2rem; }
.tool-card h4 { color: var(--text-primary); font-size: 0.9rem; }
.tool-card p  { color: var(--text-muted); font-size: 0.78rem; }

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}
.game-card:hover { border-color: var(--brand-saffron); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.game-card .game-icon { font-size: 2.5rem; }
.game-card h4 { color: var(--text-primary); font-size: 0.9rem; }
.game-card .game-reward { color: var(--brand-saffron); font-size: 0.78rem; font-weight: 700; }

.shop-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.2s;
}
.shop-card:hover { border-color: var(--brand-saffron); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.shop-card h4 { color: var(--text-primary); font-size: 0.95rem; }
.shop-card .shop-price { color: var(--brand-saffron); font-weight: 700; font-size: 1.1rem; }
.shop-card .shop-old-price { color: var(--text-muted); text-decoration: line-through; font-size: 0.85rem; }
.shop-card p  { color: var(--text-muted); font-size: 0.82rem; }
.shop-card .shop-tag { font-size: 0.7rem; background: #FEF2F2; color: #DC2626; padding: 0.15rem 0.5rem; border-radius: var(--radius-full); display: inline-block; font-weight: 700; }

.freebie-card {
    background: var(--brand-green-light);
    border: 1px solid rgba(5,150,105,0.15);
    border-radius: var(--radius);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    transition: all 0.2s;
}
.freebie-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.freebie-card .freebie-icon { font-size: 2rem; }
.freebie-card h4 { color: var(--text-primary); font-size: 0.9rem; }
.freebie-card p  { color: var(--text-secondary); font-size: 0.78rem; }
.freebie-claim { margin-top: 0.5rem; background: var(--brand-green); color: var(--text-inverse); border: none; border-radius: 8px; padding: 0.4rem 1rem; font-weight: 700; font-size: 0.8rem; cursor: pointer; }

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
}
.stat-card .stat-value { font-family: 'DM Sans', sans-serif; font-size: 2rem; color: var(--brand-saffron); font-weight: 800; }
.stat-card .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ============================================================
   ATOMIC ANSWER (homepage LLM extraction block)
   Visually secondary, crawlable, keyword-dense
   ============================================================ */
.hp-atomic-answer {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 480px;
    margin: 0.5rem auto 0;
    text-align: center;
}

/* ============================================================
   SEO PILLAR & SPOKE PAGES
   Shared styles for hub-and-spoke architecture pages
   ============================================================ */
.seo-hero {
    text-align: center;
    padding: 2.5rem 0;
    margin-bottom: 2rem;
}
.seo-hero h1 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.seo-atomic {
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.7;
    max-width: 500px;
    margin: 1rem auto;
    background: var(--bg-secondary);
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--brand-saffron);
    border-radius: var(--radius);
    font-size: 0.92rem;
}

.seo-section {
    margin-bottom: 2.5rem;
}
.seo-section--alt {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
}
.seo-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.seo-section h3 {
    font-weight: 700;
    margin: 1.5rem 0 1rem;
}
.seo-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.seo-section p:last-child { margin-bottom: 0; }
.seo-section p strong { color: var(--text-primary); }

/* Card grid (3-column on desktop) */
.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.seo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.seo-card h3 {
    color: var(--brand-saffron);
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
}
.seo-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.seo-card a {
    color: var(--brand-saffron);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
.seo-card a:hover { opacity: 0.8; }

/* Step lists */
.seo-steps {
    list-style: none;
    padding: 0;
}
.seo-step {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-card);
    border-left: 4px solid var(--brand-saffron);
    border-radius: var(--radius);
}
.seo-step:last-child { margin-bottom: 0; }
.seo-step strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}
.seo-step span { color: var(--text-secondary); font-size: 0.9rem; }

/* Timeline list */
.seo-timeline {
    list-style: none;
    padding: 0;
}
.seo-timeline li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}
.seo-timeline li:last-child { border-bottom: none; }
.seo-timeline li strong { color: var(--text-primary); }

/* FAQ accordion */
.seo-faq details {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
}
.seo-faq summary {
    padding: 0.9rem 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary .faq-icon { color: var(--text-muted); transition: transform 0.2s; }
.seo-faq details[open] summary .faq-icon { transform: rotate(45deg); }
.seo-faq .faq-body {
    padding: 0 1.1rem 0.9rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Tips grid */
.seo-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.seo-tip {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--brand-saffron);
}
.seo-tip h3 {
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
    color: var(--text-primary);
}
.seo-tip p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}

/* Related services list */
.seo-related {
    list-style: none;
    padding: 0;
}
.seo-related li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
    color: var(--text-secondary);
}
.seo-related li:last-child { border-bottom: none; }
.seo-related a {
    color: var(--brand-saffron);
    text-decoration: none;
    font-weight: 600;
}

/* CTA banner */
.seo-cta-banner {
    background: var(--brand-saffron);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}
.seo-cta-banner h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}
.seo-cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.seo-cta-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: white;
    color: var(--brand-saffron);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 700;
    transition: opacity 0.2s;
}
.seo-cta-btn:hover { opacity: 0.9; color: var(--brand-saffron); }
.seo-cta-btn--primary {
    background: var(--brand-saffron);
    color: white;
}
.seo-cta-btn--primary:hover { color: white; }
.seo-cta-btn--secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--brand-saffron);
}
.seo-cta-btn--secondary:hover { color: var(--brand-saffron); }
.seo-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.seo-cta-center {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .seo-hero h1 { font-size: 1.5rem; }
    .seo-grid { grid-template-columns: 1fr; }
    .seo-tips { grid-template-columns: 1fr; }
    .seo-cta-group { flex-direction: column; align-items: center; }
}

/* ============================================================
   FOOTER — Understated, trustworthy
   ============================================================ */
.site-footer {
    padding: 1.5rem 0 0.75rem;
    text-align: center;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.2rem;
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand-saffron); }

.footer-trust {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.footer-copy {
    color: var(--text-muted);
    font-size: 0.7rem;
    opacity: 0.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 359px) {
    body { padding: 0.75rem 0.75rem 0; }
    .main-frame { padding: 1.5rem 1rem 0; }
    .headline { font-size: 1.5rem; }
    .logo { font-size: 1.3rem; }
    .services-grid { gap: 0.5rem; }
    .tier-options { gap: 0.3rem; }
    .tier-card { padding: 0.6rem 0.3rem; }
    .tier-qty { font-size: 1.2rem; }
}

@media (min-width: 768px) {
    body { align-items: center; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
    .home-grid { grid-template-columns: repeat(3, 1fr); }
    .headline { font-size: 2rem; }
}

@media (min-width: 1024px) {
    :root { --max-width: 700px; }
    body { padding: 1.5rem 1.5rem 0; }
}

@media (min-width: 1200px) {
    :root { --max-width: 760px; }
    .home-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-height: 500px) and (orientation: landscape) {
    body { padding: 0.5rem; }
    .top-header { padding-bottom: 0.5rem; }
    .main-frame { padding: 0.75rem; }
    .headline { font-size: 1.4rem; margin-bottom: 0.75rem; }
}
