:root {
    --primary: #1f5aa8;
    --primary-dark: #194c8e;
    --primary-soft: #eaf1fb;
    --accent: #d4a017;
    --accent-soft: #fbf2dc;
    --accent-dark: #a37d10;
    --bg: #ffffff;
    --ink: #13213a;
    --muted: #5a6b85;
    --border: #e3e8f0;
    --cream: #f7f9fc;
    --shadow-soft: 0 4px 24px -8px rgba(31, 90, 168, .18);
    --shadow-lift: 0 18px 50px -20px rgba(31, 90, 168, .35);
}

* {
    box-sizing: border-box;
    border-color: var(--border)
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    letter-spacing: -.02em;
    margin: 0;
    line-height: 1.1
}

p {
    margin: 0
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none
}

.container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.25rem
}

@media(min-width:640px) {
    .container {
        padding: 0 1.5rem
    }
}

@media(min-width:1024px) {
    .container {
        padding: 0 2rem
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--primary-soft);
    color: var(--primary);
    padding: .25rem .75rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.25rem;
    border-radius: .6rem;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .15s, box-shadow .2s, background .2s;
    border: 1px solid transparent
}

.btn-lg {
    padding: .95rem 1.6rem;
    font-size: 1rem
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-soft)
}

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

.btn-accent {
    background: var(--accent);
    color: #231806;
    box-shadow: var(--shadow-soft)
}

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

.btn-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: var(--shadow-lift)
}

.btn-hero:hover {
    transform: translateY(-2px)
}

.btn-outline {
    border-color: rgba(255, 255, 255, .3);
    color: #fff
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1)
}

.btn-ghost {
    border-color: var(--border);
    color: var(--ink);
    background: #fff
}

.btn-ghost:hover {
    border-color: var(--primary)
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
    gap: 1rem
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem
}

.logo img {
    height: 2.4rem;
    width: 2.4rem;
    border-radius: .5rem;
    object-fit: cover
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.logo-text strong {
    font-family: 'Plus Jakarta Sans';
    font-size: 1.05rem;
    color: var(--ink)
}

.logo-text span {
    font-size: .7rem;
    color: var(--muted);
    margin-top: .15rem
}

.nav {
    display: none;
    gap: 1.75rem;
    align-items: center
}

.nav a {
    font-size: .92rem;
    font-weight: 500;
    color: #3b475e;
    transition: color .15s
}

.nav a:hover,
.nav a.active {
    color: var(--primary)
}

.header-cta {
    display: none
}

@media(min-width:1024px) {

    .nav,
    .header-cta {
        display: flex
    }
}

.menu-btn {
    display: flex;
    padding: .5rem;
    border-radius: .4rem
}

@media(min-width:1024px) {
    .menu-btn {
        display: none
    }
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    background: #fff;
    padding: 1rem 0
}

.mobile-nav.open {
    display: block
}

.mobile-nav a {
    display: block;
    padding: .7rem 1rem;
    border-radius: .4rem;
    font-weight: 500;
    color: #3b475e
}

.mobile-nav a:hover {
    background: var(--cream)
}

/* Sections */
section {
    position: relative
}

.section-pad {
    padding: 5rem 0
}

@media(min-width:640px) {
    .section-pad {
        padding: 6rem 0
    }
}

.muted {
    color: var(--muted)
}

.text-center {
    text-align: center
}

.max-2xl {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto
}

.max-3xl {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto
}

.max-5xl {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto
}

/* Hero */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-soft), #fff 60%, var(--accent-soft))
}

@media(min-width:768px) {
    .hero {
        padding: 6rem 0 7rem
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center
}

@media(min-width:768px) {
    .hero-grid {
        grid-template-columns: 1.05fr 1fr
    }
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-top: 1.25rem
}

@media(min-width:640px) {
    .hero h1 {
        font-size: 3rem
    }
}

@media(min-width:768px) {
    .hero h1 {
        font-size: 3.6rem
    }
}

.hero .accent-text {
    color: var(--primary);
    position: relative;
    display: inline-block
}

.hero .accent-text::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .1em;
    height: .45rem;
    background: rgba(212, 160, 23, .4);
    z-index: -1
}

.hero p.lead {
    font-size: 1.15rem;
    color: var(--muted);
    margin-top: 1.5rem;
    max-width: 32rem
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    margin-top: 1.75rem;
    font-size: .88rem;
    color: #3b475e
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: .4rem
}

.hero-img-wrap {
    position: relative
}

.hero-img-wrap img {
    aspect-ratio: 4/5;
    width: 100%;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: var(--shadow-lift)
}

.hero-stat {
    position: absolute;
    left: 1.5rem;
    bottom: -1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-soft)
}

.hero-stat strong {
    display: block;
    color: var(--primary);
    font-size: 1.5rem;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700
}

.hero-stat span {
    font-size: .75rem;
    color: var(--muted)
}

/* Page hero */
.page-hero {
    background: linear-gradient(180deg, rgba(234, 241, 251, .6), #fff);
    padding: 4rem 0
}

@media(min-width:768px) {
    .page-hero {
        padding: 6rem 0
    }
}

.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 1.25rem;
    line-height: 1.05
}

