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

:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-muted: #f1f5f9;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --text: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --accent: #0d9488;
    --accent-dark: #0f766e;
    --accent-light: #ccfbf1;
    --accent-bg: #f0fdfa;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --radius: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navigation ── */
.nav {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.nav-logo .ref {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* Services dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.nav-dropdown:hover > a svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: -12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    z-index: 200;
}

/* Invisible hover bridge — prevents menu from closing when mouse
   crosses the 10px gap between trigger and dropdown panel */
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 9px 18px;
    font-size: 0.88rem;
    color: var(--text-secondary) !important;
    border-radius: 0;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
    background: var(--accent-bg);
    color: var(--accent-dark) !important;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--accent-dark);
}

/* ── Hero (homepage style) ── */
.hero {
    padding: 80px 0 72px;
    text-align: center;
}

/* ── Page Hero (service pages) ── */
.page-hero {
    padding: 72px 0 64px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.page-hero .breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero .breadcrumb svg {
    width: 12px;
    height: 12px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-bg);
    border: 1px solid #99f6e4;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 28px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero h1,
.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--navy);
    max-width: 780px;
    margin: 0 auto 24px;
}

.hero-sub,
.page-hero .hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: var(--accent-bg);
}

/* ── Trust Bar ── */
.trust-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

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

.trust-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.trust-stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── Sections ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* ── Services Grid ── */
.services {
    padding: 96px 0 80px;
}

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

.service-card {
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Feature Grid ── */
.feature-section {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 0;
}

.feature-card {
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg);
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Content Two-col ── */
.content-split {
    padding: 80px 0;
    background: var(--bg-soft);
}

.content-split-inner {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

.content-split-text {
    flex: 1;
}

.content-split-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.content-split-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.content-split-text p:last-child {
    margin-bottom: 0;
}

.content-split-aside {
    flex: 0 0 340px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
}

.content-split-aside h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.check-list li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--accent);
    margin-top: 1px;
}

/* ── How It Works Steps ── */
.how-it-works {
    padding: 80px 0 96px;
    background: var(--bg-soft);
}

.how-header {
    text-align: center;
    margin-bottom: 56px;
}

.how-header .section-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

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

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.step p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

