/*
Theme Name: JSM Jump Start Marketing
Theme URI: https://jsmcorp.com/
Author: Greg Schnoor - Jump Start Marketing Inc.
Author URI: https://jsmcorp.com/
Description: A professional, SEO-optimized WordPress theme for Jump Start Marketing Inc. Custom-built for small business website design services. Features $50/month pricing, clean semantic HTML5, full Schema.org structured data, and complete on-page SEO optimization.
Version: 1.7.3
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jsm-theme
Tags: business, seo, clean, responsive, custom-logo, custom-menu, featured-images, threaded-comments, blog
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --navy:         #0B1F3A;
    --navy-deep:    #060f1e;
    --navy-mid:     #122845;
    --accent:       #F5A623;
    --accent-light: #FFD080;
    --accent-pale:  #FFF4DC;
    --teal:         #00B89C;
    --teal-dark:    #008A74;
    --sky:          #E8F4FF;
    --white:        #FFFFFF;
    --gray-50:      #F8F9FA;
    --gray-100:     #EEF0F3;
    --gray-200:     #DEE2E8;
    --gray-400:     #9AA3AF;
    --gray-600:     #5A6473;
    --gray-800:     #2C3340;
    --text:         #1A2332;
    --text-muted:   #5A6473;
    --font-head:    'Sora', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --radius:       12px;
    --radius-lg:    20px;
    --shadow:       0 4px 24px rgba(11,31,58,0.08);
    --shadow-lg:    0 12px 48px rgba(11,31,58,0.14);
    --container:    1140px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ============================================================
   SKIP LINK (accessibility + SEO)
   ============================================================ */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 4px;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--navy);
    font-weight: 700;
    border-radius: 4px;
}
.skip-link:focus { left: 4px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    line-height: 1.2;
    color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.9rem; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.entry-content h2,
.entry-content h3,
.entry-content h4 { margin: 1.5em 0 0.5em; }
.entry-content p { margin-bottom: 1.3em; font-size: 17px; line-height: 1.8; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: 1.2em; list-style: revert; }
.entry-content li { margin-bottom: 0.4em; }
.entry-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    margin: 1.5em 0;
    background: var(--accent-pale);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--gray-600);
}
.entry-content a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }
.entry-content a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.entry-content img { border-radius: var(--radius); margin: 1.5em 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.entry-content table th, .entry-content table td { padding: 10px 14px; border: 1px solid var(--gray-200); font-size: 14px; }
.entry-content table th { background: var(--navy); color: var(--white); font-family: var(--font-head); }
.entry-content table tr:nth-child(even) td { background: var(--gray-50); }
.entry-content code { background: var(--gray-100); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.entry-content pre { background: var(--navy); color: var(--white); padding: 20px; border-radius: var(--radius); overflow-x: auto; margin: 1.5em 0; }
.entry-content pre code { background: none; padding: 0; color: inherit; }
.entry-content hr { border: none; border-top: 1px solid var(--gray-200); margin: 2em 0; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--xs { padding: 40px 0; }

.label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}
.label--light { color: var(--accent-light); }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--navy-deep); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); color: var(--navy-deep); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* Cards */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card--navy { background: var(--navy); border-color: transparent; color: var(--white); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   TOP BAR
   ============================================================ */
.site-topbar {
    background: var(--navy-deep);
    padding: 9px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.site-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.topbar-tagline {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}
.topbar-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.18s;
    text-decoration: none;
}
.topbar-contact-link:hover { color: var(--accent-light); }
.topbar-contact-link svg { flex-shrink: 0; opacity: 0.7; }

/* Social icons divider */
.topbar-social {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.12);
}
.topbar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: rgba(255,255,255,0.55);
    transition: all 0.18s;
    text-decoration: none;
    flex-shrink: 0;
}
.topbar-social-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.topbar-social-link svg { display: block; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
    width: 44px; height: 44px;
    background: var(--accent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 18px; font-weight: 800;
    color: var(--navy-deep);
    flex-shrink: 0;
}
.logo-mark img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }

/* When a real custom logo image is used */
.logo-mark--image {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    padding: 0;
}
.logo-mark--image a,
.logo-mark--image .custom-logo-link { display: flex; align-items: center; }
.logo-mark--image .custom-logo {
    height: 100px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    border-radius: 0;
    display: block;
}
/* Hide the empty site-logo anchor WordPress sometimes outputs when custom logo is set */
.logo-mark--image .site-logo:not([href*="jsmcorp"]) { display: none; }
.logo-text strong { display: block; font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.1; }
.logo-text span { font-size: 11.5px; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* Primary Navigation */
.primary-navigation { display: flex; align-items: center; gap: 4px; }
.primary-navigation ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.primary-navigation ul li { position: relative; }
.primary-navigation ul li a {
    font-family: var(--font-head);
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.18s;
    display: block;
    white-space: nowrap;
}
.primary-navigation ul li a:hover,
.primary-navigation ul li.current-menu-item > a { color: var(--white); background: rgba(255,255,255,0.08); }
.primary-navigation ul li.nav-cta > a { background: var(--accent); color: var(--navy-deep); border-radius: 50px; padding: 9px 18px; font-weight: 700; }
.primary-navigation ul li.nav-cta > a:hover { background: var(--accent-light); color: var(--navy-deep); }
/* Standalone Get Started CTA — always visible, survives custom menus */
.nav-cta-btn {
    display: inline-flex; align-items: center;
    padding: 9px 20px;
    background: var(--accent); color: var(--navy-deep) !important;
    font-family: var(--font-head); font-size: 14px; font-weight: 700;
    border-radius: 50px; text-decoration: none;
    white-space: nowrap; flex-shrink: 0;
    transition: background 0.18s, transform 0.18s;
    margin-left: 8px;
}
.nav-cta-btn:hover { background: var(--accent-dark, #e09400); transform: translateY(-1px); }
@media (max-width: 900px) { .nav-cta-btn { display: none; } }

/* Dropdown */
.primary-navigation ul li ul {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 200px;
    flex-direction: column;
    gap: 0;
    z-index: 200;
}
.primary-navigation ul li:hover > ul { display: flex; }
.primary-navigation ul li ul li a { color: var(--text); font-size: 14px; padding: 10px 14px; border-radius: 8px; }
.primary-navigation ul li ul li a:hover { background: var(--gray-50); color: var(--navy); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.2s; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 100px 0 90px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 110% 40%, rgba(0,184,156,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at -10% 70%, rgba(245,166,35,0.08) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.3s;
}
/* Suppress decorative glow when a real image is present */
.hero--has-image::before { opacity: 0; }
/* Boost text readability over any background photo */
.hero--has-image h1,
.hero--has-image .hero-badge { text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.page-hero--has-image h1,
.page-hero--has-image p { text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    color: var(--accent-light);
    font-family: var(--font-head);
    font-size: 13px; font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)} }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--white); margin-bottom: 36px; line-height: 1.65; font-weight: 300; max-width: 520px; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 48px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 13.5px; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* Hero Pricing Card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.hero-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--teal) 100%);
}
.price-label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-head); margin-bottom: 8px; }
.price-display { display: flex; align-items: baseline; gap: 4px; margin: 8px 0 20px; }
.price-dollar { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--navy); margin-top: 8px; }
.price-amount { font-family: var(--font-head); font-size: 64px; font-weight: 800; color: var(--navy); line-height: 1; }
.price-per { font-size: 15px; color: var(--text-muted); font-weight: 300; }
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0 0 28px; }
.includes-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--gray-800); }
.check-icon { width: 20px; height: 20px; background: #E8FAF6; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon svg { color: var(--teal); }
.no-contract { text-align: center; font-size: 12.5px; color: var(--text-muted); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 28px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-stat strong { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--navy); }
.trust-stat span { font-size: 13px; color: var(--text-muted); }
.trust-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-head { margin-bottom: 56px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 17px; color: var(--text-muted); font-weight: 300; }
.section-head--center { text-align: center; }
.section-head--center p { margin-left: auto; margin-right: auto; }
.section-head--light h2 { color: var(--white); }
.section-head--light p { color: rgba(255,255,255,0.65); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps-grid::before {
    content: '';
    position: absolute; top: 28px;
    left: calc(12.5% + 20px); right: calc(12.5% + 20px);
    height: 2px;
    background: repeating-linear-gradient(90deg,var(--gray-200) 0,var(--gray-200) 8px,transparent 8px,transparent 16px);
}
.step-card { text-align: center; }
.step-num {
    width: 56px; height: 56px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 20px; font-weight: 800;
    margin: 0 auto 20px; position: relative; z-index: 1;
}
.step-card:nth-child(1) .step-num { background: var(--accent); color: var(--navy); }
.step-card:nth-child(2) .step-num { background: var(--teal); }
.step-card:nth-child(3) .step-num { background: var(--navy-mid); }
.step-card h3 { font-size: 16px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--navy); }
.services-section--has-bg { overflow: hidden; }
.services-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.service-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,166,35,0.4); transform: translateY(-4px); }
.service-card.featured { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.35); }
.service-badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: var(--navy-deep); font-size: 11px; font-weight: 700; font-family: var(--font-head); padding: 4px 10px; border-radius: 50px; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.icon-amber { background: rgba(245,166,35,0.2); }
.icon-teal  { background: rgba(0,184,156,0.2); }
.icon-blue  { background: rgba(56,132,220,0.2); }
.service-card h3 { color: var(--white); margin-bottom: 10px; font-size: 19px; }
.service-price { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--accent); margin: 14px 0 6px; }
.service-price span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.5); }
.service-card p { color: rgba(255,255,255,0.65); font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; }
.service-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.service-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   WHY US / COMPARISON
   ============================================================ */
.why-us { background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 16px; }
.why-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-point h4 { font-size: 16px; color: var(--navy); margin-bottom: 5px; }
.why-point p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.why-visual { background: var(--navy); border-radius: var(--radius-lg); padding: 40px 36px; color: var(--white); }
.why-visual h3 { color: var(--white); margin-bottom: 8px; font-size: 22px; }
.why-visual > p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 28px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.compare-table th { padding: 10px 14px; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-align: left; }
.compare-table th:last-child { text-align: center; color: var(--accent); }
.compare-table td { padding: 12px 14px; border-top: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.7); }
.compare-table td:last-child { text-align: center; }
.compare-table .yes { color: var(--teal); font-size: 16px; font-weight: 700; }
.compare-table .no  { color: rgba(255,255,255,0.25); }
.compare-table .highlight td { background: rgba(245,166,35,0.06); }

/* ============================================================
   SEO ARTICLES
   ============================================================ */
.articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.articles-visual { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; }
.article-item { display: flex; gap: 14px; padding: 16px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); margin-bottom: 12px; transition: box-shadow 0.2s; }
.article-item:hover { box-shadow: var(--shadow); }
.article-item:last-child { margin-bottom: 0; }
.article-rank { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--accent); background: var(--accent-pale); border-radius: 8px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; text-align: center; line-height: 1.2; }
.article-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }

/* ── SEO "What happens with every article" widget ── */
.seo-what-happens { display: flex; flex-direction: column; }
.seo-what-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.seo-what-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
.seo-what-header span { font-size: 11.5px; font-weight: 700; font-family: var(--font-head); letter-spacing: .08em; color: var(--text-muted); text-transform: uppercase; }
.seo-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.seo-step { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); transition: border-color .18s, box-shadow .18s; }
.seo-step:hover { border-color: var(--accent); box-shadow: 0 2px 8px rgba(245,166,35,.12); }
.seo-step-icon { width: 38px; height: 38px; flex-shrink: 0; background: rgba(245,166,35,.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.seo-step-content { flex: 1; }
.seo-step-content strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.seo-step-content span { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.seo-what-note { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: rgba(0,184,156,.07); border: 1px solid rgba(0,184,156,.2); border-radius: var(--radius); font-size: 13px; color: var(--gray-700); font-weight: 500; }
.seo-what-note svg { color: var(--teal); flex-shrink: 0; }
.article-info span { font-size: 12.5px; color: var(--text-muted); }
.article-features { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 32px; }
.article-feature { display: flex; gap: 14px; align-items: flex-start; }
.af-icon { width: 36px; height: 36px; background: var(--sky); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.article-feature strong { display: block; font-size: 15px; font-weight: 600; color: var(--navy); }
.article-feature p { font-size: 13.5px; color: var(--text-muted); margin: 2px 0 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--navy); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Dark variant — used on navy background sections (homepage, faq-section) */
.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s;
}
.faq-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(245,166,35,0.3); }
.faq-q {
    font-family: var(--font-head);
    font-size: 15px; font-weight: 600;
    color: var(--white);
    display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.faq-toggle { color: var(--accent); font-size: 22px; line-height: 1; flex-shrink: 0; font-weight: 300; }
.faq-toggle::before { content: '+'; }
.faq-item.open .faq-toggle::before { content: '−'; }
.faq-a { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-top: 14px; display: none; }
.faq-item.open .faq-a { display: block; }

/* Light variant — used on white/grey backgrounds (service pages) */
.faq-light .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
}
.faq-light .faq-item:hover { background: var(--gray-50); border-color: var(--navy); }
.faq-light .faq-q  { color: var(--navy); }
.faq-light .faq-a  { color: var(--text-muted); }
.faq-light .faq-item.open { border-color: var(--teal); background: rgba(0,184,156,0.02); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--gray-50); }

/* ── Testimonial Slider ─────────────────────────────────── */
.testimonial-slider {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}
.testimonial-slider__track {
    position: relative;
    min-height: 220px;
}
.testimonial-slider__slide {
    display: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    animation: tsFadeIn 0.45s ease;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.testimonial-slider__slide.active { display: block; }
@keyframes tsFadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

.ts-stars { color: var(--accent); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.ts-text {
    font-size: 16px; line-height: 1.75; color: var(--gray-700);
    font-style: italic; margin-bottom: 24px;
    border: none; padding: 0; quotes: none;
}
.ts-reviewer { display: flex; align-items: center; gap: 14px; }
.ts-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 15px; font-weight: 700;
    flex-shrink: 0;
}
.ts-name    { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0; }
.ts-company { font-size: 13px; color: var(--text-muted); margin: 2px 0 0; }
.ts-source  { font-size: 12px; color: var(--text-muted); margin: 2px 0 0; }

/* Controls */
.testimonial-slider__controls {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 24px;
}
.ts-arrow {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .18s; flex-shrink: 0;
}
.ts-arrow:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.ts-dots { display: flex; gap: 8px; align-items: center; }
.ts-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gray-200); border: none; cursor: pointer;
    transition: all .2s; padding: 0;
}
.ts-dot.active { background: var(--navy); transform: scale(1.3); }
.ts-dot:hover  { background: var(--teal); }

/* Keep old classes working if referenced elsewhere */
.testimonials-grid { display: block; }
.testimonial-card  { display: none; }
.stars             { color: var(--accent); font-size: 16px; }
.reviewer-avatar   { width: 38px; height: 38px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--accent); }

/* ============================================================
   ABOUT GREG
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
.about-card { background: var(--navy); border-radius: var(--radius-lg); padding: 36px; text-align: center; color: var(--white); }
.about-avatar {
    width: 180px; height: 150px;
    background: var(--accent);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 42px; font-weight: 800;
    color: var(--navy-deep);
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.about-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    display: block;
}
.about-card strong { display: block; font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); }
.about-card em { display: block; font-style: normal; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; margin-bottom: 24px; }
.since-badge { background: rgba(0,184,156,0.15); border: 1px solid rgba(0,184,156,0.3); color: var(--teal); font-size: 12px; font-weight: 600; font-family: var(--font-head); padding: 5px 14px; border-radius: 50px; display: inline-block; margin-bottom: 20px; }
.about-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.about-contact a { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: var(--accent-light); padding: 10px; background: rgba(255,255,255,0.05); border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); }
.about-contact a:hover { background: rgba(255,255,255,0.1); color: var(--accent-light); }
.about-text h2 { color: var(--navy); }
.about-text p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--navy); position: relative; overflow: hidden; text-align: center; padding: 96px 0; }
.cta-section::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle,rgba(245,166,35,0.06) 0%,transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 520px; margin: 0 auto 36px; font-weight: 300; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.4); }
.cta-note a { color: rgba(255,255,255,0.5); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--navy);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}
/* Default teal radial glow — hidden when a real image is set */
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 110% 50%, rgba(0,184,156,0.1) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.3s;
}
.page-hero--has-image::before { opacity: 0; } /* suppress glow when image present */
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem,4vw,3rem); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 560px; font-weight: 300; margin: 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   BLOG / ARCHIVE
   ============================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
