:root {
    --forest-50: #f0f7f0;
    --forest-100: #dcefdc;
    --forest-200: #b9dfba;
    --forest-300: #86c78a;
    --forest-400: #52a656;
    --forest-500: #338638;
    --forest-600: #256b29;
    --forest-700: #1d5421;
    --forest-800: #17421b;
    --forest-900: #123516;
    --forest-950: #081c0b;
    --offwhite-50: #faf9f7;
    --offwhite-100: #f5f4f0;
    --offwhite-200: #ebe9e3;
    --offwhite-300: #d8d5cc;
    
    --nav-height: 72px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(29, 84, 33, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 30px rgba(8, 28, 11, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest-800);
    z-index: 1001;
}

.nav-logo {
    width: 36px;
    height: 36px;
    color: var(--forest-700);
    flex-shrink: 0;
}

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

.nav-brand-text span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--forest-600);
    letter-spacing: 0.02em;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--forest-700);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background: rgba(29, 84, 33, 0.06);
    color: var(--forest-800);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    margin-left: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--offwhite-50);
    background: var(--forest-700);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--forest-800);
    transform: translateY(-1px);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

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

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest-700);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 40px) 0 60px;
    position: relative;
    overflow: hidden;
    background: var(--offwhite-50);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 50% at 70% 40%, rgba(29, 84, 33, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 60%, rgba(82, 166, 86, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest-600);
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(29, 84, 33, 0.06);
    border: 1px solid rgba(29, 84, 33, 0.12);
    border-radius: 100px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--forest-500);
    border-radius: 50%;
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--forest-950);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--forest-700);
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 480px;
}

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

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

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

.hero-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-800);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--forest-600);
    opacity: 0.7;
    letter-spacing: 0.02em;
}

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

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(8, 28, 11, 0.15);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/7;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--forest-200);
    border-radius: var(--radius-md);
    z-index: -1;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest-600);
    opacity: 0.6;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll svg {
    width: 16px;
    height: 16px;
    animation: arrow-bounce 2s ease-in-out infinite;
}

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

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--forest-700);
    color: var(--offwhite-50);
}

.btn-primary:hover {
    background: var(--forest-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 84, 33, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--forest-700);
    border: 1.5px solid var(--forest-700);
}

.btn-secondary:hover {
    background: var(--forest-700);
    color: var(--offwhite-50);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--forest-700);
    border: 1.5px solid var(--forest-700);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

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

/* ===== SECTION STYLES ===== */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest-600);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--forest-950);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--forest-700);
    opacity: 0.75;
    max-width: 560px;
}

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

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

.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* ===== PRODUCTS ===== */
.products {
    padding: 100px 0;
    background: var(--offwhite-50);
}

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

.product-card {
    background: var(--offwhite-50);
    border: 1px solid var(--offwhite-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(8, 28, 11, 0.1);
    border-color: var(--forest-200);
}

.product-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 24px;
}

.product-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest-900);
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--forest-700);
    opacity: 0.75;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--offwhite-100);
}

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

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8, 28, 11, 0.12);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/6;
}

.about-image-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(8, 28, 11, 0.15);
    border: 4px solid var(--offwhite-100);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background: var(--forest-300);
    border-radius: var(--radius-sm);
    z-index: -1;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--forest-700);
    margin-bottom: 20px;
    opacity: 0.85;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--forest-800);
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--forest-600);
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 100%;
    height: 100%;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--forest-800);
    color: var(--offwhite-50);
}

.services .section-eyebrow {
    color: var(--forest-300);
}

.services .section-title {
    color: var(--offwhite-50);
}

.services .section-subtitle {
    color: var(--forest-200);
    opacity: 0.8;
}

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

.service-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(134, 199, 138, 0.3);
}

.service-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-500);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    color: var(--forest-300);
    margin-bottom: 20px;
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--offwhite-50);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--forest-200);
    opacity: 0.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: var(--offwhite-100);
    border-top: 1px solid var(--offwhite-200);
    border-bottom: 1px solid var(--offwhite-200);
}

.cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--forest-950);
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1rem;
    color: var(--forest-700);
    opacity: 0.8;
    line-height: 1.6;
}

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

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

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

.contact-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--forest-700);
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(29, 84, 33, 0.06);
    border: 1px solid rgba(29, 84, 33, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-700);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest-600);
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--forest-800);
    line-height: 1.6;
}

.contact-detail-link {
    font-size: 0.95rem;
    color: var(--forest-700);
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-detail-link:hover {
    color: var(--forest-500);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--offwhite-50);
    border: 1px solid var(--offwhite-200);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: 0 8px 30px rgba(8, 28, 11, 0.06);
}

.contact-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-950);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--forest-700);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--forest-950);
    background: var(--offwhite-100);
    border: 1.5px solid var(--offwhite-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--forest-500);
    box-shadow: 0 0 0 3px rgba(51, 134, 56, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--forest-600);
    opacity: 0.4;
}

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

/* Form Success */
.contact-form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(29, 84, 33, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-600);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-950);
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.95rem;
    color: var(--forest-700);
    opacity: 0.75;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    padding: 64px 0 0;
    background: var(--forest-950);
    color: var(--forest-200);
}

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

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--offwhite-50);
    margin-bottom: 16px;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
    color: var(--forest-400);
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--forest-300);
    opacity: 0.7;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest-400);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--forest-300);
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
}

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

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--forest-300);
    opacity: 0.7;
    margin-bottom: 8px;
}

.footer-link {
    color: var(--forest-300);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--offwhite-50);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--forest-400);
    opacity: 0.5;
}

/* ===== 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-container {
        gap: 40px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--offwhite-50);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--nav-height) + 24px) 24px 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.open {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        justify-content: center;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: calc(var(--nav-height) + 60px) 0 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 400px;
    }
    
    .about-image-secondary {
        right: -16px;
        bottom: -20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