/* ── Detailed Process Steps (How It Works page) ── */
.process-section {
    padding: 80px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.process-step:last-child {
    border-bottom: none;
}

/* Process list inside content-split (IT Procurement page) */
.process-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.process-list li {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: flex-start;
}

.process-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.process-list li:first-child {
    padding-top: 0;
}

.process-list li div strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.process-list li div p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

.process-step-num {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.process-step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-step-content p {
    font-size: 0.97rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}

.process-step-content p:last-child {
    margin-bottom: 0;
}

.process-step-tag {
    display: inline-block;
    padding: 3px 12px;
    background: var(--accent-bg);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

/* ── Why Free ── */
.why-free {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.why-free-inner {
    display: flex;
    align-items: center;
    gap: 64px;
}

.why-free-content {
    flex: 1;
}

.why-free-visual {
    flex: 0 0 380px;
    background: var(--accent-bg);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid #99f6e4;
}

.why-free-visual h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.why-free-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-free-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.why-free-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
    margin-top: 2px;
}

.why-free-content .section-desc {
    margin-bottom: 24px;
}

.why-free-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials {
    padding: 96px 0 80px;
    background: var(--bg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-header .section-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

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

.testimonial-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    background: var(--bg);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #f59e0b;
}

.testimonial-quote {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.72;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-author {
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}

.testimonial-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.testimonial-title {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.testimonial-industry {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 10px;
    background: var(--accent-bg);
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── FAQ ── */
.faq {
    padding: 80px 0 96px;
    background: var(--bg-soft);
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header .section-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

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

.faq-category {
    margin-bottom: 40px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category-label::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--accent-light);
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.2s;
}

.faq-item.open .faq-question {
    color: var(--accent);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

.faq-answer-inner {
    padding: 0 4px 18px;
    font-size: 0.91rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.faq-answer-inner ol {
    padding-left: 18px;
    margin-top: 8px;
}

.faq-answer-inner ol li {
    margin-bottom: 4px;
}

/* ── Why Us ── */
.why-us {
    padding: 96px 0;
    border-bottom: 1px solid var(--border);
}

.why-us .section-desc {
    margin-bottom: 48px;
}

.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.whyus-card {
    border-radius: var(--radius);
    padding: 36px 32px;
}

.whyus-difference {
    background: var(--bg);
    border: 1px solid var(--border);
}

.whyus-difference h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.whyus-difference p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.whyus-tagline {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 40px;
    font-style: normal;
}

.whyus-tagline em {
    font-style: italic;
    color: var(--accent-dark);
    font-weight: 600;
}

/* ── Contact CTA ── */
.contact-cta {
    padding: 96px 0;
    background: var(--navy);
}

.contact-cta .section-title {
    color: #ffffff;
}

.contact-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.contact-cta-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-cta-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--accent);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 20px;
}

.contact-cta-email:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.contact-cta-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
}

/* ── About Page ── */
.about-section {
    padding: 80px 0;
}

.about-mission {
    padding: 80px 0;
    background: var(--navy);
    text-align: center;
}

.about-mission h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 740px;
    margin: 0 auto 24px;
    line-height: 1.2;
}

.about-mission p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

.about-story {
    padding: 80px 0;
    background: var(--bg-soft);
}

.about-story-inner {
    max-width: 760px;
    margin: 0 auto;
}

.about-story-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-story-inner p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-story-inner p:last-child {
    margin-bottom: 0;
}

/* ── Footer ── */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.footer-brand .ref {
    color: var(--accent);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-address {
    font-style: normal;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

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

.footer-nav a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── Skip to Content (ADA) ── */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--accent-dark);
    outline-offset: 2px;
}

/* ── Focus Indicators (ADA/WCAG) ── */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.btn-primary:focus-visible {
    outline-color: #fff;
    box-shadow: 0 0 0 4px var(--accent-dark);
}

.contact-cta-email:focus-visible {
    outline-color: #fff;
    box-shadow: 0 0 0 4px var(--accent-dark);
}

/* ── Hamburger Menu ── */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.15s;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-btn:hover {
    background: var(--bg-muted);
}

.hamburger-btn .hamburger-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    position: relative;
    transition: background 0.2s;
}

.hamburger-btn .hamburger-icon::before,
.hamburger-btn .hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: transform 0.25s ease, top 0.25s ease;
}

.hamburger-btn .hamburger-icon::before { top: -7px; }
.hamburger-btn .hamburger-icon::after  { top: 7px; }

.hamburger-btn[aria-expanded="true"] .hamburger-icon {
    background: transparent;
}

.hamburger-btn[aria-expanded="true"] .hamburger-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hamburger-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ── Mobile Nav Overlay ── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-nav.open .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.mobile-nav-brand .ref {
    color: var(--accent);
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
    line-height: 1;
}

.mobile-nav-close:hover {
    background: var(--bg-muted);
    color: var(--navy);
}

.mobile-nav-close svg {
    display: block;
}

.mobile-nav-section {
    margin-bottom: 20px;
}

.mobile-nav-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    padding: 0 4px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-links a {
    display: block;
    padding: 10px 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
    background: var(--accent-bg);
    color: var(--accent-dark);
}

.mobile-nav-cta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.mobile-nav-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
    width: 100%;
}

.mobile-nav-cta a:hover {
    background: var(--accent-dark);
}

/* Body scroll lock when mobile nav open */
body.mobile-nav-open {
    overflow: hidden;
}

/* ── CTA Section (How It Works / About pages) ── */
.cta-section {
    padding: 80px 0;
    background: var(--navy);
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--accent);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 16px;
}

.btn-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
}

/* ── Process Step Timeline ── */
.process-step-timeline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 500;
    margin-top: 8px;
}

.process-step-timeline svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* ── About page extras ── */
.about-mission-inner {
    max-width: 740px;
    margin: 0 auto;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--bg-soft);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

/* ── Hero Actions (How It Works / About) ── */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.page-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--navy);
    max-width: 780px;
    margin: 0 auto 24px;
}

.page-hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero-inner {
    text-align: center;
}

/* ── Breadcrumb nav (How It Works / About) ── */
nav.breadcrumb {
    padding: 16px 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumb-list a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    display: flex;
    align-items: center;
}