/* Archive pages — full width, no sidebar, 3 columns */
.archive-layout { grid-template-columns: 1fr; }
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .archive-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .archive-grid { grid-template-columns: 1fr; } }
.posts-grid { display: grid; gap: 32px; }
.post-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; }
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.post-thumbnail { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-thumbnail img { transform: scale(1.04); }
.post-thumbnail-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--navy); }
.post-thumbnail-placeholder span { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--accent); opacity: 0.4; }
.post-body { padding: 24px 28px; }
.post-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.post-date { font-size: 12.5px; color: var(--text-muted); }
.post-cat a { font-size: 11.5px; font-weight: 700; font-family: var(--font-head); letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: rgba(245,166,35,0.12); padding: 3px 10px; border-radius: 50px; }
.post-cat a:hover { background: rgba(245,166,35,0.22); color: var(--accent); }
.post-card h2 { font-size: 20px; margin-bottom: 10px; }
.post-card h2 a { color: var(--navy); }
.post-card h2 a:hover { color: var(--accent-dark, #d4891a); }
.post-excerpt { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.read-more-link { color: var(--accent); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.read-more-link:hover { color: var(--accent-dark, #d4891a); gap: 10px; }

/* Featured post */
.post-card.post-featured { display: grid; grid-template-columns: 1fr 1fr; }
.post-card.post-featured .post-thumbnail { aspect-ratio: auto; height: 100%; min-height: 240px; }
.post-card.post-featured .post-body { display: flex; flex-direction: column; justify-content: center; }

/* Single post */
.single-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.article-header { margin-bottom: 36px; }
.article-header .post-meta { margin-bottom: 16px; }
.article-header h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 16px; }
.article-header .post-excerpt { font-size: 18px; color: var(--text-muted); font-weight: 300; line-height: 1.65; }
.article-thumbnail { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; }
.article-thumbnail img { width: 100%; }
.article-author { display: flex; gap: 16px; align-items: center; padding: 24px; background: var(--gray-50); border-radius: var(--radius); margin-top: 48px; border: 1px solid var(--gray-200); }
.author-avatar { width: 60px; height: 60px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--accent); flex-shrink: 0; overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; color: var(--navy); font-size: 15px; }
.author-bio { font-size: 13.5px; color: var(--text-muted); margin-top: 3px; }

/* Post navigation */
.post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.post-nav-link { padding: 20px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); transition: all 0.2s; }
.post-nav-link:hover { border-color: var(--teal); background: rgba(0,184,156,0.05); }
.post-nav-link .nav-label { font-size: 11px; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; display: block; }
.post-nav-link .nav-title { font-size: 15px; font-weight: 600; color: var(--navy); }
.post-nav-link.next { text-align: right; }

/* Comments */
.comments-section { margin-top: 56px; }
.comments-title { font-size: 22px; margin-bottom: 32px; color: var(--navy); }
.comment-list { list-style: none; display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.comment { padding: 24px; background: var(--gray-50); border-radius: var(--radius); border: 1px solid var(--gray-200); }
.comment .children { margin-top: 16px; margin-left: 24px; display: flex; flex-direction: column; gap: 16px; }
.comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.comment-author img { border-radius: 50%; }
.comment-author-name { font-weight: 600; color: var(--navy); font-size: 15px; }
.comment-date { font-size: 12px; color: var(--text-muted); }
.comment-body p { font-size: 14.5px; color: var(--gray-600); line-height: 1.65; margin: 0; }
.reply-link { font-size: 13px; color: var(--teal); font-weight: 600; margin-top: 10px; display: inline-block; }

/* Comment form */
.comment-form-wrap { background: var(--gray-50); padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.comment-form-title { font-size: 20px; margin-bottom: 24px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--navy); font-family: var(--font-head); }
.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,184,156,0.12); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.widget { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; }
.widget-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); display: inline-block; }
.widget ul { display: flex; flex-direction: column; gap: 10px; }
.widget ul li a { font-size: 14px; color: var(--text-muted); display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.widget ul li a:hover { color: var(--teal); }
.widget-search input { width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 50px; font-size: 14px; }
.widget-search input:focus { outline: none; border-color: var(--teal); }
.widget-cta { background: var(--navy); border-color: transparent; text-align: center; }
.widget-cta h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.widget-cta p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 20px; }
.widget-cta .price-big { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.widget-cta .price-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.service-page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.service-intro { font-size: 18px; color: var(--text-muted); font-weight: 300; line-height: 1.75; margin-bottom: 40px; }
.service-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.highlight-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; }
.highlight-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.highlight-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.highlight-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.service-sticky-card { position: sticky; top: 100px; }
.pricing-card { background: var(--navy); border-radius: var(--radius-lg); padding: 36px; color: var(--white); overflow: hidden; position: relative; }
.pricing-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--teal)); }
.pricing-card h3 { color: var(--white); margin-bottom: 8px; }
.pricing-card .service-price { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: var(--accent); line-height: 1; margin: 12px 0; }
.pricing-card .service-price span { font-size: 18px; color: rgba(255,255,255,0.5); font-weight: 400; }
.pricing-card p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 24px; }
.pricing-card ul { margin-bottom: 28px; }
.pricing-card ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.pricing-card ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   CONTACT / GET STARTED PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-title { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.contact-form-sub { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card-icon { width: 42px; height: 42px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--text-muted); margin: 0; }
.contact-card a:hover { color: var(--teal); }
.contact-cta-card { background: var(--navy); border-radius: var(--radius-lg); padding: 32px; text-align: center; margin-top: 24px; }
.contact-cta-card h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.contact-cta-card p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 20px; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px; font-weight: 600; font-family: var(--font-head);
    color: var(--text-muted);
    transition: all 0.18s;
}
.pagination a:hover { border-color: var(--teal); color: var(--teal); }
.pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404 { text-align: center; padding: 120px 0; }
.error-404 .error-code { font-family: var(--font-head); font-size: 120px; font-weight: 800; color: var(--accent); opacity: 0.3; line-height: 1; }
.error-404 h1 { font-size: 32px; color: var(--navy); margin-bottom: 16px; }
.error-404 p { font-size: 17px; color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}
.social-link:hover { background: rgba(255,255,255,0.14); color: var(--white); border-color: rgba(255,255,255,0.2); }
.social-link svg { display: block; }
.footer-col h4 { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-links a:hover { color: var(--accent-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; font-size: 14px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--accent-light); }

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 16px auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.alignwide { width: calc(100% + 48px); margin-left: -24px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 8px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.wp-block-image img { border-radius: var(--radius); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr 380px; gap: 40px; }
    .about-grid { grid-template-columns: 300px 1fr; }
}
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .why-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    /* testimonials now a slider — no grid breakpoints needed */
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-bar-inner { gap: 28px; }
    .trust-divider { display: none; }
    .blog-layout { grid-template-columns: 1fr; }
    .single-post-layout { grid-template-columns: 1fr; }
    .service-page-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-sticky-card { position: static; }
    .post-card.post-featured { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .topbar-tagline { display: none; }
    .topbar-links { gap: 10px; }
    .topbar-contact-link span { display: none; } /* show icon only on mobile */
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .primary-navigation { display: none; }
    .primary-navigation.open { display: flex; flex-direction: column; position: fixed; inset: 0 0 0 25%; background: var(--navy-deep); padding: 80px 24px 24px; z-index: 200; box-shadow: -4px 0 32px rgba(0,0,0,.5); overflow-y: auto; }
    .primary-navigation.open ul { flex-direction: column; gap: 4px; }
    .primary-navigation.open ul li a { padding: 12px 16px; font-size: 16px; color: rgba(255,255,255,.8); }
    .hamburger { display: flex; }
    .grid-2 { grid-template-columns: 1fr; }
    .service-highlights { grid-template-columns: 1fr; }
    .post-navigation { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    h2 { font-size: 1.7rem; }
}

/* Print styles */
@media print {
    .site-topbar, .site-header, .site-footer, .sidebar, .primary-navigation { display: none; }
    body { color: #000; font-size: 12pt; }
    a { color: #000; text-decoration: underline; }
}

/* ============================================================
   BLOG CATEGORY FILTER BAR
   ============================================================ */
.blog-cats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 72px; /* clears the sticky header */
    z-index: 50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.blog-cats-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
}
.blog-cats-inner::-webkit-scrollbar { display: none; }
.blog-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: var(--font-head);
    color: var(--gray-600);
    background: var(--white);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.18s;
    flex-shrink: 0;
}
.blog-cat-pill:hover { border-color: var(--navy); color: var(--navy); background: var(--gray-50); }
.blog-cat-pill.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.blog-cat-pill.active:hover { background: var(--navy-mid); color: var(--white); }
.blog-cat-count {
    background: rgba(0,0,0,0.1);
    border-radius: 50px;
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}
.blog-cat-pill.active .blog-cat-count { background: rgba(255,255,255,0.2); }

/* ============================================================
   POSTS GRID (blog index)
   ============================================================ */
.posts-grid { display: flex; flex-direction: column; gap: 24px; }
.posts-grid-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.post-card--featured { border: 2px solid var(--gray-200); }
.post-card--featured:hover { border-color: var(--accent); }

/* ============================================================
   BLOG PAGINATION
   ============================================================ */
.pagination ul { display: flex; gap: 8px; list-style: none; flex-wrap: wrap; }
.pagination li { display: flex; }
.pagination li a,
.pagination li span {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px; font-weight: 600; font-family: var(--font-head);
    color: var(--text-muted);
    transition: all 0.18s;
    text-decoration: none;
}
.pagination li a:hover { border-color: var(--teal); color: var(--teal); }
.pagination li.current span { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination li.prev a,
.pagination li.next a { font-size: 16px; width: auto; padding: 0 16px; }

/* ============================================================
   SERVICE ARTICLES SECTION
   ============================================================ */
.service-articles {
    background: var(--gray-50);
    padding: 56px 0;
    margin: 48px 0 0;
    border-top: 1px solid var(--gray-200);
}
.service-articles .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Compact 3-col grid for service page related articles
   Matches the style of related posts on single.php — smaller, tighter */
.service-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
.service-articles-grid .post-card {
    border-radius: var(--radius);
}
.service-articles-grid .post-thumbnail {
    aspect-ratio: 16/9;
    max-height: 160px;
    overflow: hidden;
}
.service-articles-grid .post-thumbnail img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.service-articles-grid .post-thumbnail-placeholder {
    height: 120px;
}
.service-articles-grid .post-body  { padding: 14px 16px; }
.service-articles-grid .post-card h3 { font-size: 14px; line-height: 1.4; margin-bottom: 6px; }
.service-articles-grid .post-card h3 a { color: var(--navy); }
.service-articles-grid .post-card h3 a:hover { color: var(--accent-dark, #d4891a); }
.service-articles-grid .post-cat a { font-size: 10.5px; }
.service-articles-grid .post-excerpt { font-size: 13px; line-height: 1.55; margin-bottom: 12px; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.service-articles-grid .read-more-link { font-size: 12.5px; }
.service-articles-grid .post-date { font-size: 11.5px; }

@media (max-width: 768px) {
    .service-articles-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
}
@media (max-width: 480px) {
    .service-articles-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SEO META BOX OVERRIDE (admin only — doesn't affect frontend)
   ============================================================ */
@media screen and (max-width: 640px) {
    .blog-cats-inner { gap: 4px; }
    .blog-cat-pill { padding: 6px 12px; font-size: 12.5px; }
    .posts-grid-inner { grid-template-columns: 1fr; }
}

/* ── Plan selector cards (Step 1) ── */
.gs-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.gs-plan-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    cursor: pointer;
    transition: all 0.22s;
    position: relative;
    background: var(--white);
    user-select: none;
    outline: none;
}
.gs-plan-card:hover    { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.gs-plan-card:focus    { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,184,156,.18); }
.gs-plan-card.selected { border-color: var(--teal); background: rgba(0,184,156,.03); }
.gs-plan-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--accent); color: var(--navy-deep);
    font-size: 11px; font-weight: 700; font-family: var(--font-head);
    padding: 3px 10px; border-radius: 50px;
    letter-spacing: .04em;
}
.gs-plan-icon {
    width: 52px; height: 52px;
    background: var(--gray-100);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    margin-bottom: 14px;
    transition: all 0.2s;
}
.gs-plan-card.selected .gs-plan-icon { background: var(--navy); color: var(--white); }
.gs-plan-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 4px; }
.gs-plan-price {
    font-family: var(--font-head);
    font-size: 26px; font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1.2;
}
.gs-plan-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.gs-plan-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.gs-plan-includes {
    list-style: none;
    display: flex; flex-direction: column; gap: 7px;
    margin-bottom: 20px;
}
.gs-plan-includes li {
    font-size: 13.5px; color: var(--gray-800);
    display: flex; align-items: flex-start; gap: 8px;
}
.gs-plan-includes li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.gs-plan-select-btn {
    font-family: var(--font-head);
    font-size: 14px; font-weight: 700;
    color: var(--navy);
    opacity: 0.5;
    transition: opacity 0.2s;
}
.gs-plan-card:hover .gs-plan-select-btn,
.gs-plan-card.selected .gs-plan-select-btn { opacity: 1; color: var(--teal); }
.gs-plan-card.selected::after {
    content: '✓ Selected';
    position: absolute; bottom: 14px; right: 14px;
    font-size: 12px; font-weight: 700; font-family: var(--font-head);
    color: var(--teal);
}

/* Flat rate scheduling block */
.gs-flat-schedule-note {
    background: var(--sky);
    border: 1px solid rgba(0,107,160,.15);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .gs-plan-grid { grid-template-columns: 1fr; }
    .gs-plan-badge { top:10px; right:10px; }
}

/* ============================================================
   GET STARTED WIZARD — Complete Styles
   ============================================================ */
.gs-container { max-width: 760px; }

/* Progress bar */
.gs-wizard-progress {
    display: flex; align-items: center;
    margin-bottom: 40px; padding: 0 2px;
}
.gs-wizard-step {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    flex-shrink: 0;
}
.gs-wizard-step span {
    font-size: 11px; font-family: var(--font-head); font-weight: 600;
    color: var(--gray-400); white-space: nowrap;
}
.gs-wizard-step-num {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--gray-100); border: 2px solid var(--gray-200);
    color: var(--gray-400); font-family: var(--font-head);
    font-size: 14px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
}
.gs-wizard-step.active .gs-wizard-step-num   { background: var(--navy); border-color: var(--navy); color: var(--white); }
.gs-wizard-step.active span                   { color: var(--navy); }
.gs-wizard-step.completed .gs-wizard-step-num { background: var(--teal); border-color: var(--teal); color: var(--white); font-size: 0; }
.gs-wizard-step.completed .gs-wizard-step-num::after { content: '✓'; font-size: 14px; }
.gs-wizard-step.completed span                { color: var(--teal); }
.gs-step-connector { flex: 1; height: 2px; background: var(--gray-200); margin: 0 4px 18px; transition: background 0.25s; }

/* Panels */
.gs-panel { display: none; }
.gs-panel.active { display: block; animation: gsFadeIn 0.22s ease; }
@keyframes gsFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Panel header */
.gs-panel-head { margin-bottom: 28px; }
.gs-panel-eyebrow {
    font-size: 11.5px; font-family: var(--font-head); font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em; color: var(--accent);
    display: block; margin-bottom: 8px;
}
.gs-panel-head h2 { color: var(--navy); font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 8px; }
.gs-panel-head p  { color: var(--text-muted); font-size: 15px; margin: 0; line-height: 1.65; }

/* Contact grid */
.gs-contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px;
}
.gs-field-full { grid-column: 1 / -1; }

/* Fields */
.gs-field { display: flex; flex-direction: column; gap: 5px; }
.gs-field label {
    font-size: 13.5px; font-weight: 600; color: var(--navy);
    font-family: var(--font-head);
}
.gs-field-hint     { font-weight: 400; color: var(--text-muted); font-size: 12px; }
.gs-field-hint-text{ font-size: 13px; color: var(--text-muted); margin: -3px 0 5px; }
.gs-req { color: #CC3333; }
.gs-field input[type="text"],
.gs-field input[type="email"],
.gs-field input[type="tel"],
.gs-field input[type="number"],
.gs-field textarea {
    padding: 11px 14px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius); font-family: var(--font-body);
    font-size: 15px; color: var(--text); background: var(--white);
    transition: border-color .18s, box-shadow .18s; width: 100%;
}
.gs-field input:focus,
.gs-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,184,156,.12); }
.gs-field textarea { min-height: 80px; resize: vertical; }
.gs-input-error { border-color: #CC3333 !important; }
.gs-error-msg   { color: #CC3333; font-size: 12.5px; }

/* Plan option cards (Step 2 website) */
.gs-plan-options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }

.gs-option-card {
    display: block; cursor: pointer;
    border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
    transition: all .2s; background: var(--white); overflow: hidden;
}
.gs-option-card:hover   { border-color: var(--navy); box-shadow: var(--shadow); }
.gs-option-card.selected{ border-color: var(--teal); background: rgba(0,184,156,.02); }
.gs-option-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.gs-option-card--featured { border-color: var(--accent); }
.gs-option-card--featured:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(245,166,35,.2); }
.gs-option-card--featured.selected { border-color: var(--teal); }
.gs-option-card--plain { border-style: dashed; }

