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

:root {
    --plum: #4A1942;
    --plum-dark: #2E0F29;
    --plum-light: #6B2D5C;
    --plum-muted: #8A3D75;
    --amber: #D4A017;
    --amber-light: #E8B829;
    --amber-dark: #B8890F;
    --cream: #FAF6F0;
    --cream-dark: #F0E8DA;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--plum-dark);
}

em {
    font-style: italic;
    color: var(--amber-dark);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.938rem;
    padding: 14px 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 25, 66, 0.2);
}

.btn-amber {
    background: var(--amber);
    color: var(--plum-dark);
    border-color: var(--amber);
}

.btn-amber:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

.btn-dark {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.btn-dark:hover {
    background: var(--plum-dark);
    border-color: var(--plum-dark);
    box-shadow: 0 8px 24px rgba(46, 15, 41, 0.35);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--plum-dark);
    border-color: var(--white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

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

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 25, 66, 0.08);
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    background: rgba(250, 246, 240, 0.97);
    box-shadow: 0 4px 20px rgba(74, 25, 66, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--plum);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum);
    color: var(--amber);
    border-radius: 10px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plum-dark);
    letter-spacing: -0.01em;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a:not(.btn) {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
}

.nav-desktop a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.3s var(--ease-out);
}

.nav-desktop a:not(.btn):hover {
    color: var(--plum);
}

.nav-desktop a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--plum-dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: var(--cream);
    border-top: 1px solid rgba(74, 25, 66, 0.08);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-dark);
    padding: 12px 0;
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: var(--amber-dark);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--plum-dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 15, 41, 0.88) 0%, rgba(74, 25, 66, 0.72) 50%, rgba(107, 45, 92, 0.5) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero-title em {
    color: var(--amber);
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.hero-stat {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--amber);
    color: var(--plum-dark);
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(212, 160, 23, 0.3);
}

.hero-stat .stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .stat-label {
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* ─── Trust Bar ─── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(74, 25, 66, 0.06);
    padding: 32px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

/* ─── Section Shared ─── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--plum-dark);
    letter-spacing: -0.02em;
}

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

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(74, 25, 66, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(74, 25, 66, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 25, 66, 0.06);
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--plum);
    transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-icon {
    background: var(--plum);
    color: var(--amber);
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--plum-dark);
}

.service-card p {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.7;
}

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

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

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.about-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: 16px;
    z-index: -1;
}

.about-content .section-eyebrow {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-content > p {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(74, 25, 66, 0.08);
    border-bottom: 1px solid rgba(74, 25, 66, 0.08);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat .stat-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--plum);
    line-height: 1;
}

.about-stat .stat-desc {
    font-size: 0.813rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.about-content .btn {
    margin-top: 8px;
}

/* ─── Split Banner ─── */
.split-banner {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.split-banner-bg {
    position: absolute;
    inset: 0;
    background: var(--plum-dark);
}

.split-banner-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 560px;
}

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px 80px 0;
}

.split-title {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 24px;
}

.split-title em {
    color: var(--amber);
}

.split-desc {
    font-size: 1.063rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
}

.split-visual {
    position: relative;
    overflow: hidden;
}

.split-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 48px 40px;
    border: 1px solid rgba(74, 25, 66, 0.06);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(74, 25, 66, 0.08);
}

.why-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(74, 25, 66, 0.07);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.375rem;
    color: var(--plum-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ─── CTA / Contact ─── */
.cta-section {
    padding: 120px 0;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-content .section-eyebrow {
    color: var(--amber);
}

.cta-content .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content .section-title em {
    color: var(--amber);
}

.cta-desc {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber);
    transition: color 0.2s;
}

.cta-phone:hover {
    color: var(--amber-light);
}

.cta-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-hours h4 {
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 16px;
}

.cta-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-hours li {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-hours li span:last-child {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* ─── Form ─── */
.cta-form-wrap {
    position: relative;
    z-index: 2;
}

.cta-form {
    background: var(--white);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
}

.cta-form h3 {
    font-size: 1.75rem;
    color: var(--plum-dark);
    margin-bottom: 8px;
}

.cta-form > p {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.938rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 2px solid rgba(74, 25, 66, 0.08);
    border-radius: 8px;
    outline: none;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(74, 25, 66, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    margin: 0 auto 16px;
}

.form-success h4 {
    font-size: 1.5rem;
    color: var(--plum-dark);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.6;
}

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

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-mark {
    background: var(--amber);
    color: var(--plum-dark);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.938rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--amber);
}

.footer-contact address {
    font-style: normal;
    font-size: 0.938rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-contact a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--amber);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── Scroll Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        max-width: 500px;
    }

    .hero-image img {
        height: 450px;
    }

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

    .about-grid {
        gap: 48px;
    }

    .split-banner-inner {
        grid-template-columns: 1fr;
    }

    .split-text {
        padding: 60px 48px;
    }

    .split-visual {
        height: 350px;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.25rem);
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        height: 320px;
        border-radius: 12px;
    }

    .hero-stat {
        bottom: -16px;
        left: 16px;
        padding: 16px 20px;
    }

    .hero-stat .stat-number {
        font-size: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 32px 28px;
    }

    .about {
        padding: 80px 0;
    }

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

    .about-image-wrap img {
        height: 320px;
    }

    .about-content .section-eyebrow,
    .about-content .section-title {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-content .btn {
        display: inline-flex;
    }

    .split-text {
        padding: 48px 24px;
    }

    .why {
        padding: 80px 0;
    }

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

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

    .cta-form {
        padding: 32px 24px;
    }

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

    .cta-phone {
        font-size: 1.25rem;
    }

    .site-footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .cta-hours li {
        flex-direction: column;
        gap: 4px;
        padding-bottom: 12px;
    }
}
