*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:      #0F1F3D;
    --navy-mid:  #1B2F52;
    --navy-card: #162441;
    --teal:      #00838F;
    --teal-lt:   #00BFD0;
    --teal-dim:  #D8F3F6;
    --white:     #FFFFFF;
    --off-white: #F5F8FC;
    --ink:       #1A2332;
    --muted:     #5E7191;
    --border:    #DDE4EE;
    --gold:      #C8963C;
    --gold-lt:   #FDF3E0;
}

/*html { scroll-behavior: smooth; }*/
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding: 0 !important;
    min-width: 100%;
}

.page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ══════════════════════════════════════════════════
   HERO — split layout
══════════════════════════════════════════════════ */
.hero {
    background: var(--navy);
    padding: 100px 0 88px;
    position: relative;
    overflow: hidden;
}

/* Dot-grid texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,191,208,0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Warm glow top-right */
.hero::after {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,131,143,0.2) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* ── Left column ── */
.hero-left {}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-lt);
    margin-bottom: 20px;
}
.eyebrow::before {
    content: '';
    width: 20px; height: 1.5px;
    background: var(--teal-lt);
    flex-shrink: 0;
}

.hero-left h1 {
    /*font-family: 'Fraunces', serif;*/
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 10px;
}

.hero-left h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--teal-lt);
}

.hero-left .lead {
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.58);
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-left .lead strong { color: rgba(255,255,255,0.88); font-weight: 500; }

/* Tool pills */
.tool-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.tool-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px 9px 12px;
    border-radius: 10px;
    border: 1px solid;
    font-size: 13.5px;
    font-weight: 500;
}

.tool-pill.taxdash {
    background: rgba(0,131,143,0.15);
    border-color: rgba(0,191,208,0.35);
    color: var(--teal-lt);
}

.tool-pill.xero {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}

.tool-pill .pill-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tool-pill.taxdash .pill-dot { background: var(--teal-lt); }
.tool-pill.xero    .pill-dot { background: rgba(255,255,255,0.5); }

.tool-pill .pill-desc {
    font-size: 11.5px;
    font-weight: 300;
    opacity: 0.7;
    margin-left: 2px;
}

/* ── Right column — summary card ── */
.hero-right {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 32px;
}

.hero-right h3 {
    /*font-family: 'Fraunces', serif;*/
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
}

.check-list li .ck {
    flex-shrink: 0;
    width: 20px; height: 20px;
    background: rgba(0,191,208,0.18);
    border: 1px solid rgba(0,191,208,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--teal-lt);
    margin-top: 2px;
}

.check-list li strong { color: rgba(255,255,255,0.9); font-weight: 500; }

/* ══════════════════════════════════════════════════
   SERVICE OPTIONS — two cards side by side
══════════════════════════════════════════════════ */
.options-section {
    padding: 80px 0 72px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    width: 20px; height: 1.5px;
    background: var(--teal);
}

.options-header {
    margin-bottom: 44px;
}

.options-header h2 {
    /*font-family: 'Fraunces', serif;*/
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 10px;
}

.options-header p {
    font-size: 15px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.opt-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s, transform 0.2s;
}

.opt-card:hover {
    box-shadow: 0 8px 32px rgba(0,131,143,0.1);
    transform: translateY(-2px);
}

.opt-head {
    padding: 22px 26px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.opt-card.self .opt-head  { background: var(--teal-dim); }
.opt-card.full .opt-head  { background: var(--navy); }

.opt-head .opt-title {
    /*font-family: 'Fraunces', serif;*/
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
}
.opt-card.self .opt-title { color: var(--navy); }
.opt-card.full .opt-title { color: var(--white); }

.opt-head .opt-icon {
    font-size: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}

.opt-body {
    background: var(--off-white);
    padding: 24px 26px 28px;
}

.opt-card.full .opt-body { background: #F7F9FC; }

.opt-body p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 16px;
}

.opt-body p strong { color: var(--teal); }

.opt-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 100px;
}

.opt-card.self .opt-tag {
    background: rgba(0,131,143,0.1);
    color: var(--teal);
    border: 1px solid rgba(0,131,143,0.25);
}

.opt-card.full .opt-tag {
    background: rgba(15,31,61,0.08);
    color: var(--navy);
    border: 1px solid rgba(15,31,61,0.15);
}

/* ══════════════════════════════════════════════════
   PRICING NOTE — bottom strip
══════════════════════════════════════════════════ */
.pricing-note {
    background: var(--navy);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}

.pricing-note::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(0,191,208,0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,191,208,0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.pn-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    max-width: 820px;
}