.gs-option-card-inner { padding: 20px 22px; }
.gs-option-card-top {
    display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
}
.gs-option-icon {
    width: 44px; height: 44px; background: var(--gray-100); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); flex-shrink: 0; transition: all .2s;
}
.gs-option-card.selected .gs-option-icon,
.gs-option-card--featured .gs-option-icon { background: var(--navy); color: var(--white); }
.gs-option-label { flex: 1; }
.gs-option-label strong { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); }
.gs-option-badge {
    display: inline-block; background: var(--accent); color: var(--navy-deep);
    font-size: 10.5px; font-weight: 700; font-family: var(--font-head);
    padding: 2px 9px; border-radius: 50px; letter-spacing: .04em; margin-top: 3px;
}
.gs-option-price {
    font-family: var(--font-head); font-size: 22px; font-weight: 800;
    color: var(--accent); white-space: nowrap; flex-shrink: 0; text-align: right;
}
.gs-option-price small { font-size: 12px; font-weight: 400; color: var(--text-muted); display: block; }
.gs-option-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.gs-option-includes {
    list-style: none; display: flex; flex-direction: column; gap: 5px;
    margin: 0; padding: 0;
}
.gs-option-includes li {
    font-size: 13.5px; color: var(--gray-800);
    display: flex; align-items: center; gap: 8px;
}
.gs-option-includes li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* Conditional questionnaire sections */
.gs-conditional-section { margin-top: 4px; }
.gs-conditional-inner {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 24px; margin: 14px 0;
    display: flex; flex-direction: column; gap: 16px;
}
.gs-sub-heading { font-size: 16px; color: var(--navy); margin: 0 0 2px; }
.gs-sub-desc    { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Option rows (articles + logo yes/no) */
.gs-option-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.gs-option-row {
    display: block; cursor: pointer;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
    background: var(--white); transition: all .2s;
}
.gs-option-row:hover    { border-color: var(--navy); }
.gs-option-row.selected { border-color: var(--teal); background: rgba(0,184,156,.03); }
.gs-option-row input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.gs-option-row-inner {
    display: flex; align-items: center; gap: 16px; padding: 16px 20px;
}
.gs-option-row-label { flex: 1; }
.gs-option-row-label strong { display: block; font-size: 15px; font-weight: 600; color: var(--navy); font-family: var(--font-head); }
.gs-option-row-label span   { font-size: 13px; color: var(--text-muted); margin-top: 2px; display: block; }
.gs-option-row-price {
    font-family: var(--font-head); font-size: 20px; font-weight: 800;
    color: var(--accent); white-space: nowrap; flex-shrink: 0;
}
.gs-option-row-price small { font-size: 12px; font-weight: 400; color: var(--text-muted); }

/* Article qty section */
.gs-qty-section {
    background: var(--sky); border: 1px solid rgba(0,107,160,.15);
    border-radius: var(--radius-lg); padding: 20px 22px; margin-bottom: 2px;
}
.gs-qty-label { font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 14px; font-family: var(--font-head); }

/* Tier buttons */
.gs-article-tiers { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.gs-tier-btn {
    flex: 1; min-width: 100px;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: 12px 10px;
    border: 2px solid var(--gray-200); border-radius: var(--radius);
    background: var(--white); cursor: pointer; transition: all .2s;
    font-family: var(--font-head);
}
.gs-tier-btn:hover { border-color: var(--navy); }
.gs-tier-btn.active { border-color: var(--teal); background: rgba(0,184,156,.05); }
.gs-tier-btn--recommended { position: relative; }
.gs-tier-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--navy-deep);
    font-size: 9.5px; font-weight: 700; padding: 2px 8px; border-radius: 50px;
    white-space: nowrap;
}
.gs-tier-name  { font-size: 14px; font-weight: 700; color: var(--navy); }
.gs-tier-qty   { font-size: 12px; color: var(--text-muted); }
.gs-tier-price { font-size: 15px; font-weight: 800; color: var(--teal); margin-top: 2px; }

