/* ============================================================
   NORTHSHORE MOBILE NOTARY — LANDING PAGE STYLESHEET

   SWAP GUIDE
   · Brand colors  → update :root variables in the VARIABLES section
   · Fonts         → swap the Google Fonts @import URL + --font-* vars
   · Spacing       → adjust --max-w and section padding values
   · Images        → search for "Swap:" comments in index.html
============================================================ */

/* ============================================================
   GOOGLE FONTS
   Swap: replace with your chosen font pair
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES — full brand token system
   Swap: change any value here to retheme the entire page
============================================================ */
:root {
    /* — Primary palette — */
    --navy:          #1E3A5F;   /* main brand color; buttons, headings */
    --navy-dark:     #162D4A;   /* darker navy for hover states */
    --navy-light:    #2A5080;   /* lighter navy for gradients */

    /* — Backgrounds — */
    --cream:         #FAF7F2;   /* base page background */
    --cream-dark:    #F0EAE0;   /* alternate section background */
    --white:         #FFFFFF;

    /* — Accent colors — */
    --sage:          #6B8F71;   /* secondary accent; eyebrows, tags */
    --sage-dark:     #5A7E60;
    --gold:          #C8A951;   /* highlight accent; CTA buttons */
    --gold-light:    #DEC06A;   /* gold hover / hero italic text */

    /* — Text — */
    --text-dark:     #1A2635;   /* headlines */
    --text-mid:      #4A5A6A;   /* body copy */
    --text-light:    #7A8A96;   /* captions, footnotes */

    /* — Borders — */
    --border:        #DDD6CC;
    --border-light:  #EDE8E1;

    /* — Typography — */
    --font-serif:    'Lora', Georgia, serif;        /* headlines */
    --font-sans:     'Inter', system-ui, sans-serif; /* body */

    /* — Layout — */
    --max-w:         1140px;
    --radius:        8px;
    --radius-lg:     16px;

    /* — Shadows — */
    --shadow-sm: 0 2px 8px  rgba(30, 58, 95, 0.07);
    --shadow-md: 0 4px 20px rgba(30, 58, 95, 0.11);
    --shadow-lg: 0 8px 40px rgba(30, 58, 95, 0.15);
}

/* ============================================================
   RESET + BASE
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* offset for sticky nav */
    scroll-padding-top: 68px;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text-mid);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

.section { padding: 88px 0; }

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 12px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

/* Italic spans render in the brand serif italic */
.section-heading em {
    font-style: italic;
    color: var(--navy);
}

.section-sub {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    padding: 12px 22px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s,
                box-shadow 0.25s, transform 0.2s;
    white-space: nowrap;
}

.btn-lg { padding: 15px 30px; font-size: 15px; }

/* Navy primary */
.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-primary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.28);
    transform: translateY(-1px);
}

/* Gold — used on hero + final CTA against dark bg */
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    font-weight: 700;
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 4px 20px rgba(200, 169, 81, 0.4);
    transform: translateY(-1px);
}

/* Outline — navy border on light bg */
.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}

/* Outline white — on dark/navy backgrounds */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark--sm {
    width: 34px;
    height: 34px;
    font-size: 15px;
}

.logo-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.logo-sub {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 2px;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--navy);
    background: rgba(30, 58, 95, 0.06);
}

.nav-cta { margin-left: 8px; }

/* ============================================================
   HERO
============================================================ */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2A4F7A 55%, #1A3558 100%);
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* ============================================================
   HERO BACKGROUND TREATMENT
   Two-layer pattern: dot grid anchors the texture, horizontal
   ruling adds a document-paper / blueprint feel.
   Kept very low-opacity so it reads as depth, not pattern.
============================================================ */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px);
    background-size: 28px 28px, 100% 52px;
    pointer-events: none;
    z-index: 0;
}

/* Warm radial glow behind the illustration — adds visual weight
   to the right column without adding a literal shape */
.hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(200, 169, 81, 0.055) 0%,
        rgba(42, 79, 122, 0.04) 45%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   HERO SPACING / TYPOGRAPHY IMPROVEMENTS
   · Tightened line-height on heading for more confidence
   · Letter-spacing nudge makes large serif feel more premium
   · Gold accent bar before eyebrow grounds the label
   · Trust row gets a thin rule separator from the CTA group
============================================================ */
.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 92px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* — Hero copy — */
.hero-eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Short gold bar before the eyebrow label */
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-heading {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.07;
    letter-spacing: -0.012em;
    margin-bottom: 22px;
}

.hero-heading em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
    max-width: 455px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Trust row: thin rule above separates it from CTAs cleanly */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.58);
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stars {
    color: var(--gold-light);
    letter-spacing: 2px;
    font-size: 13px;
}

/* Thin vertical bar replaces the dot separator */
.trust-sep {
    display: inline-block;
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.2);
    color: transparent;
    vertical-align: middle;
    -webkit-user-select: none;
    user-select: none;
}

/* ============================================================
   HERO ILLUSTRATION IMPROVEMENTS
   · Panel has more visible border and layered box-shadow
   · Inner ruling pattern echoes the background texture
   · Document stack shadows are deeper and more realistic
   · Stamp circle gets a faint outer ring for detail
============================================================ */

/* Swap: delete .hero-img-placeholder and replace with <img src="your-photo.jpg"> */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.32),
        0 4px 16px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Subtle ruled-paper texture inside the illustration panel */
.hero-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 100% 26px;
    pointer-events: none;
}

/* Stacked document illustration */
.hero-doc-stack {
    position: relative;
    width: 180px;
    height: 230px;
}

.hero-doc {
    position: absolute;
    border-radius: 10px;
}

.hero-doc--back {
    width: 155px; height: 205px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 18px; left: 28px;
    transform: rotate(6deg);
}

.hero-doc--mid {
    width: 158px; height: 208px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    top: 9px; left: 14px;
    transform: rotate(3deg);
}

.hero-doc--front {
    width: 162px; height: 212px;
    background: var(--white);
    border-radius: 10px;
    top: 0; left: 0;
    padding: 22px 18px 18px;
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.doc-lines { display: flex; flex-direction: column; gap: 9px; }

.doc-line {
    height: 6px;
    background: rgba(30, 58, 95, 0.09);
    border-radius: 3px;
    width: 100%;
}
.doc-line--short { width: 62%; }
.doc-line--med   { width: 80%; }

.doc-sig-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(30, 58, 95, 0.07);
}

.doc-sig {
    height: 2px;
    width: 68px;
    background: linear-gradient(90deg, rgba(30, 58, 95, 0.5), rgba(30, 58, 95, 0.15));
    border-radius: 2px;
    transform: rotate(-1.5deg);
}

/* Stamp circle: faint outer ring adds detail without noise */
.doc-stamp-circle {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(200, 169, 81, 0.45);
    background: rgba(200, 169, 81, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
}

/* Gold pen prop */
.hero-pen {
    position: absolute;
    bottom: 28px;
    right: -14px;
    width: 10px;
    height: 76px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    border-radius: 2px 2px 5px 5px;
    transform: rotate(-28deg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.36);
}

/* "Notarized" floating badge — tighter tracking, stronger shadow */
.hero-notarized-badge {
    position: absolute;
    top: -14px;
    right: -18px;
    background: var(--sage);
    color: var(--white);
    border-radius: 20px;
    padding: 7px 14px 7px 11px;
    font-size: 11.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(107, 143, 113, 0.52);
    letter-spacing: 0.04em;
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
    background: var(--white);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid var(--border-light);
}

.trust-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 24px;
    border-right: 1px solid var(--border-light);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.01em;
    transition: background 0.2s;
}

.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(30, 58, 95, 0.03); }

