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

:root {
    --navy: #000000;
    --navy-deep: #000000;
    --teal: #fad000;
    --teal-light: #fce44d;
    --cream: #F8F7F4;
    --off-white: #F7F8FA;
    --white: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #5A6171;
    --border: #E2E5EA;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: 0.3s ease;
    --font-body: 'DM Sans', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-hand: 'Nothing You Could Do', cursive;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

a {
    color: var(--teal);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--teal-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    top: 12px;
    left: 24px;
    right: 24px;
    width: calc(100% - 48px);
    margin: 0 auto;
    border-radius: 100px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.4s ease;
}

.scrolled .header-inner {
    padding: 12px 32px;
}

.logo {
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.logo-img {
    display: block;
    height: 44px;
    width: auto;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    padding: 8px 16px;
    border-radius: var(--radius);
    background: var(--off-white);
    transition: all var(--transition);
}

.header-phone:hover {
    background: var(--navy);
    color: var(--white);
}

.header-phone svg {
    flex-shrink: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius);
    background: var(--teal);
    color: var(--navy);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(250, 208, 0, 0.3);
}

.btn-header:hover {
    background: var(--teal-light);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(250, 208, 0, 0.35);
}

@media (max-width: 768px) {
    .btn-header {
        display: none;
    }
    .header-rotator {
        display: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: var(--teal);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(250, 208, 0, 0.3);
}

.btn-primary:hover {
    background: var(--teal-light);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(250, 208, 0, 0.35);
    transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    overflow: hidden;
    background: #000000 url('hero-bg.png') center right/cover no-repeat;
    padding: 80px 0 120px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000000 35%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-curve svg {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0.06;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0.06;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 80%;
    margin-bottom: 36px;
}

.hero-content {
    position: relative;
    max-width: 55%;
}

@media (max-width: 768px) {
    .hero-heading {
        max-width: 100%;
    }

    .hero-content {
        max-width: 100%;
    }
}

.hero-eyebrow {
    font-size: 15px;
    font-weight: 500;
    color: var(--teal-light);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.hero-body p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
}

.hero-body p:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================
   REASSURANCE PANEL
   ============================================ */

.section--reassurance {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.reassurance-content {
    max-width: 720px;
    margin: 0 auto;
}

.reassurance-content p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.reassurance-content .reassurance-lead {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 28px;
}

.reassurance-content .handwritten-note {
    max-width: 100%;
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.3;
    color: var(--teal);
}

.reassurance-logos {
    margin-top: 32px;
    max-height: 50px;
    width: auto;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .section--reassurance {
        padding: 56px 0;
    }

    .reassurance-content p {
        font-size: 17px;
    }
}

/* ============================================
   IMAGE BREAK
   ============================================ */

.image-break {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.image-break__curve {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    line-height: 0;
}

.image-break__curve svg {
    display: block;
    width: 100%;
    height: 50px;
}

.image-break__curve--top {
    top: 0;
}

.image-break__curve--bottom {
    bottom: 0;
}

/* ============================================
   HEADER ROTATOR
   ============================================ */

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-rotator {
    position: relative;
    border-left: 2px solid var(--teal);
    padding-left: 16px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.rotator-text {
    display: block;
    color: var(--teal);
    letter-spacing: -0.01em;
    white-space: nowrap;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.rotator-text.rotator-active {
    opacity: 1;
    height: auto;
    transform: translateY(0);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 120px 0;
    position: relative;
}

.section--white {
    background: var(--white);
}

.section--alt {
    background: var(--off-white);
}

.section--navy {
    background: var(--navy);
    color: var(--white);
}

.section-curve {
    position: relative;
    height: 50px;
    margin-top: -1px;
    overflow: hidden;
}

.section-curve svg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.section--navy h2,
.section--navy .section-content h2 {
    color: var(--white);
}

.section--navy h3 {
    color: rgba(255, 255, 255, 0.9);
}

.section--navy p {
    color: rgba(255, 255, 255, 0.75);
}

.section-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 70%;
}

@media (max-width: 768px) {
    .section-content h2 {
        max-width: 100%;
    }
}

.section-content h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 32px;
    margin-bottom: 12px;
}

.section-content p {
    margin-bottom: 16px;
}

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

.section-note {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(250, 208, 0, 0.08);
    border-radius: var(--radius);
    border-left: 3px solid var(--teal);
    font-size: 16px;
}

/* ============================================
   CONTENT GRID (image + text side by side)
   ============================================ */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: center;
    margin-top: 8px;
}

.content-grid__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-grid__image img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
}

.content-grid--img-right {
    grid-template-columns: 1.6fr 1fr;
}

.content-grid--right-pull {
    grid-template-columns: 1fr 320px;
}

@media (max-width: 768px) {
    .content-grid,
    .content-grid--right-pull {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .content-grid__image img {
        width: 240px;
        height: 240px;
    }
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote {
    position: sticky;
    top: 100px;
    border-left: 3px solid var(--teal);
    padding-left: 28px;
    padding-top: 8px;
}

.pull-quote__text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pull-quote__figure {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0;
}

/* ============================================
   LINED LIST
   ============================================ */

.lined-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.lined-list--two-col {
    columns: 2;
    column-gap: 32px;
}

.lined-list--two-col li {
    break-inside: avoid;
}

@media (max-width: 640px) {
    .lined-list--two-col {
        columns: 1;
    }
}

.lined-list li {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    letter-spacing: -0.01em;
    padding: 14px 0;
    border-top: 1px solid var(--border);
}

.highlight-stat {
    font-size: 19px;
    color: var(--navy);
    padding: 16px 0;
}

/* ============================================
   EXPERIENCE LAYOUT
   ============================================ */

.experience-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.experience-text {
    padding-right: 20px;
}

.profile-carousel {
    border-left: 3px solid var(--teal);
    padding-left: 28px;
    padding-top: 8px;
}

.profile-carousel__track {
    position: relative;
    min-height: 280px;
}

.profile-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.profile-slide.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: auto;
}

.profile-slide__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid var(--teal);
}

.profile-slide h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.profile-slide p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.profile-carousel__controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.profile-carousel__btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-carousel__btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--navy);
}

.profile-carousel__dots {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.profile-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-carousel__dot.is-active {
    background: var(--teal);
    transform: scale(1.3);
}

.accreditation-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.accreditation-strip span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
}

@media (max-width: 768px) {
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-text {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .accreditation-strip {
        gap: 8px;
    }
}

.highlight-stat strong {
    font-size: 22px;
    color: var(--teal);
}

/* ============================================
   LISTS
   ============================================ */

.check-list {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.5;
}

.check-list--accent li::before {
    opacity: 1;
    background: var(--teal);
}

.check-list--muted li::before {
    background: var(--text-light);
    opacity: 0.3;
}

.section--navy .check-list li::before {
    background: var(--teal-light);
    opacity: 0.7;
}

.badge-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-list li {
    padding: 8px 16px;
    background: rgba(250, 208, 0, 0.08);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

/* ============================================
   CALLOUT
   ============================================ */

.callout {
    margin: 28px 0;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.section--alt .callout {
    background: var(--white);
}

.section--navy .callout {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.section--navy .callout p {
    color: rgba(255, 255, 255, 0.7);
}


.section--navy .section-note {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--teal);
    color: rgba(255, 255, 255, 0.85);
}

.section--navy .section-note strong {
    color: var(--white);
}

.handwritten-note {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--teal);
    margin-top: 32px;
    line-height: 1.1;
    max-width: 80%;
}

.section--navy .lined-list li {
    color: var(--white);
    border-top-color: rgba(255, 255, 255, 0.12);
}

.callout p {
    font-style: italic;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 0;
}

/* ============================================
   TWO COLUMN
   ============================================ */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 8px 0 24px;
}

.two-col--60-40 {
    grid-template-columns: 3fr 2fr;
}

.col--pink-border {
    border-left: 3px solid var(--teal);
    padding-left: 28px;
    align-self: start;
}

.plain-list {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
}

.plain-list li {
    padding: 8px 0;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   STEPS
   ============================================ */

.steps-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.step-item {
    border-left: 3px solid var(--teal);
    padding-left: 28px;
}

.step-number-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--navy);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 18px;
}

.step-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 19px;
    color: var(--white);
}

