/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1e3a5f;
    --navy-light: #2a4f7a;
    --navy-dark: #152a45;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-pale: #f5ecd3;
    --cream: #faf8f4;
    --cream-dark: #f0ece4;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-mid: #4a4a5a;
    --text-light: #7a7a8a;
    --border: #e8e4dc;
    --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.06);
    --shadow-md: 0 8px 30px rgba(30, 58, 95, 0.10);
    --shadow-lg: 0 20px 60px rgba(30, 58, 95, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-title--gold {
    color: var(--gold);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 600px;
    line-height: 1.8;
}

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

.section-header--center .section-desc {
    margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

.btn--primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn--ghost:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.5);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
}

.btn--white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.nav__logo-accent {
    color: var(--gold);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav__link:hover {
    color: var(--navy);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--navy-light);
    color: var(--white) !important;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    padding: 8px;
}

/* ─── Mobile Menu ─── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    padding: 8px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    padding: 12px 24px;
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--gold);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--navy);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, #f5f0e8 50%, #ede6d8 100%);
}

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

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: var(--navy);
    top: -200px;
    right: -100px;
}

.hero__shape--2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -100px;
    left: -100px;
}

.hero__shape--3 {
    width: 200px;
    height: 200px;
    background: var(--navy);
    bottom: 20%;
    left: 30%;
    opacity: 0.05;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 95, 0.08);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
}

.hero__badge svg {
    color: var(--gold);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero__headline--gold {
    color: var(--gold);
    font-style: italic;
}

.hero__sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid);
}

.hero__trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Hero Image */
.hero__image-wrap {
    position: relative;
}

.hero__image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 5/6;
}

.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.4;
}

.hero__float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.hero__float-card--top {
    top: 10%;
    left: -40px;
}

.hero__float-card--bottom {
    bottom: 15%;
    left: -30px;
}

.hero__float-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(30, 58, 95, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
}

.hero__float-icon--gold {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.hero__float-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero__float-value {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.4;
}

/* ─── Services ─── */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(30, 58, 95, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition);
}

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

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ─── About ─── */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about__image-stack {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 13/16;
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
    aspect-ratio: 4/3;
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__exp-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about__exp-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.about__exp-text {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.85;
    line-height: 1.4;
}

.about__content-col {
    max-width: 520px;
}

.about__body {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about__stat {
    text-align: center;
    flex: 1;
}

.about__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.about__stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ─── Process ─── */
.process {
    padding: 120px 0;
    background: var(--white);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.process__step {
    position: relative;
    padding: 0 20px;
}

.process__step-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 16px;
}

.process__step-line {
    position: absolute;
    top: 28px;
    right: -10px;
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    opacity: 0.3;
}

.process__step:last-child .process__step-line {
    display: none;
}

.process__step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(30, 58, 95, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process__step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.process__step-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ─── CTA Banner ─── */
.cta-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
}

.cta-banner__pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}

.cta-banner__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 480px;
}

.cta-banner__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ─── Contact ─── */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

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

.contact__text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact__detail-value a {
    color: var(--navy);
    transition: color var(--transition);
}

.contact__detail-value a:hover {
    color: var(--gold);
}

/* Form */
.contact__form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

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

.contact__field {
    margin-bottom: 20px;
}

.contact__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact__input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}

.contact__input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.contact__input::placeholder {
    color: var(--text-light);
}

.contact__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7a8a' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.contact__form-success.visible {
    display: flex;
}

.contact__form-success p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-accent {
    color: var(--gold);
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
    opacity: 0.7;
}

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

.footer__link-title {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__link-col a,
.footer__link-col span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: color var(--transition);
}

.footer__link-col a:hover {
    color: var(--white);
}

.footer__bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 40px;
    }

    .hero__float-card--top {
        left: -20px;
    }

    .hero__float-card--bottom {
        left: -10px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process__step-line {
        display: none;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__image-wrap {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__float-card {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .services {
        padding: 80px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 80px 0;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__image-stack {
        max-width: 400px;
        margin: 0 auto;
    }

    .about__exp-badge {
        left: -10px;
        top: -10px;
    }

    .about__img-secondary {
        right: -15px;
        bottom: -15px;
    }

    .process {
        padding: 80px 0;
    }

    .process__steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-banner {
        padding: 80px 0;
    }

    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner__actions .btn {
        justify-content: center;
    }

    .contact {
        padding: 80px 0;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form {
        padding: 32px 24px;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 1.8rem;
    }

    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }

    .about__stats {
        flex-direction: column;
        gap: 20px;
    }

    .about__stat-divider {
        width: 40px;
        height: 1px;
    }

    .footer__links {
        grid-template-columns: 1fr;
    }
}