.pn-icon {
    width: 52px; height: 52px;
    background: rgba(0,191,208,0.15);
    border: 1px solid rgba(0,191,208,0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.pn-inner h3 {
    /*font-family: 'Fraunces', serif;*/
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.pn-inner p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

.pn-inner p strong { color: rgba(255,255,255,0.85); font-weight: 500; }

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity:0; transform:translateY(14px); }
    to   { opacity:1; transform:translateY(0); }
}

.hero-left  { animation: fadeUp 0.65s ease both; }
.hero-right { animation: fadeUp 0.65s 0.12s ease both; }
.opt-card:nth-child(1) { animation: fadeUp 0.5s 0.1s ease both; }
.opt-card:nth-child(2) { animation: fadeUp 0.5s 0.2s ease both; }
.pn-inner   { animation: fadeUp 0.55s 0.1s ease both; }

/* ── Responsive ── */
@media (max-width: 860px) {
    .hero-inner    { grid-template-columns: 1fr; gap: 40px; }
    .hero-right    { display: none; }
    .options-grid  { grid-template-columns: 1fr; }
    .pn-inner      { grid-template-columns: 1fr; }
    .pn-icon       { display: none; }
}

@media (max-width: 560px) {
    .hero { padding: 60px 0 52px; }
    .options-section { padding: 52px 0; }
}



/* ═══ PRICING PAGE STYLES ═══ */


/* ── Reset & base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Utility ──────────────────────────────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 18px; height: 1.5px;
    background: var(--teal);
}

/* ── Page wrapper ─────────────────────────────────────────────────── */
.page {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 1 — HERO INTRO
══════════════════════════════════════════════════════════════════ */
.hero {
    background: var(--navy);
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(0,131,143,0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,131,143,0.06) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

/* Teal glow blob */
.hero::after {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(0,131,143,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-left .eyebrow { color: var(--teal-lt); }
.hero-left .eyebrow::before { background: var(--teal-lt); }

.hero-left h1 {
    /*font-family: 'Fraunces', serif;*/
    font-weight: 600;
    font-size: clamp(36px, 4.5vw, 48px);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-left h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--teal-lt);
}

.hero-left p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.62);
    max-width: 440px;
    margin-bottom: 32px;
}

.hero-left p strong {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Hero stat cards */
.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-pill {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-pill .val {
    /*font-family: 'Fraunces', serif;*/
    font-weight: 600;
    font-size: 22px;
    color: var(--teal-lt);
    line-height: 1;
}

.stat-pill .lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.05em;
}

/* Hero right — key facts card */
.hero-right {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(8px);
}

.hero-right h3 {
    /*font-family: 'Fraunces', serif;*/
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.fact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
}

.fact-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: rgba(0,168,184,0.2);
    border: 1px solid rgba(0,168,184,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--teal-lt);
    margin-top: 1px;
}

.fact-list li strong { color: var(--white); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════════
   SECTION 2 — PRICING TABLE
══════════════════════════════════════════════════════════════════ */
.pricing-section {
    padding: 88px 0 64px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 52px;
}

.pricing-header h2 {
    /*font-family: 'Fraunces', serif;*/
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.15;
}

.pricing-header h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--teal);
}

.pricing-header p {
    font-size: 15.5px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Column header pills */
.col-pills {
    display: grid;
    grid-template-columns: 1fr 160px 160px;
    gap: 10px;
    margin-bottom: 8px;
    padding: 0 4px;
}

.col-pills .spacer { }

.col-pill {
    border-radius: 10px;
    padding: 10px 16px;
    text-align: center;
}

.col-pill.sm {
    background: var(--pill-sm);
    border: 1.5px solid var(--teal-dim);
}

.col-pill.fm {
    background: var(--pill-fm);
    border: 1.5px solid #C5D9F5;
}

.col-pill .icon { font-size: 18px; display: block; margin-bottom: 3px; }
.col-pill .name {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.col-pill.sm .name { color: var(--teal); }
.col-pill.fm .name { color: var(--blue-border); }
.col-pill .sub {
    font-size: 11px;
    color: var(--muted);
    display: block;
    margin-top: 1px;
    font-family: 'DM Mono', monospace;
}

/* Category rows */
.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

/* Category divider */
.cat-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 0 6px;
}

.cat-divider span {
    font-size: 12px;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.cat-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Pricing row */
.price-row {
    display: grid;
    grid-template-columns: 1fr 160px 160px;
    gap: 10px;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0 6px 0 20px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    cursor: default;
}

.price-row:hover {
    border-color: rgba(0,131,143,0.3);
    box-shadow: 0 4px 20px rgba(0,131,143,0.08);
    transform: translateY(-1px);
}

.price-row .label {
    padding: 18px 0;
}

.price-row .label .name {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 3px;
}

.price-row .label .meta {
    font-size: 12.5px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
}

.source-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-family: 'DM Mono', monospace;
    color: var(--muted);
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 100px;
    margin-top: 5px;
}

.price-cell {
    text-align: center;
    padding: 14px 8px;
}

.price-cell .amount {
    /*font-family: 'Fraunces', serif;*/
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    display: block;
    margin-bottom: 2px;
}

.price-cell .period {
    font-size: 11px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
}

.price-cell.sm .amount { color: var(--teal); }
.price-cell.fm .amount { color: var(--blue-border); }

/* Table footer note */
.table-note {
    font-size: 12.5px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    padding: 10px 4px 0;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   OVER-25 CALLOUT
══════════════════════════════════════════════════════════════════ */
.over25 {
    margin: 28px 0 0;
    background: var(--white);
    border-left: 3.5px solid var(--blue-border);
    border-radius: 0 14px 14px 0;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 2px 16px rgba(43,95,201,0.07);
}

.over25-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: #EEF3FD;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.over25-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.over25-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
}

.over25-body p a {
    color: var(--blue-border);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(43,95,201,0.3);
    transition: border-color 0.2s;
}
.over25-body p a:hover { border-color: var(--blue-border); }

/* ══════════════════════════════════════════════════════════════════
   SECTION 4 — ALWAYS INCLUDED
══════════════════════════════════════════════════════════════════ */
.included-section {
    background: var(--navy);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern */
.included-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,131,143,0.1) 1.5px, transparent 1.5px);
    background-size: 36px 36px;
    pointer-events: none;
}