/* ── Utilities ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

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

/* ── Responsive ── */
@media (max-width: 900px) {
    .why-free-inner {
        flex-direction: column;
        gap: 40px;
    }
    .why-free-visual {
        flex: auto;
        width: 100%;
    }
    .content-split-inner {
        flex-direction: column;
        gap: 40px;
    }
    .content-split-aside {
        flex: auto;
        width: 100%;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-links {
        display: none;
    }
    .hamburger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero, .page-hero {
        padding: 56px 0 48px;
    }
    .trust-stats {
        gap: 32px;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .steps::before {
        display: none;
    }
    .services, .how-it-works, .why-free, .feature-section, .process-section, .about-section, .about-story {
        padding: 64px 0;
    }
    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-us {
        padding: 64px 0;
    }
    .contact-cta {
        padding: 64px 0;
    }
    .whyus-card {
        padding: 28px 24px;
    }
    .testimonials, .faq {
        padding: 64px 0;
    }
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    .cta-section {
        padding: 64px 0;
    }
    .testimonials-section {
        padding: 64px 0;
    }
}

@media (max-width: 540px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero h1, .page-hero h1, .page-hero-title {
        font-size: 1.85rem;
    }
    .trust-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .nav-cta span {
        display: none;
    }
    .contact-cta-email {
        font-size: 1rem;
        padding: 14px 28px;
    }
    .mobile-nav-panel {
        width: 100%;
        max-width: 100vw;
    }

    .process-list li {
        gap: 14px;
    }

    .process-list .process-step-num {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

/* ── Accessibility Widget ── */
.a11y-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
    transition: background 0.2s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.a11y-btn:hover {
    background: var(--accent-dark);
    transform: scale(1.08);
}

.a11y-btn:focus-visible {
    outline: 3px solid var(--accent-dark);
    outline-offset: 3px;
}

.a11y-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.a11y-panel {
    position: fixed;
    bottom: 84px;
    left: 24px;
    width: 260px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 9991;
    padding: 20px;
    display: none;
    animation: a11yFadeIn 0.2s ease;
}

.a11y-panel.open {
    display: block;
}

@keyframes a11yFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.a11y-panel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.a11y-panel-title svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.a11y-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.a11y-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.a11y-option-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.a11y-option-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.a11y-size-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.a11y-size-btn:hover {
    background: var(--accent-bg);
    border-color: var(--accent);
}

.a11y-toggle {
    width: 42px;
    height: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-muted);
    cursor: pointer;
    position: relative;
    transition: background 0.2s, border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.a11y-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.a11y-toggle.active {
    background: var(--accent);
    border-color: var(--accent);
}

.a11y-toggle.active::after {
    transform: translateX(18px);
}

.a11y-reset {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 8px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, color 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.a11y-reset:hover {
    background: var(--bg-muted);
    color: var(--text);
}

/* High contrast mode */
body.a11y-high-contrast {
    --bg: #000000;
    --bg-soft: #111111;
    --bg-muted: #222222;
    --navy: #ffffff;
    --navy-light: #f0f0f0;
    --text: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #cccccc;
    --border: #555555;
    --border-light: #444444;
}

body.a11y-high-contrast .nav,
body.a11y-high-contrast .mobile-nav-panel {
    background: #111111;
}

body.a11y-high-contrast .service-card,
body.a11y-high-contrast .feature-card,
body.a11y-high-contrast .content-split-aside,
body.a11y-high-contrast .testimonial-card,
body.a11y-high-contrast .whyus-difference {
    background: #111111;
    border-color: #555555;
}

body.a11y-high-contrast .a11y-panel {
    background: #111111;
    border-color: #555555;
}

body.a11y-high-contrast .a11y-size-btn {
    background: #222222;
    border-color: #555555;
    color: #ffffff;
}

body.a11y-high-contrast .a11y-toggle {
    background: #333333;
    border-color: #555555;
}

/* Highlight links mode */
body.a11y-highlight-links a {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

body.a11y-highlight-links a:not(.btn-primary):not(.btn-secondary):not(.btn-cta):not(.nav-cta):not(.contact-cta-email):not(.mobile-nav-cta a) {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}