.gs-qty-custom-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.gs-qty-or { font-size: 13px; color: var(--text-muted); }
.gs-qty-controls { display: flex; align-items: center; gap: 8px; }
.gs-qty-btn {
    width: 34px; height: 34px; border: 2px solid var(--navy); border-radius: 8px;
    background: var(--white); color: var(--navy); font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; padding: 0; transition: all .18s; line-height: 1;
}
.gs-qty-btn:hover { background: var(--navy); color: var(--white); }
.gs-qty-input {
    width: 60px; text-align: center;
    font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy);
    border: 2px solid var(--navy); border-radius: 8px; padding: 4px 6px;
}
.gs-qty-total { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--teal); }
.gs-qty-hint  { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* Logo radio blocks */
.gs-radio-block {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 14px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius); font-size: 14px; cursor: pointer;
    margin-bottom: 7px; transition: all .18s; user-select: none; line-height: 1.4;
}
.gs-radio-block input { margin-top: 2px; accent-color: var(--teal); flex-shrink: 0; }
.gs-radio-block:has(input:checked) { border-color: var(--teal); background: rgba(0,184,156,.04); }

/* Summary */
.gs-summary { margin-bottom: 24px; }
.gs-summary-section {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 18px 22px; margin-bottom: 12px;
}
.gs-summary-section h3 {
    font-family: var(--font-head); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em; color: var(--navy);
    margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200);
}
.gs-summary-row {
    display: flex; gap: 12px; font-size: 14px;
    padding: 5px 0; border-bottom: 1px solid var(--gray-100);
    align-items: flex-start;
}
.gs-summary-row:last-child { border-bottom: none; }
.gs-summary-label { color: var(--text-muted); font-weight: 600; flex-shrink: 0; width: 130px; }
.gs-summary-value { color: var(--text); flex: 1; white-space: pre-wrap; word-break: break-word; }