/* Bottom teal glow */
.included-section::after {
    content: '';
    position: absolute;
    bottom: -160px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,131,143,0.15) 0%, transparent 65%);
    pointer-events: none;
}

.included-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.included-header .eyebrow { color: var(--teal-lt); }
.included-header .eyebrow::before { background: var(--teal-lt); }
.included-header .eyebrow { margin-bottom: 12px; }

.included-header h2 {
    /*font-family: 'Fraunces', serif;*/
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

/* 4-col grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.inc-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    padding: 30px 24px 28px;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.inc-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,168,184,0.3);
    transform: translateY(-3px);
}

.inc-card .ic-icon {
    font-size: 30px;
    margin-bottom: 18px;
    display: block;
}

.inc-card .ic-title {
    /*font-family: 'Fraunces', serif;*/
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 10px;
}

.inc-card .ic-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
}

/* ── Animations ───────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hero-inner   { animation: fadeUp 0.7s ease both; }
.pricing-header { animation: fadeUp 0.6s 0.1s ease both; }

.price-row:nth-child(1) { animation: fadeUp 0.5s 0.15s ease both; }
.price-row:nth-child(2) { animation: fadeUp 0.5s 0.2s  ease both; }
.price-row:nth-child(3) { animation: fadeUp 0.5s 0.25s ease both; }
.price-row:nth-child(4) { animation: fadeUp 0.5s 0.3s  ease both; }
.price-row:nth-child(5) { animation: fadeUp 0.5s 0.35s ease both; }
.price-row:nth-child(6) { animation: fadeUp 0.5s 0.4s  ease both; }
.price-row:nth-child(7) { animation: fadeUp 0.5s 0.45s ease both; }

.inc-card:nth-child(1) { animation: fadeUp 0.5s 0.1s ease both; }
.inc-card:nth-child(2) { animation: fadeUp 0.5s 0.2s ease both; }
.inc-card:nth-child(3) { animation: fadeUp 0.5s 0.3s ease both; }
.inc-card:nth-child(4) { animation: fadeUp 0.5s 0.4s ease both; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-right { display: none; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .col-pills { grid-template-columns: 1fr 130px 130px; }
    .price-row { grid-template-columns: 1fr 130px 130px; }
    .included-grid { grid-template-columns: 1fr; }
    .hero { padding: 60px 0 52px; }
    .pricing-section { padding: 56px 0 44px; }
    .included-section { padding: 60px 0; }
}


/* ══════════════════════════════════════════════════════════════════
   SECTION 3 — SOFTWARE COMPARISON
══════════════════════════════════════════════════════════════════ */
.software-section {
    background: var(--navy);
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
}

