/* ============================================
   Income Tax Service — Ortonville, MN
   Classic & Elegant Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-teal: #0d7377;
    --color-teal-dark: #095456;
    --color-teal-light: #14a0a5;
    --color-slate: #3d4f5f;
    --color-slate-dark: #2c3e4a;
    --color-slate-light: #6b8292;
    --color-cream: #f8f6f3;
    --color-cream-dark: #f0ece6;
    --color-white: #ffffff;
    --color-text: #2c3e4a;
    --color-text-light: #6b8292;
    --color-border: #e0dbd4;
    --color-gold: #b8935a;
    --color-gold-light: #d4af70;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    --shadow-sm: 0 1px 3px rgba(61, 79, 95, 0.08);
    --shadow-md: 0 4px 16px rgba(61, 79, 95, 0.1);
    --shadow-lg: 0 8px 32px rgba(61, 79, 95, 0.12);
    --shadow-xl: 0 16px 48px rgba(61, 79, 95, 0.14);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-teal);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-teal-dark);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-slate-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--color-slate);
}

/* --- Eyebrow / Section Label --- */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: var(--space-md);
}

.eyebrow-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--color-teal);
    flex-shrink: 0;
}

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

.section-header--centered .eyebrow-line {
    margin: 0 auto var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-slate-light);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-teal);
    color: var(--color-white);
    border-color: var(--color-teal);
}

.btn-primary:hover {
    background: var(--color-teal-dark);
    border-color: var(--color-teal-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-slate-dark);
    border-color: var(--color-slate);
}

.btn-secondary:hover {
    background: var(--color-slate-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-slate-dark);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

/* --- Navigation --- */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-slate);
    position: relative;
    padding: var(--space-xs) 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-teal);
    transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--color-teal);
}

.nav-cta {
    background: var(--color-teal);
    color: var(--color-white) !important;
    padding: 0.55rem 1.25rem !important;
    border-radius: var(--radius-md);
    font-weight: 600 !important;
}

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

.nav-cta:hover {
    background: var(--color-teal-dark);
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-slate-dark);
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-slate-dark);
    left: 0;
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

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

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Nav Overlay --- */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(44, 62, 74, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--color-cream);
    padding: 100px var(--space-2xl) var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.nav-overlay.active .nav-overlay-inner {
    transform: translateX(0);
}

.nav-overlay a {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-slate-dark);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition), padding-left var(--transition);
}

.nav-overlay a:hover {
    color: var(--color-teal);
    padding-left: var(--space-sm);
}

/* --- Hero Section --- */
.hero {
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    background: var(--color-cream);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: var(--space-lg);
}

.hero-eyebrow .eyebrow-line {
    width: 48px;
    height: 2px;
    background: var(--color-gold);
}

.hero-headline {
    margin-bottom: var(--space-lg);
    color: var(--color-slate-dark);
    font-weight: 700;
    line-height: 1.15;
}

.hero-headline em {
    font-style: italic;
    color: var(--color-teal);
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-slate-light);
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-slate);
}

/* --- Hero Image --- */
.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-teal);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.badge-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-slate-light);
}

.badge-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-teal);
}

/* --- Services Section --- */
.services {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.service-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 115, 119, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    transition: background var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(13, 115, 119, 0.15);
}

.service-title {
    margin-bottom: var(--space-sm);
    color: var(--color-slate-dark);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-slate-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- About Section --- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-cream);
}

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

.about-experience {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--color-teal);
    color: var(--color-white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.experience-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: var(--space-xs);
}

.about-content {
    padding: var(--space-xl) 0;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-slate);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.value-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--color-slate-dark);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--color-slate-light);
    line-height: 1.5;
}

/* --- Why Section --- */
.why-section {
    padding: var(--space-4xl) 0;
    background: var(--color-slate-dark);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(13, 115, 119, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.why-section .section-eyebrow {
    color: var(--color-gold-light);
}

.why-section .eyebrow-line {
    background: var(--color-gold-light);
}

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    position: relative;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(13, 115, 119, 0.4);
    transform: translateY(-2px);
}

.why-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-teal);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.why-title {
    color: var(--color-cream);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.why-desc {
    color: rgba(248, 246, 243, 0.65);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* --- Process Section --- */
.process {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-connector {
    display: none;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-cream);
    border: 2px solid var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: all var(--transition);
}

.step-circle span {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-teal);
}

.process-step:hover .step-circle {
    background: var(--color-teal);
}

.process-step:hover .step-circle span {
    color: var(--color-white);
}

.step-title {
    margin-bottom: var(--space-sm);
    color: var(--color-slate-dark);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--color-slate-light);
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}

/* --- Contact Section --- */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--color-slate);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 115, 119, 0.08);
    border-radius: var(--radius-md);
}

.contact-detail strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-slate-dark);
    margin-bottom: 2px;
}

.contact-detail a {
    color: var(--color-teal);
    font-size: 0.95rem;
}

.contact-detail a:hover {
    color: var(--color-teal-dark);
    text-decoration: underline;
}

.contact-detail span {
    font-size: 0.95rem;
    color: var(--color-slate);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-slate);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-cream);
    color: var(--color-text);
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-teal);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: rgba(13, 115, 119, 0.08);
    border-radius: var(--radius-md);
    color: var(--color-teal-dark);
    font-weight: 500;
    margin-top: var(--space-md);
}

.form-success[hidden] {
    display: none;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-slate-dark);
    color: var(--color-cream);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(248, 246, 243, 0.6);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-top: var(--space-md);
    margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-cream);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(248, 246, 243, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold-light);
    padding-left: var(--space-sm);
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact p,
.footer-contact a {
    color: rgba(248, 246, 243, 0.6);
    font-size: 0.9rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-xl);
}

.footer-bottom p {
    color: rgba(248, 246, 243, 0.4);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: rgba(248, 246, 243, 0.4);
    font-size: 0.8rem;
}

.footer-bottom a:hover {
    color: var(--color-gold-light);
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: var(--space-2xl);
    }

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

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }

    /* Mobile Navigation */
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    /* Hero */
    .hero {
        padding-top: 96px;
        padding-bottom: var(--space-3xl);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-image {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .image-accent {
        top: -10px;
        right: -10px;
    }

    .hero-badge {
        bottom: -12px;
        left: 10px;
        padding: var(--space-md) var(--space-lg);
    }

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

    .hero-actions .btn {
        text-align: center;
    }

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

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-images {
        max-width: 480px;
        margin: 0 auto;
    }

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

    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .process-step {
        text-align: left;
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: var(--space-lg);
        align-items: start;
    }

    .step-circle {
        margin: 0;
    }

    .step-desc {
        max-width: none;
        margin: 0;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.9rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }

    .service-card {
        padding: var(--space-xl);
    }
}