.trust-icon {
    width: 22px;
    height: 22px;
    stroke: var(--navy);
    flex-shrink: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.services-section {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
    border-color: rgba(30, 58, 95, 0.22);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Featured card has navy border */
.service-card--featured {
    border: 2px solid var(--navy);
}

.service-card--featured:hover {
    border-color: var(--navy-light);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(30, 58, 95, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s;
}

.service-card:hover .service-icon { background: rgba(30, 58, 95, 0.12); }

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--navy);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.service-card:hover .service-title { color: var(--navy); }

.service-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
}

.service-tag {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(30, 58, 95, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* Dot-grid texture */
.how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.how-section .section-header { position: relative; z-index: 1; }
.how-section .section-eyebrow { color: var(--gold-light); }
.how-section .section-heading { color: var(--white); }
.how-section .section-heading em { color: var(--gold-light); }
.how-section .section-sub { color: rgba(255, 255, 255, 0.66); }

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    z-index: 1;
}

.step {
    padding: 44px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.step:last-child { border-right: none; }

.step-num {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    color: rgba(200, 169, 81, 0.22);
    line-height: 1;
    margin-bottom: 18px;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.75;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section { background: var(--white); }

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text-col .section-eyebrow,
.why-text-col .section-heading { text-align: left; }

.why-intro {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 440px;
}

.why-points-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-point {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.why-point:hover {
    border-color: rgba(30, 58, 95, 0.18);
    box-shadow: var(--shadow-sm);
}

.why-point-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(30, 58, 95, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.why-point:hover .why-point-icon { background: rgba(30, 58, 95, 0.12); }

.why-point-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--navy);
}

.why-point-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.why-point-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ============================================================
   SERVICE AREA
============================================================ */
.area-section { background: var(--cream-dark); }

.area-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Swap: replace with <iframe src="...google maps embed..."> or an actual area image */
.area-map-placeholder {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    gap: 12px;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 32px 32px;
}

.map-pin {
    position: relative;
    z-index: 2;
    color: var(--navy);
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 4px 8px rgba(30, 58, 95, 0.28));
}

.map-pin svg { width: 100%; height: 100%; }

.map-label {
    position: relative;
    z-index: 2;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* City chips */
.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.area-chip {
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: default;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.area-chip:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.area-chip--accent {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
    font-weight: 600;
}

.area-chip--accent:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
}

.area-note {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    max-width: 440px;
}

/* ============================================================
   PRICING
============================================================ */
.pricing-section { background: var(--white); }

.pricing-card {
    max-width: 680px;
    margin: 0 auto 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pricing-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s;
}

.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: rgba(30, 58, 95, 0.03); }

/* Highlight row gets a left accent bar */
.pricing-row--highlight {
    background: rgba(30, 58, 95, 0.03);
    border-left: 3px solid var(--gold);
}

.pricing-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.pricing-dots {
    flex: 1;
    border-bottom: 1px dashed var(--border);
    margin-bottom: 2px;
}

.pricing-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.pricing-per {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 2px;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.65;
}

.pricing-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section { background: var(--cream); }

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s, background 0.2s;
}

.faq-q:hover {
    color: var(--navy);
    background: rgba(30, 58, 95, 0.03);
}

.faq-q[aria-expanded="true"] { color: var(--navy); }

.faq-icon {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 300;
    color: var(--sage);
    line-height: 1;
    transition: transform 0.25s, color 0.2s;
}

.faq-q[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: var(--navy);
}

.faq-a {
    padding: 4px 28px 24px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
}

.faq-a strong { color: var(--text-dark); }

/* ============================================================
   FINAL CTA — REFINED
   · Steeper gradient angle differentiates it from the hero
   · Horizontal ruling (vs. hero dot grid) adds quiet texture
   · Concentric ring motif = subtle notary seal impression
   · Content narrowed for stronger typographic presence
   · Heading scales up slightly — makes this the closing moment
============================================================ */
.cta-section {
    background: linear-gradient(158deg, #162D4A 0%, var(--navy) 45%, #2A4F7A 100%);
    position: relative;
    overflow: hidden;
}

/* Horizontal ruled texture — distinct from hero dot grid */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 44px;
    pointer-events: none;
    z-index: 0;
}

/* Concentric ring seal motif — centered behind content.
   Suggests a notary stamp impression without being literal. */
.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 560px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 81, 0.07);
    box-shadow:
        0 0 0 36px rgba(200, 169, 81, 0.035),
        0 0 0 76px rgba(200, 169, 81, 0.018),
        0 0 0 126px rgba(200, 169, 81, 0.008);
    pointer-events: none;
    z-index: 0;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

/* Thin gold bar divider — visual breath between sections */
.cta-divider {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
    margin: 0 auto 28px;
}

.cta-eyebrow {
    color: var(--gold-light);
    letter-spacing: 0.22em;
}

/* Heading slightly larger than before — this is the closing statement */
.cta-heading {
    font-family: var(--font-serif);
    font-size: clamp(34px, 5.5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.cta-heading em {
    font-style: italic;
    color: var(--gold-light);
}

/* Tighter max-width forces line breaks that feel more intentional */
.cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.78;
    max-width: 460px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* Response note — quiet trust signal below the buttons */
.cta-response-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.36);
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.cta-response-note svg {
    flex-shrink: 0;
    opacity: 0.5;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--text-dark);
    padding: 32px 0;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.footer-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
============================================================ */
@media (max-width: 900px) {

    .section { padding: 64px 0; }

    /* Nav: hide links, keep CTA */
    .nav-links { display: none; }
    .nav-cta   { margin-left: auto; }

    /* Hero: stack vertically, center text */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        padding: 64px 24px;
    }
    .hero-sub     { margin-left: auto; margin-right: auto; }
    .hero-ctas    { justify-content: center; }
    .hero-trust   { justify-content: center; }
    .hero-visual  { order: -1; max-width: 340px; margin: 0 auto; }
    /* Center the eyebrow flex and hide the leading bar on centered layout */
    .hero-eyebrow { justify-content: center; }
    .hero-eyebrow::before { display: none; }

    /* Trust bar: 2×2 */
    .trust-bar-inner          { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2)  { border-right: none; }
    .trust-item:nth-child(3),
    .trust-item:nth-child(4)  { border-top: 1px solid var(--border-light); }

    /* Services: 2 columns */
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    /* Steps: single column */
    .steps-row { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .step:last-child { border-bottom: none; }

    /* Why: stack */
    .why-inner { grid-template-columns: 1fr; gap: 48px; }
    .why-text-col .section-eyebrow,
    .why-text-col .section-heading { text-align: center; }
    .why-intro { margin-left: auto; margin-right: auto; }
    .why-text-col { display: flex; flex-direction: column; align-items: center; }

    /* Area: stack */
    .area-inner { grid-template-columns: 1fr; gap: 40px; }

    /* Footer */
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 600px)
============================================================ */
@media (max-width: 600px) {

    .section { padding: 48px 0; }

    .hero-inner    { padding: 52px 20px; }
    .hero-heading  { font-size: 34px; }
    .hero-sub      { font-size: 15px; }
    .hero-ctas     { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 320px; }

    /* Trust bar: keep 2×2, tighten */
    .trust-item { padding: 16px; font-size: 12px; gap: 10px; }

    /* Services: single column */
    .services-grid { grid-template-columns: 1fr; }

    /* Steps */
    .step { padding: 32px 24px; }
    .step-num { font-size: 42px; }

    /* Pricing */
    .pricing-row  { flex-wrap: wrap; gap: 8px; padding: 16px 20px; }
    .pricing-dots { display: none; }
    .pricing-price { width: 100%; }

    /* FAQ */
    .faq-q { padding: 18px 20px; font-size: 14px; }
    .faq-a { padding: 4px 20px 20px; }

    /* CTA */
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 320px; }

    /* Footer */
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-nav   { justify-content: center; }
    .area-chips   { justify-content: center; }
}
