/* ===================================
   The Fabulous Cleaning Company of Marin
   Custom Styles
   =================================== */

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

:root {
    --emerald-900: #064E3B;
    --emerald-700: #047857;
    --emerald-500: #10B981;
    --emerald-100: #D1FAE5;
    --emerald-50:  #ECFDF5;
    --cream:       #F5F5DC;
    --cream-light: #FAFAF0;
    --cream-dark:  #EDEDD5;
    --amber:       #D97706;
    --amber-light: #FEF3C7;
    --text-dark:   #1A2E26;
    --text-mid:    #3D5A4C;
    --text-light:  #6B8F7E;
    --white:       #FFFFFF;
    --shadow-sm:   0 2px 8px rgba(6, 78, 59, 0.06);
    --shadow-md:   0 4px 20px rgba(6, 78, 59, 0.10);
    --shadow-lg:   0 8px 40px rgba(6, 78, 59, 0.14);
    --radius-sm:   12px;
    --radius-md:   20px;
    --radius-lg:   28px;
    --radius-xl:   36px;
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.2;
    color: var(--emerald-900);
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--emerald-900);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-900);
    color: var(--white);
    border-color: var(--emerald-900);
}
.btn-primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--emerald-900);
    border-color: var(--emerald-900);
}
.btn-secondary:hover {
    background: var(--emerald-50);
    transform: translateY(-2px);
}

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

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; padding: 16px 24px; }

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-line1 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--emerald-900);
}
.logo-line2 {
    font-family: 'DM Serif Display', serif;
    font-size: 0.85rem;
    color: var(--emerald-700);
    font-style: italic;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-nav a {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.main-nav a:hover {
    color: var(--emerald-900);
    background: var(--emerald-50);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--emerald-900);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}
.mobile-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    padding: 120px 0 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 50%, var(--emerald-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--emerald-100);
    color: var(--emerald-900);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--emerald-900);
    margin-bottom: 20px;
    line-height: 1.1;
}
.accent-text {
    color: var(--amber);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-mid);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.8;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-mid);
}

/* Hero visual */
.hero-visual {
    position: relative;
    height: 620px;
}

.hero-img-main {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-float {
    position: absolute;
    bottom: 20px;
    left: -40px;
    width: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 4px solid var(--white);
}
.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-accent-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--emerald-100);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.hero-wave {
    margin-top: -1px;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-header.light { color: var(--white); }
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    background: var(--emerald-100);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-tag.light {
    color: var(--cream);
    background: rgba(255,255,255,0.2);
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
}
.section-desc.light { color: rgba(255,255,255,0.85); }

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 78, 59, 0.06);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-100);
}
.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--emerald-900);
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* --- About --- */
.about {
    padding: 88px 0;
    background: var(--emerald-50);
}

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

.about-visual {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-small {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--emerald-50);
}
.about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--emerald-900);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; text-align: left; }
.about-text {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}
.about-features {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 12px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}
.about-features svg { flex-shrink: 0; }

/* --- Why Us --- */
.why-us {
    padding: 88px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.why-us::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.why-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    margin-bottom: 12px;
}
.why-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}
.why-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
}

/* --- Testimonials --- */
.testimonials {
    padding: 88px 0;
    background: var(--cream-light);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 78, 59, 0.06);
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 24px;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.author-name {
    display: block;
    font-weight: 700;
    color: var(--emerald-900);
    font-size: 0.95rem;
}
.author-location {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--emerald-700) 0%, var(--emerald-900) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 5%;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 12px;
}
.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; text-align: left; }
.contact-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 2px;
}
.contact-value {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
}
.contact-link {
    font-weight: 700;
    color: var(--emerald-700);
    transition: var(--transition);
}
.contact-link:hover { color: var(--emerald-900); }

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.contact-map img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Form */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(6, 78, 59, 0.06);
}
.form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-light);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: 32px 20px;
}
.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}
.form-success h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--emerald-900);
}
.form-success p {
    color: var(--text-mid);
    font-size: 0.95rem;
}

/* --- Footer --- */
.site-footer {
    background: var(--emerald-900);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo .logo-line1 { color: var(--white); }
.footer-logo .logo-line2 { color: var(--emerald-100); }
.footer-tagline {
    margin-top: 16px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}
.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: grid;
    gap: 10px;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.footer-contact a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid { gap: 32px; }
    .hero-visual { height: 480px; }
    .hero-img-main { height: 420px; }
    .hero-img-float { left: -20px; width: 200px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream-light);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 24px 40px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    .main-nav.open { right: 0; }
    .main-nav a {
        padding: 14px 16px;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
    }
    .main-nav .btn-primary {
        margin-top: 16px;
        justify-content: center;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }
    .mobile-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .hero { padding: 100px 0 0; }
    .hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 60px;
    }
    .hero-visual {
        height: 360px;
        order: -1;
    }
    .hero-img-main { height: 300px; }
    .hero-img-float { width: 160px; left: -10px; bottom: 10px; }
    .hero-accent-shape { width: 120px; height: 120px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { order: -1; }
    .about-img-small { width: 180px; right: -10px; }
    .about-content .section-title { text-align: center; }
    .about-content .section-tag { display: block; text-align: center; }
    .about-text { text-align: center; }
    .about-features { max-width: 400px; margin-left: auto; margin-right: auto; }

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

    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info .section-title { text-align: center; }
    .contact-info .section-tag { display: block; text-align: center; }
    .contact-desc { text-align: center; }

    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2rem; }
    .hero-visual { height: 280px; }
    .hero-img-main { height: 240px; }
    .hero-img-float { display: none; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .section-title { font-size: 1.6rem; }
}