.software-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(0,131,143,0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,131,143,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.software-header {
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.software-header h2 {
    /*font-family: 'Fraunces', serif;*/
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.software-header .sub {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
}

/* Two-col grid */
.sw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.sw-card {
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Card header bar */
.sw-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
}

.sw-head .sw-name {
    /*font-family: 'Fraunces', serif;*/
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.sw-head .sw-tag {
    font-style: italic;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.01em;
}

/* TaxDash card */
.sw-card.taxdash .sw-head { background: var(--teal); }
.sw-card.taxdash .sw-body { background: var(--navy-mid); border: 1px solid rgba(0,168,184,0.2); border-top: none; }

/* Xero card */
.sw-card.xero .sw-head { background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.1); }
.sw-card.xero .sw-body { background: #F2F4F7; border: 1px solid var(--border); border-top: none; }

/* Card body */
.sw-body {
    flex: 1;
    padding: 28px 24px 32px;
    border-radius: 0 0 18px 18px;
}

.sw-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sw-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.55;
}

/* TaxDash bullets — white text */
.sw-card.taxdash .sw-bullets li { color: rgba(255,255,255,0.78); }

.sw-card.taxdash .sw-bullets li::before {
    content: '';
    flex-shrink: 0;
    width: 7px; height: 7px;
    background: var(--teal-lt);
    border-radius: 50%;
    margin-top: 7px;
}

/* Xero bullets — dark text */
.sw-card.xero .sw-bullets li { color: var(--ink); }

.sw-card.xero .sw-bullets li::before {
    content: '';
    flex-shrink: 0;
    width: 7px; height: 7px;
    background: var(--navy);
    border-radius: 50%;
    margin-top: 7px;
}

/* Bottom callout strip */
.sw-callout {
    position: relative;
    z-index: 1;
    background: rgba(0,168,184,0.12);
    border: 1px solid rgba(0,168,184,0.25);
    border-radius: 12px;
    padding: 18px 28px;
    text-align: center;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--sky);
    line-height: 1.55;
}

.sw-callout strong { color: var(--white); }

@media (max-width: 720px) {
    .sw-grid { grid-template-columns: 1fr; }
    .software-section { padding: 60px 0 52px; }
}



/* ══════════════════════════════════════════════════════════════════
   CONTACT FORM SECTION
══════════════════════════════════════════════════════════════════ */
.contact-section {
    background: var(--off-white);
    padding: 88px 0 96px;
    position: relative;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 768px;
    margin: 0 auto;
}

/* ── Left: context copy ── */


/* ── Right: form card ── */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(15,31,61,0.07);
    position: static;
}

.form-card-title {
    /*font-family: 'Fraunces', serif;*/
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

/* Field groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.field-group {
    margin-bottom: 18px;
}

.field-label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px;
}

.field-label .required {
    color: var(--teal);
    margin-left: 2px;
}

.form-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--off-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    color: var(--ink);
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
}

.form-input::placeholder { color: #A8B5C8; }

.form-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,131,143,0.1);
    background: var(--white);
}

/* ── Service choice — two big clickable cards ── */
.service-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.service-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    background: var(--off-white);
}

.service-label:hover {
    border-color: var(--teal);
    background: #F5FCFC;
}

.service-option input:checked + .service-label {
    border-color: var(--teal);
    background: rgba(0,131,143,0.06);
    box-shadow: 0 0 0 3px rgba(0,131,143,0.1);
}

.service-label-icon { font-size: 20px; margin-bottom: 4px; }

.service-label-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.service-label-sub {
    font-size: 11.5px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.02em;
}

/* Selection indicator dot */
.service-option input:checked + .service-label .service-label-name::after {
    content: ' ✓';
    color: var(--teal);
}

/* ── Transaction toggle — two large buttons ── */
.tx-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.tx-option {
    position: relative;
}

.tx-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.tx-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 14px 10px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    background: var(--off-white);
    text-align: center;
}

.tx-label:hover { border-color: var(--teal); background: #F5FCFC; }

.tx-option input:checked + .tx-label {
    border-color: var(--teal);
    background: rgba(0,131,143,0.06);
    box-shadow: 0 0 0 3px rgba(0,131,143,0.1);
}

.tx-label-val {
    /*font-family: 'Fraunces', serif;*/
    font-size: 18px;
    font-weight: 600;
    color: var(--teal);
    line-height: 1;
}

.tx-option input:checked + .tx-label .tx-label-val { color: var(--teal); }

.tx-label-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45;
}

/* ── Submit button ── */
.form-submit {
    width: 100%;
    padding: 15px 24px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
    margin-top: 4px;
}

.form-submit:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15,31,61,0.2);
}

.form-submit:active { transform: translateY(0); }

.form-note {
    margin-top: 14px;
    text-align: center;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}

.form-note a {
    color: var(--teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,131,143,0.3);
    transition: border-color 0.15s;
}
.form-note a:hover { border-color: var(--teal); }

/* ── Responsive ── */
@media (max-width: 860px) {
    .contact-inner { max-width: 100%; }
}

@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
    .service-choice { grid-template-columns: 1fr; }
}