/* ============================================
   Michael Miller DC — Chiropractic Practice
   Classic & Elegant Design System
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Lato', 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #faf9f7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ---------- SKIP LINK ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #1a2744;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-size: 0.875rem;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #1a2744;
}

/* ---------- EYEBROW ---------- */
.section-eyebrow {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b8942e;
    margin-bottom: 12px;
}

/* ---------- SECTION TITLE ---------- */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #1a2744;
}

/* ---------- LEAD TEXT ---------- */
.lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

/* ---------- SECTION SUBTITLE ---------- */
.section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b6b6b;
    max-width: 600px;
}

/* ---------- SECTION HEADER ---------- */
.section-header--center {
    text-align: center;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, #c9a84c 0%, #a8872a 100%);
    color: #1a2744;
    border-color: #c9a84c;
}

.btn--gold:hover {
    background: linear-gradient(135deg, #d4b85e 0%, #b8942e 100%);
    border-color: #d4b85e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn--navy {
    background: #1a2744;
    color: #fff;
    border-color: #1a2744;
}

.btn--navy:hover {
    background: #243556;
    border-color: #243556;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 39, 68, 0.3);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--outline-navy {
    background: transparent;
    color: #1a2744;
    border-color: #1a2744;
}

.btn--outline-navy:hover {
    background: #1a2744;
    color: #fff;
    transform: translateY(-2px);
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.btn--full {
    width: 100%;
}

/* ---------- HEADER / NAVIGATION ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 39, 68, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(26, 39, 68, 0.1);
    background: rgba(250, 249, 247, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a2744;
}

.logo-icon {
    color: #1a2744;
    flex-shrink: 0;
}

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

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2744;
}

.logo-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.logo--light {
    color: #fff;
}

.logo--light .logo-name {
    color: #fff;
}

.logo--light .logo-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.logo--light .logo-icon {
    color: #fff;
}

/* ---------- NAV ---------- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list a {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #4a4a4a;
    position: relative;
    transition: color 0.2s ease;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #c9a84c;
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: #1a2744;
}

.nav-list a:hover::after {
    width: 100%;
}

/* ---------- NAV TOGGLE ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a2744;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a2744;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 16, 30, 0.88) 0%,
        rgba(26, 39, 68, 0.82) 50%,
        rgba(10, 16, 30, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 24px;
    padding: 8px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.4);
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-headline em {
    font-style: italic;
    color: #c9a84c;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 560px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: #1a2744;
    padding: 0;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 500;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    color: #c9a84c;
    flex-shrink: 0;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: 100px 0;
}

/* ---------- ABOUT ---------- */
.about {
    background: #faf9f7;
}

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

.about-image {
    position: relative;
}

.about-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 39, 68, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 3px solid #c9a84c;
    border-radius: 12px;
    z-index: -1;
}

.about-content {
    padding: 20px 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: #4a4a4a;
}

.about-feature svg {
    color: #c9a84c;
    flex-shrink: 0;
}

/* ---------- SERVICES ---------- */
.services {
    background: #fff;
}

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

.service-card {
    background: #faf9f7;
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 39, 68, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 39, 68, 0.06);
    border-radius: 12px;
    margin-bottom: 24px;
    color: #1a2744;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: #1a2744;
    color: #c9a84c;
}

.service-card-title {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: #1a2744;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b6b6b;
}

/* ---------- APPROACH ---------- */
.approach {
    background: #1a2744;
    color: #fff;
}

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

.approach-content .section-eyebrow {
    color: #c9a84c;
}

.approach-content .section-title {
    color: #fff;
}

.approach-content .lead-text {
    color: rgba(255, 255, 255, 0.75);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.approach-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.step-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.approach-image {
    position: relative;
}

.approach-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.approach-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-quote {
    position: absolute;
    bottom: -32px;
    left: -32px;
    right: -32px;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.approach-quote svg {
    color: #c9a84c;
    margin-bottom: 12px;
}

.approach-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-style: italic;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 12px;
}

.approach-quote cite {
    font-style: normal;
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #8a8a8a;
    letter-spacing: 0.05em;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    background: #faf9f7;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    border: 1px solid rgba(26, 39, 68, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 39, 68, 0.08);
}

.testimonial-quote-mark {
    position: absolute;
    top: 20px;
    left: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    color: #c9a84c;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
    padding-top: 24px;
}

.testimonial-author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #8a8a8a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, #1a2744 0%, #243556 100%);
    padding: 80px 0;
}

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

.cta-eyebrow {
    color: #c9a84c;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ---------- CONTACT ---------- */
.contact {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 56px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #faf9f7;
    border-radius: 12px;
    padding: 24px 28px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 24px rgba(26, 39, 68, 0.08);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 39, 68, 0.06);
    border-radius: 10px;
    color: #1a2744;
    flex-shrink: 0;
}

.contact-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
    font-size: 0.9375rem;
    color: #6b6b6b;
    line-height: 1.6;
}

.contact-card a:hover {
    color: #b8942e;
    text-decoration: underline;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(26, 39, 68, 0.08);
}

/* ---------- CONTACT FORM ---------- */
.contact-form-wrapper {
    background: #faf9f7;
    border-radius: 16px;
    padding: 40px;
}

.contact-form-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.9375rem;
    color: #6b6b6b;
    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.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0ddd6;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: #2c2c2c;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0aea8;
}

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

.form-privacy {
    font-size: 0.75rem;
    color: #8a8a8a;
    text-align: center;
    margin-top: 16px;
}

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

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

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1a2744;
}

.form-success p {
    font-size: 0.9375rem;
    color: #6b6b6b;
    margin-bottom: 24px;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #0f1826;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

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

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 300px;
}

.footer-heading {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 20px;
}

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

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

.footer-links a:hover {
    color: #fff;
}

.footer-contact address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #c9a84c;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- SCROLL REVEAL (below fold only, progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
        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; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-grid,
    .approach-grid,
    .contact-grid {
        gap: 40px;
    }

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #faf9f7;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        padding: 80px 32px 32px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav-list a {
        font-size: 1.0625rem;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
    }

    .nav-overlay.active {
        display: block;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

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

    .trust-item {
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-accent {
        display: none;
    }

    .approach-quote {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 24px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrapper {
        padding: 28px;
    }

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

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

    .section {
        padding: 72px 0;
    }
}

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

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

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

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

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