/* Submit callout */
.gs-submit-callout {
    display: flex; gap: 14px; align-items: flex-start;
    background: rgba(0,184,156,.07); border: 1px solid rgba(0,184,156,.2);
    border-radius: var(--radius); padding: 16px 20px;
    font-size: 14px; color: var(--gray-800); margin-bottom: 24px;
}
.gs-submit-callout svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.gs-submit-callout strong { display: block; margin-bottom: 4px; color: var(--navy); }
.gs-submit-callout p { margin: 0; font-size: 13.5px; color: var(--text-muted); }

/* Nav */
.gs-panel-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid var(--gray-200);
    gap: 12px; margin-top: 8px;
}
.gs-panel-nav--right { justify-content: flex-end; }

/* Error/alert */
.gs-no-selection-msg {
    background: #fff8e8; border: 1px solid #f5a623;
    border-radius: var(--radius); padding: 11px 16px;
    font-size: 14px; color: #7a4800; margin-bottom: 14px;
}
.gs-no-selection-msg p { margin: 0; }

/* Success */
.gs-success {
    text-align: center; padding: 56px 32px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.gs-success-icon {
    width: 72px; height: 72px; background: var(--teal); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--white); margin: 0 auto 24px;
}
.gs-success h2 { color: var(--navy); font-size: 28px; margin-bottom: 14px; }
.gs-success p  { color: var(--text-muted); max-width: 460px; margin: 0 auto 12px; font-size: 16px; }