@media(min-width:640px) {
    .page-hero h1 {
        font-size: 3rem
    }
}

@media(min-width:768px) {
    .page-hero h1 {
        font-size: 3.4rem
    }
}

.page-hero p.lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin-top: 1.25rem;
    max-width: 36rem
}

.page-hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center
}

@media(min-width:768px) {
    .page-hero-grid {
        grid-template-columns: 1.1fr 1fr
    }
}

.page-hero img {
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lift);
    object-fit: cover;
    width: 100%
}

/* Trust bar */
.trustbar {
    background: rgba(243, 247, 253, .6);
    border-block: 1px solid var(--border);
    padding: 1.5rem 0
}

.trustbar p {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--muted);
    text-align: center
}

.trustbar .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 2.5rem;
    margin-top: 1rem;
    opacity: .7
}

.trustbar .logos span {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    color: #4b5b78
}

/* Section heading */
.section-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem
}

.section-head h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 1rem
}

@media(min-width:640px) {
    .section-head h2 {
        font-size: 2.4rem
    }
}

.section-head p {
    margin-top: .75rem;
    color: var(--muted)
}

/* Cards grid */
.grid-3 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr
}

@media(min-width:768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

.grid-2 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr
}

@media(min-width:768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

.grid-3-sm {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr
}

@media(min-width:640px) {
    .grid-3-sm {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .grid-3-sm {
        grid-template-columns: repeat(3, 1fr)
    }
}

.grid-4 {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr
}

@media(min-width:640px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr)
    }
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: transform .2s, box-shadow .2s, border-color .2s
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 90, 168, .3);
    box-shadow: var(--shadow-soft)
}

.card .icon-box {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: .6rem;
    background: var(--primary-soft);
    color: var(--primary);
    margin-bottom: 1rem
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .4rem
}

.card p {
    color: var(--muted);
    font-size: .92rem
}

/* Pillar / How it works */
.step-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all .2s
}

.step-card:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 90, 168, .3);
    box-shadow: var(--shadow-soft)
}

.step-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.step-num {
    font-family: 'Plus Jakarta Sans';
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(212, 160, 23, .7)
}

/* Pillar cards (services) */
.pillar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all .2s
}

.pillar:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift)
}

.pillar-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden
}

.pillar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.pillar:hover .pillar-img img {
    transform: scale(1.05)
}

.pillar-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    background: #fff;
    border-radius: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-soft)
}

.pillar-body {
    padding: 1.75rem
}

.pillar-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0 1.5rem
}

.badge {
    background: var(--primary-soft);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 999px
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--primary);
    color: #fff;
    border-radius: 1.5rem;
    overflow: hidden
}

@media(min-width:640px) {
    .stats {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .stats {
        grid-template-columns: repeat(4, 1fr)
    }
}

.stat {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

@media(min-width:640px) {
    .stat {
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, .12)
    }
}

.stat:last-child {
    border: 0
}

.stat strong {
    display: block;
    font-family: 'Plus Jakarta Sans';
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 700
}

.stat span {
    font-size: .85rem;
    color: rgba(255, 255, 255, .85);
    margin-top: .5rem;
    display: block
}

/* Testimonials */
.bg-soft {
    background: rgba(243, 247, 253, .5)
}

.bg-cream {
    background: var(--cream)
}

.testimonial {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-soft)
}

.stars {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 1rem
}

.testimonial blockquote {
    margin: 1rem 0;
    flex: 1;
    color: #1f2a44
}

.testimonial figcaption {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 1rem
}

.testimonial figcaption strong {
    display: block;
    font-weight: 600
}

.testimonial figcaption span {
    font-size: .85rem;
    color: var(--muted)
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 3rem
}

@media(min-width:768px) {
    .faq-grid {
        grid-template-columns: 1fr 1.4fr
    }
}

details.faq {
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0
}

details.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none
}

details.faq summary::-webkit-details-marker {
    display: none
}

details.faq summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--muted);
    transition: transform .2s
}

details.faq[open] summary::after {
    transform: rotate(45deg)
}

details.faq .answer {
    margin-top: .75rem;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.65
}

/* CTA banner */
.cta-banner {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: #fff;
    border-radius: 1.5rem;
    padding: 3.5rem 1.5rem;
    box-shadow: var(--shadow-lift);
    text-align: center
}

@media(min-width:640px) {
    .cta-banner {
        padding: 5rem 3rem
    }
}

.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none
}

.cta-banner::before {
    width: 18rem;
    height: 18rem;
    background: rgba(212, 160, 23, .3);
    top: -5rem;
    right: -5rem
}

.cta-banner::after {
    width: 18rem;
    height: 18rem;
    background: rgba(212, 160, 23, .15);
    bottom: -6rem;
    left: -3rem
}

.cta-banner>* {
    position: relative
}

.cta-banner h2 {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem
}

@media(min-width:640px) {
    .cta-banner h2 {
        font-size: 2.4rem
    }
}

