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

:root {
    --plum-50: #faf5f7;
    --plum-100: #f3e8ed;
    --plum-200: #e8cdd8;
    --plum-300: #d4a3b8;
    --plum-400: #be7494;
    --plum-500: #a85574;
    --plum-600: #933e5c;
    --plum-700: #7a314b;
    --plum-800: #63283e;
    --plum-900: #4f1f31;
    --plum-950: #2a0f18;
    
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background: var(--neutral-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow 0.3s ease;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--plum-900);
}

.logo--light {
    color: #fff;
}

.logo-icon {
    color: var(--plum-600);
}

.logo--light .logo-icon {
    color: var(--amber-400);
}

.logo-accent {
    color: var(--amber-600);
}

.logo--light .logo-accent {
    color: var(--amber-400);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-600);
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--plum-700);
    background: var(--plum-50);
}

.btn-nav {
    background: var(--plum-700);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    margin-left: 0.5rem;
}

.btn-nav:hover {
    background: var(--plum-600);
    color: #fff !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-700);
    padding: 0.5rem;
    border-radius: 8px;
}

.mobile-menu-btn:hover {
    background: var(--neutral-100);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--plum-950) 0%, var(--plum-900) 40%, var(--plum-800) 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 116, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(168, 85, 116, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--amber-300);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-headline span {
    color: var(--amber-400);
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--plum-200);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--amber-500);
    color: var(--neutral-900);
}

.btn-primary:hover {
    background: var(--amber-400);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

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

/* Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-card {
    padding: 1.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.hero-card--primary {
    background: linear-gradient(135deg, var(--plum-700), var(--plum-600));
    grid-column: 1;
    grid-row: 1 / 3;
}

.hero-card--secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-card--accent {
    background: linear-gradient(135deg, var(--amber-600), var(--amber-500));
}

.hero-card--dark {
    background: var(--neutral-900);
    border: 1px solid var(--neutral-800);
}

.hero-card-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-card--accent .hero-card-number {
    color: var(--neutral-900);
}

.hero-card-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--plum-200);
    letter-spacing: 0.02em;
}

.hero-card--accent .hero-card-label {
    color: rgba(0, 0, 0, 0.6);
}

.hero-card-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-top: 0.25rem;
}

.hero-card-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    opacity: 0.3;
    color: #fff;
}

.hero-card--accent .hero-card-icon {
    color: var(--neutral-900);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    color: var(--neutral-50);
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum-600);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.section-title--light {
    color: #fff;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--neutral-500);
    line-height: 1.7;
    max-width: 560px;
}

/* ===== ABOUT ===== */
.about {
    padding: 6rem 0;
    background: var(--neutral-50);
}

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

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

.about-image {
    border-radius: 20px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    background: var(--amber-400);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.6;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--plum-800);
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--amber-400);
    line-height: 1;
}

.exp-label {
    display: block;
    font-size: 0.75rem;
    color: var(--plum-200);
    margin-top: 0.25rem;
    line-height: 1.4;
}

.about-content .section-title {
    margin-bottom: 1.25rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--amber-500);
    margin-top: 2px;
}

.about-feature span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
    line-height: 1.4;
}

/* ===== PRODUCTS ===== */
.products {
    padding: 6rem 0;
    background: #fff;
}

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

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

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

.product-card {
    background: var(--neutral-50);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--plum-200);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.product-tag {
    display: inline-block;
    background: var(--amber-500);
    color: var(--neutral-900);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.3125rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-tag--new {
    background: var(--plum-600);
    color: #fff;
}

.product-card-content {
    padding: 1.5rem;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--plum-700);
}

.product-card-link:hover {
    color: var(--plum-600);
}

.product-card-link svg {
    transition: transform 0.2s ease;
}

.product-card-link:hover svg {
    transform: translateX(3px);
}

/* ===== WHY US ===== */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--plum-900), var(--plum-950));
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-content .section-label {
    color: var(--amber-400);
}

.why-us-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--plum-200);
    margin-bottom: 2.5rem;
}

.why-us-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--amber-400);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--plum-300);
    margin-top: 0.25rem;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.why-feature-number {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--plum-700);
    line-height: 1;
    padding-top: 0.125rem;
}

.why-feature-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.375rem;
}

.why-feature-desc {
    font-size: 0.9375rem;
    color: var(--plum-300);
    line-height: 1.6;
}

/* ===== LOCATION ===== */
.location {
    padding: 6rem 0;
    background: var(--neutral-50);
}

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

.location-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--neutral-500);
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.location-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-50);
    border-radius: 12px;
    color: var(--plum-700);
}

.location-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.location-detail-text strong {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neutral-400);
}

.location-detail-text span,
.location-detail-text a {
    font-size: 0.9375rem;
    color: var(--neutral-700);
    font-weight: 500;
}

.location-detail-text a:hover {
    color: var(--plum-700);
}

.location-map {
    position: relative;
}

.map-placeholder {
    background: var(--neutral-100);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    height: 100%;
    min-height: 420px;
    position: relative;
}

.map-placeholder-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.map-placeholder-content svg {
    color: var(--plum-400);
}

.map-placeholder-content p {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    font-weight: 500;
}

.btn-map {
    margin-top: 0.5rem;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--plum-800), var(--plum-950));
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-content .section-label {
    color: var(--amber-400);
}

.contact-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--plum-200);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    transition: color 0.2s ease;
}

.contact-method:hover {
    color: var(--amber-400);
}

.contact-method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--amber-400);
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--plum-200);
    letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    color: #fff;
    transition: all 0.2s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--plum-400);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--amber-500);
    background: rgba(255, 255, 255, 0.1);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2rem;
    color: #fff;
}

.form-success-icon {
    color: var(--amber-400);
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--plum-200);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-950);
    padding: 4rem 0 0;
    color: var(--neutral-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--neutral-800);
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--neutral-500);
    margin-top: 1rem;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neutral-300);
    margin-bottom: 1.25rem;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--neutral-500);
    transition: color 0.2s ease;
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--amber-500);
}

.footer-contact-list a {
    color: var(--neutral-500);
}

.footer-contact-list a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8125rem;
    color: var(--neutral-600);
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--neutral-700);
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--neutral-200);
    padding: 1rem 1.5rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-700);
    border-bottom: 1px solid var(--neutral-100);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--plum-700);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container,
    .about-grid,
    .why-us-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-cards {
        max-width: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero {
        padding: 7rem 0 5rem;
        min-height: auto;
    }
    
    .hero-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-card--primary {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .why-us-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-card--primary {
        grid-column: auto;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        justify-content: center;
    }
}
