/* ============================================
   Lons Tire and Auto Clinic — Custom Styles
   Palette: Forest Green #1B4332 · Gold #D4A84B · Off-White #F5F0E8
============================================ */

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

:root {
    --green: #1B4332;
    --green-light: #2D6A4F;
    --green-dark: #0F2919;
    --gold: #D4A84B;
    --gold-light: #E8C97A;
    --offwhite: #F5F0E8;
    --cream: #FAF7F0;
    --dark: #1A1A1A;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(27, 67, 50, 0.10);
    --shadow-lg: 0 12px 48px rgba(27, 67, 50, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--green);
}

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

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

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

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    box-shadow: 0 2px 20px rgba(27, 67, 50, 0.08);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green);
    line-height: 1.2;
}

.nav-logo-sub {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--gold);
}

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

.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--green);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--green) !important;
    color: var(--offwhite) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

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

.nav-cta:hover {
    background: var(--green-light) !important;
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* HERO */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 67, 50, 0.08);
    border: 1px solid rgba(27, 67, 50, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 24px;
    color: var(--green);
}

.hero-accent {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 168, 75, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--green);
    color: var(--offwhite);
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--offwhite);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--green);
}

.btn-white:hover {
    background: var(--offwhite);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--gray);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-light);
}

/* HERO RIGHT */
.hero-right {
    position: relative;
    min-height: 600px;
}

.hero-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}

.hero-img-float {
    position: absolute;
    bottom: -20px;
    left: -40px;
    z-index: 3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

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

.hero-img-float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--green);
    color: var(--offwhite);
    padding: 6px 12px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-geo {
    position: absolute;
    z-index: 1;
}

.hero-geo-circle {
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(212, 168, 75, 0.4);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.hero-geo-dots {
    bottom: 60px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.5;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

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

/* SECTION COMMON */
.section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-title .accent {
    color: var(--gold);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 56px;
}

/* SERVICES */
.services {
    padding: 100px 0 120px;
    background: var(--cream);
    position: relative;
}

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

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

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

.service-card--large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--green);
    color: var(--offwhite);
    padding: 56px 48px;
}

.service-card--large h3 {
    color: var(--offwhite);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-card--large p {
    color: rgba(245, 240, 232, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 400px;
}

.service-card--large .service-link {
    color: var(--gold);
}

.service-card--dark {
    background: var(--green-dark);
    color: var(--offwhite);
}

.service-card--dark h3 {
    color: var(--offwhite);
}

.service-card--dark p {
    color: rgba(245, 240, 232, 0.75);
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--green);
    color: var(--offwhite);
}

.service-card--large .service-icon,
.service-card--dark .service-icon {
    background: rgba(212, 168, 75, 0.2);
    color: var(--gold);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    color: var(--gold);
    gap: 8px;
}

/* ABOUT */
.about {
    padding: 100px 0 120px;
    background: var(--offwhite);
    position: relative;
    overflow: hidden;
}

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

.about-visual {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560/640;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 2;
    border: 5px solid var(--offwhite);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 400/300;
}

.about-geo {
    position: absolute;
    top: -20px;
    right: 40px;
    z-index: 0;
    opacity: 0.4;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.02rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--green);
}

.about-feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* WHY US */
.why-us {
    padding: 100px 0 120px;
    background: var(--cream);
}

.why-us-header {
    text-align: center;
    margin-bottom: 56px;
}

.why-us-header .section-desc {
    margin: 0 auto;
}

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

.why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(27, 67, 50, 0.06);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-card--gold {
    background: var(--green);
    color: var(--offwhite);
}

.why-card--gold h3 {
    color: var(--gold);
}

.why-card--gold p {
    color: rgba(245, 240, 232, 0.8);
}

.why-card-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(27, 67, 50, 0.06);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card--gold .why-card-num {
    color: rgba(212, 168, 75, 0.2);
}

.why-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.why-card-bg {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(27, 67, 50, 0.04);
}

.why-card--gold .why-card-bg {
    background: rgba(212, 168, 75, 0.1);
}

/* CTA BANNER */
.cta-banner {
    background: var(--green);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-geo {
    position: absolute;
    border-radius: 50%;
}

.cta-geo-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    border: 2px solid rgba(212, 168, 75, 0.15);
}

.cta-geo-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    right: 10%;
    background: rgba(212, 168, 75, 0.06);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--offwhite);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* CONTACT */
.contact {
    padding: 100px 0 120px;
    background: var(--offwhite);
}

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

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--green);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-item a {
    color: var(--gold);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--green);
}

.contact-desc {
    font-size: 1.02rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 8px;
}

.contact-form-wrap {
    position: relative;
}

.contact-form-bg {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    background: var(--green);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.06;
}

.contact-form-wrap h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

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

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

.form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 48px 36px;
    position: relative;
    z-index: 1;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* FOOTER */
.footer {
    background: var(--green-dark);
    color: var(--offwhite);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--offwhite);
    line-height: 1.2;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

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

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

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

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.4);
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-right {
        min-height: 400px;
        max-width: 500px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        max-width: 480px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(245, 240, 232, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(27, 67, 50, 0.1);
        transform: translateY(-120%);
        transition: var(--transition);
        opacity: 0;
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 80px;
    }
    
    .hero-grid {
        padding: 40px 24px 60px;
    }
    
    .hero-right {
        min-height: 300px;
        order: -1;
    }
    
    .hero-img-float {
        left: -10px;
        bottom: -10px;
    }
    
    .hero-img-float img {
        width: 180px;
        height: 180px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card--large {
        grid-column: span 1;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-accent {
        right: 0;
        bottom: -20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 22px;
        font-size: 0.88rem;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .service-card--large {
        padding: 36px 28px;
    }
    
    .contact-form {
        padding: 24px;
    }
}