@media(min-width:768px) {
    .cta-banner h2 {
        font-size: 2.8rem
    }
}

.cta-banner p {
    color: rgba(255, 255, 255, .85);
    max-width: 36rem;
    margin: 0 auto 2rem;
    font-size: 1.05rem
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem
}

/* Programs list */
.prog-grid {
    display: grid;
    gap: .75rem;
    grid-template-columns: 1fr
}

@media(min-width:640px) {
    .prog-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.prog-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    font-weight: 500
}

.prog-item .check {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    border-radius: .4rem;
    background: var(--accent-soft);
    color: var(--accent-dark);
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

/* Qualifies */
.qualifies-list {
    display: grid;
    gap: .75rem
}

.qualifies-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .75rem;
    padding: 1rem
}

.qualifies-list li.note {
    background: var(--primary-soft);
    color: var(--primary);
    border-color: transparent;
    font-size: .9rem
}

.qualifies-list .check {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: .15rem
}

/* Timeline */
.timeline {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
    grid-template-columns: 1fr
}

@media(min-width:640px) {
    .timeline {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .timeline {
        grid-template-columns: repeat(5, 1fr)
    }
}

.timeline li {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem
}

.timeline .day {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--accent-dark)
}

.timeline strong {
    display: block;
    margin-top: .4rem;
    font-family: 'Plus Jakarta Sans';
    font-size: 1.05rem;
    font-weight: 600
}

.timeline p {
    margin-top: .25rem;
    font-size: .85rem;
    color: var(--muted)
}

.timeline .num {
    position: absolute;
    top: -.85rem;
    left: 1.25rem;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700
}

/* Form */
.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    max-width: 48rem;
    margin: 0 auto
}

@media(min-width:640px) {
    .form-card {
        padding: 2.5rem
    }
}

.lead-form {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 2rem
}

@media(min-width:640px) {
    .lead-form {
        grid-template-columns: 1fr 1fr
    }
}

.lead-form .full {
    grid-column: 1/-1
}

.lead-form .req {
    color: #dc2626
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: .7rem .9rem;
    border: 1px solid var(--border);
    border-radius: .5rem;
    font: inherit;
    background: #fff;
    transition: border-color .15s, box-shadow .15s
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 90, 168, .15)
}

.form-foot {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .75rem
}

/* Why us / dark band */
.dark-band {
    background: var(--primary);
    color: #fff;
    padding: 5rem 0
}

.dark-band .grid-2 {
    align-items: center;
    gap: 2.5rem
}

.dark-band h2 {
    font-size: 1.9rem;
    font-weight: 700
}

@media(min-width:640px) {
    .dark-band h2 {
        font-size: 2.4rem
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .1);
    color: var(--accent);
    padding: .3rem .8rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em
}

.dark-list {
    display: grid;
    gap: .75rem
}

.dark-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: rgba(255, 255, 255, .06);
    padding: 1rem;
    border-radius: .75rem
}

.dark-list .check {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: .15rem
}

/* About story */
.story {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #1c2a44
}

/* Team */
.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-soft)
}

.avatar {
    width: 6rem;
    height: 6rem;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans';
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark))
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr
}

@media(min-width:768px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1fr
    }
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all .2s;
    text-decoration: none;
    color: inherit
}

.contact-card:hover {
    border-color: rgba(31, 90, 168, .3);
    box-shadow: var(--shadow-soft)
}

.contact-card .icon-box {
    margin: 0;
    flex-shrink: 0
}

.contact-card .label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted)
}

.contact-card .value {
    margin-top: .25rem;
    font-family: 'Plus Jakarta Sans';
    font-size: 1.1rem;
    font-weight: 600
}

.contact-card .note {
    font-size: .85rem;
    color: var(--muted)
}

.map-frame {
    margin-top: 1rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 16rem;
    border: 0
}

/* Footer */
.footer {
    margin-top: 6rem;
    background: rgba(243, 247, 253, .6);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr
}

@media(min-width:768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr
    }
}

.footer h4 {
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: 1rem
}

.footer ul li {
    margin-bottom: .65rem;
    font-size: .9rem
}

.footer ul a {
    color: var(--muted)
}

.footer ul a:hover {
    color: var(--primary)
}

.footer-info {
    font-size: .88rem;
    color: var(--muted);
    margin-top: 1.25rem;
    display: grid;
    gap: .5rem
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: .5rem
}

.footer-bot {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.7
}

.footer-bot strong {
    color: #3b475e
}

/* Toast */
.toast {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: #13213a;
    color: #fff;
    padding: .85rem 1.25rem;
    border-radius: .6rem;
    box-shadow: var(--shadow-lift);
    opacity: 0;
    transition: all .3s;
    z-index: 100;
    font-size: .92rem
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.toast.success {
    background: #0f7b4a
}

.toast.error {
    background: #b3261e
}

/* Icons (inline svg sizes) */
.ico {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

.ico-sm {
    width: 1rem;
    height: 1rem
}

.ico-md {
    width: 1.5rem;
    height: 1.5rem
}
