/* ============================================
   Baxter County Tax Service — Styles
   Classic & Elegant | Terracotta + Sand
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #3D2B1F;
    background-color: #FDF8F4;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* --- Focus --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: #B85C38;
    color: #fff;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    font-weight: 500;
}

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

:focus-visible {
    outline: 2px solid #B85C38;
    outline-offset: 2px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #2A1F17;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Section Eyebrow --- */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B85C38;
    margin-bottom: 0.75rem;
}

/* --- Section Title --- */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: #2A1F17;
}

/* --- Section Subtitle --- */
.section-subtitle {
    font-size: 1.1rem;
    color: #6B5344;
    max-width: 600px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #B85C38;
    color: #FFFFFF;
    border: 2px solid #B85C38;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #9E4A2A;
    border-color: #9E4A2A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 92, 56, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #B85C38;
    border: 2px solid #B85C38;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #B85C38;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 92, 56, 0.1);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(42, 31, 23, 0.08);
}

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

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

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

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

.logo-primary {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2A1F17;
}

.logo-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #B85C38;
}

.logo--light .logo-primary,
.logo--light .logo-secondary {
    color: #FDF8F4;
}

/* --- Navigation --- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #3D2B1F;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
    color: #B85C38;
    background: rgba(184, 92, 56, 0.06);
}

.nav-cta {
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #B85C38;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
}

.nav-cta:hover {
    background: #9E4A2A;
    color: #fff;
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(184, 92, 56, 0.06);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #3D2B1F;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #2A1F17 0%,
        #3D2B1F 20%,
        #5C3A28 40%,
        #B85C38 70%,
        #D4956A 85%,
        #E8C4A8 100%
    );
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #C4744F 0%, transparent 70%);
    top: -10%;
    right: -5%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8B4528 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #E8C4A8 0%, transparent 70%);
    top: 40%;
    left: 30%;
    opacity: 0.3;
}

.grain-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 8rem 1.5rem 6rem;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 248, 244, 0.7);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #FDF8F4;
    margin-bottom: 1.5rem;
}

.hero-title br {
    display: none;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(253, 248, 244, 0.85);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-actions .btn-secondary {
    color: #FDF8F4;
    border-color: rgba(253, 248, 244, 0.5);
}

.hero-actions .btn-secondary:hover {
    background: rgba(253, 248, 244, 0.15);
    border-color: #FDF8F4;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(253, 248, 244, 0.8);
}

.trust-item svg {
    opacity: 0.7;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(253, 248, 244, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(253, 248, 244, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 6rem 0;
    background: #FDF8F4;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header--centered {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: #FFFFFF;
    border: 1px solid rgba(184, 92, 56, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(184, 92, 56, 0.25);
    box-shadow: 0 8px 30px rgba(42, 31, 23, 0.08);
    transform: translateY(-3px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(184, 92, 56, 0.08);
    color: #B85C38;
    margin-bottom: 1.25rem;
}

.service-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #2A1F17;
}

.service-desc {
    font-size: 0.95rem;
    color: #6B5344;
    line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 6rem 0;
    background: #F5EDE6;
}

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

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

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(42, 31, 23, 0.15);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid #B85C38;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    padding: 1rem 0;
}

.about-body {
    font-size: 1rem;
    color: #5C4033;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 92, 56, 0.15);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #B85C38;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: #6B5344;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(184, 92, 56, 0.2);
    flex-shrink: 0;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 6rem 0;
    background: #FDF8F4;
}

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

.why-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 2rem;
    background: #FFFFFF;
    border: 1px solid rgba(184, 92, 56, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: rgba(184, 92, 56, 0.2);
    box-shadow: 0 8px 30px rgba(42, 31, 23, 0.06);
}

.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(184, 92, 56, 0.2);
    line-height: 1;
    padding-top: 0.15rem;
}

.why-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2A1F17;
}

.why-desc {
    font-size: 0.95rem;
    color: #6B5344;
    line-height: 1.7;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: 6rem 0;
    background: #2A1F17;
}

.process .section-eyebrow {
    color: #E8C4A8;
}

.process .section-title {
    color: #FDF8F4;
}

.process .section-subtitle {
    color: rgba(253, 248, 244, 0.65);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.process-step {
    position: relative;
    padding: 2rem 1.5rem;
    text-align: center;
}

.step-visual {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(184, 92, 56, 0.15);
    color: #E8C4A8;
}

.step-title {
    font-size: 1.05rem;
    color: #FDF8F4;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(253, 248, 244, 0.6);
    line-height: 1.7;
}

.step-connector {
    display: none;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

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

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #B85C38 0%,
        #9E4A2A 50%,
        #7A3A20 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #FDF8F4;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(253, 248, 244, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-actions .btn-secondary {
    color: #FDF8F4;
    border-color: rgba(253, 248, 244, 0.5);
}

.cta-actions .btn-secondary:hover {
    background: rgba(253, 248, 244, 0.15);
    border-color: #FDF8F4;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 6rem 0;
    background: #F5EDE6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro {
    font-size: 1rem;
    color: #6B5344;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(184, 92, 56, 0.08);
    color: #B85C38;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #B85C38;
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 0.95rem;
    color: #3D2B1F;
    line-height: 1.5;
}

.contact-value:hover {
    color: #B85C38;
}

.hours-title {
    font-size: 1.1rem;
    color: #2A1F17;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.95rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(184, 92, 56, 0.1);
}

.day {
    color: #3D2B1F;
    font-weight: 500;
}

.time {
    color: #6B5344;
}

/* --- Form --- */
.contact-form-wrap {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(184, 92, 56, 0.1);
    box-shadow: 0 10px 40px rgba(42, 31, 23, 0.06);
}

.form-title {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: #2A1F17;
}

.form-note {
    font-size: 0.85rem;
    color: #6B5344;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #3D2B1F;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #3D2B1F;
    background: #FDF8F4;
    border: 1px solid rgba(184, 92, 56, 0.2);
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B85C38;
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
    background: rgba(76, 120, 70, 0.08);
    border: 1px solid rgba(76, 120, 70, 0.2);
    border-radius: 6px;
    color: #3D6B3D;
    font-size: 0.9rem;
}

.form-success svg {
    color: #4C7846;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1E1610;
    color: rgba(253, 248, 244, 0.7);
    padding: 4rem 0 0;
}

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

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    color: rgba(253, 248, 244, 0.5);
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E8C4A8;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(253, 248, 244, 0.55);
    transition: color 0.2s ease;
}

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

.footer-address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(253, 248, 244, 0.55);
}

.footer-address a {
    color: rgba(253, 248, 244, 0.55);
    transition: color 0.2s ease;
}

.footer-address a:hover {
    color: #E8C4A8;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 248, 244, 0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.copyright,
.footer-note {
    font-size: 0.82rem;
    color: rgba(253, 248, 244, 0.35);
}

/* ============================================
   MOBILE NAV
   ============================================ */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(184, 92, 56, 0.1);
        padding: 1rem 0;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.5rem 1.5rem;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .nav-cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .hero-title br {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-step {
        padding: 1.5rem 0;
    }

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

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

@media (max-width: 480px) {
    .hero-content {
        padding: 7rem 1rem 5rem;
    }

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

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

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.25rem;
    }

    .stat-divider {
        display: none;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .scroll-line {
        animation: none;
        opacity: 0.5;
    }
}