.step-item p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 0;
}

.steps-footer {
    text-align: center;
    font-style: italic;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .steps-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   ACCORDION / FAQ
   ============================================ */

.accordion {
    margin-top: 8px;
}

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

.accordion-item:first-child {
    border-top: 1px solid var(--border);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    line-height: 1.4;
    transition: color var(--transition);
}

.accordion-trigger:hover {
    color: var(--teal);
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--teal);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.accordion-panel > p {
    overflow: hidden;
    padding: 0 0 0;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.accordion-trigger[aria-expanded="true"] + .accordion-panel {
    grid-template-rows: 1fr;
}

.accordion-trigger[aria-expanded="true"] + .accordion-panel > p {
    padding: 0 0 20px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.section--contact {
    background: var(--off-white);
    padding: 120px 0 140px;
}

.section--contact h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-phone {
    font-size: 20px;
    margin-bottom: 32px;
}

.contact-phone span {
    color: var(--text-light);
    font-weight: 400;
}

.contact-phone a {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.contact-phone a:hover {
    color: var(--teal);
}

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-top: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(250, 208, 0, 0.15);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--teal);
}

.form-group--checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    margin-top: 4px;
}

.contact-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    font-size: 15px;
    padding: 0;
    margin: 0;
}

.form-status:not(:empty) {
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 6px;
}

.form-status--success {
    background: #e8f5ee;
    color: #1b5e2a;
    border: 1px solid #b8dcc4;
}

.form-status--error {
    background: #fdecec;
    color: #8a1f1f;
    border: 1px solid #f1c2c2;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--teal);
    color: #1a1a1a;
    padding: 64px 0 48px;
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col--center {
    text-align: center;
    align-items: center;
}

.footer-logo {
    margin-bottom: 48px;
}

.footer-logo img {
    max-width: 220px;
    height: auto;
    display: block;
}

.footer-credentials {
    margin-bottom: 40px;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-credentials img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
}

.footer-sra-badge {
    width: 275px;
    margin-bottom: 40px;
}

.site-footer p {
    margin: 0 0 14px;
}

.footer-disclaimer,
.footer-regulatory,
.footer-sra,
.footer-copyright,
.footer-links {
    color: #1a1a1a;
    font-size: 15px;
}

.footer-links a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.65;
}

.footer-links span {
    margin: 0 6px;
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-col {
        align-items: center;
    }
    .footer-logo img {
        margin: 0 auto;
    }
    .footer-sra-badge {
        display: none;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 48px 0 32px;
    }
    .footer-credentials img {
        max-width: 260px;
    }
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 90;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--teal);
    transform: translateY(-2px);
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 48px 0 64px;
    }

    .section--contact {
        padding: 80px 0 96px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        padding: 8px;
        background: none;
    }

    .badge-list {
        flex-direction: column;
    }

    .badge-list li {
        text-align: center;
    }

    .contact-phone a {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-content h2 {
        font-size: 24px;
    }

    .hero-badge {
        font-size: 14px;
        padding: 12px 16px;
    }
}