.gs-error {
    background: #fff3f3; border: 1px solid #ffb3b3;
    border-radius: var(--radius); padding: 14px 18px;
    color: #CC3333; font-size: 14.5px; margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 640px) {
    .gs-contact-grid { grid-template-columns: 1fr; }
    .gs-option-card-top { flex-wrap: wrap; }
    .gs-wizard-step span { display: none; }
    .gs-article-tiers { flex-direction: column; }
    .gs-qty-custom-row { flex-direction: column; align-items: flex-start; }
    .gs-panel-nav { flex-direction: column-reverse; }
    .gs-panel-nav .btn { width: 100%; justify-content: center; }
    .gs-summary-label { width: 100px; }
}

/* ============================================================
   ADDITIONAL SERVICES PAGE
   ============================================================ */
.add-service-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 40px 0;
}
.add-service-icon {
    width: 56px; height: 56px;
    background: var(--navy);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}
.add-service-content { flex: 1; }
.add-service-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.add-service-header h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: var(--navy);
    margin: 0;
}
.add-service-price {
    font-family: var(--font-head);
    font-size: 20px; font-weight: 800;
    color: var(--accent);
    white-space: nowrap;
}
.add-service-price small { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.add-service-price-note {
    font-family: var(--font-head);
    font-size: 13px; font-weight: 600;
    color: var(--text-muted);
    background: var(--gray-100);
    padding: 3px 12px;
    border-radius: 50px;
    white-space: nowrap;
}
.add-service-content p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 12px;
}
.add-service-content p:last-child { margin-bottom: 0; }
.add-service-divider {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 0;
}

@media (max-width: 600px) {
    .add-service-block { flex-direction: column; gap: 16px; }
    .add-service-icon  { width: 46px; height: 46px; }
}

/* ============================================================
   PRIVACY POLICY & SITEMAP PAGES
   ============================================================ */
.privacy-content h2,
.sitemap-content h2 {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p,
.privacy-content li { font-size: 15.5px; line-height: 1.8; color: var(--gray-700); margin-bottom: 12px; }
.privacy-content ul { padding-left: 20px; margin-bottom: 16px; }
.privacy-content li { margin-bottom: 6px; }
.privacy-content a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--accent); }
.privacy-content a:hover { color: var(--accent); }
.privacy-updated { font-size: 13.5px; color: var(--text-muted); margin-bottom: 36px; font-style: italic; }
.privacy-contact {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 20px 24px; margin-top: 8px;
}
.privacy-contact p { margin: 0; line-height: 2; }

.sitemap-group { margin-bottom: 36px; }
.sitemap-group h3 { font-size: 15px; color: var(--navy); margin-bottom: 10px; }
.sitemap-content ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sitemap-content li {
    padding: 8px 14px;
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius); font-size: 14.5px;
    display: flex; align-items: center; gap: 8px;
}
.sitemap-content li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.sitemap-content a { color: var(--navy); font-weight: 500; }
.sitemap-content a:hover { color: var(--accent); }
.sitemap-xml-note {
    display: flex; gap: 10px; align-items: center;
    background: rgba(0,184,156,.07); border: 1px solid rgba(0,184,156,.2);
    border-radius: var(--radius); padding: 14px 18px;
    font-size: 14px; color: var(--gray-700); margin-top: 32px;
}
.sitemap-xml-note svg { color: var(--teal); flex-shrink: 0; }
