/* ============================================
   COMPLETE REDESIGN - Green, Black & White Theme
   Based on Suxnix Design with Modern Animations
   Fonts: Barlow + Jost
   ============================================ */

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

:root {
    /* Green, Black & White Color Palette */
    --primary-green: #10B981;
    --dark-green: #059669;
    --light-green: #34D399;
    --emerald: #10B981;
    --black: #0F172A;
    --dark-gray: #1E293B;
    --gray: #475569;
    --light-gray: #94A3B8;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --bg-light: #F1F5F9;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-light: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    
    /* Typography */
    --font-heading: 'Barlow', sans-serif;
    --font-body: 'Jost', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(16, 185, 129, 0.1);
    --shadow-md: 0 4px 16px rgba(16, 185, 129, 0.15);
    --shadow-lg: 0 8px 32px rgba(16, 185, 129, 0.2);
    --shadow-xl: 0 16px 48px rgba(16, 185, 129, 0.25);
    --shadow-dark: 0 10px 40px rgba(15, 23, 42, 0.3);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   SVG BACKGROUND SHAPES
   ============================================ */

.svg-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.svg-shape {
    position: absolute;
    animation: float-svg 20s ease-in-out infinite;
}

.svg-shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.svg-shape-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 0%;
    animation-delay: 3s;
}

.svg-shape-3 {
    width: 450px;
    height: 450px;
    bottom: 10%;
    right: 10%;
    animation-delay: 6s;
}

.svg-shape-4 {
    width: 300px;
    height: 300px;
    top: 30%;
    left: 10%;
    animation-delay: 9s;
}

.svg-shape-5 {
    width: 250px;
    height: 250px;
    bottom: 30%;
    left: 40%;
    animation-delay: 12s;
}

.svg-shape-6 {
    width: 320px;
    height: 320px;
    top: 60%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float-svg {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translate(40px, 40px) rotate(270deg);
        opacity: 0.9;
    }
}

/* ============================================
   HEADER NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
}

.logo-accent {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ad-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent);
    animation: pulse-hero 8s ease-in-out infinite;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    animation-delay: 4s;
}

@keyframes pulse-hero {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: slideDown 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 30px;
    animation: slideUp 1s ease-out 0.2s both;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.2);
    animation: rotate-circle 20s linear infinite;
}

.hero-circle-1 {
    width: 500px;
    height: 500px;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    animation-delay: -7s;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    animation-delay: -14s;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-image {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    animation: float-image 6s ease-in-out infinite;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */

.disclaimer {
    padding: 80px 0;
    background: var(--white);
}

.disclaimer-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--off-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.disclaimer-icon img {
    width: 50px;
    height: 50px;
}

.disclaimer-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.disclaimer-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products {
    padding: 120px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 0.2;
}

.product-content {
    padding: 30px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.product-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

/* ============================================
   FEATURE SECTION - CASTAÑAS
   ============================================ */

.feature {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

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

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.feature-image-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    border-radius: 24px;
    z-index: 1;
    opacity: 0.3;
}

.feature-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 30px;
}

.feature-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.feature-description strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* ============================================
   SHOWCASE SECTION - DIAFLEX FORTE
   ============================================ */

.showcase {
    padding: 120px 0;
    background: var(--white);
}

.showcase-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

.showcase-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, var(--off-white) 0%, #E2E8F0 100%);
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.showcase-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 25px;
}

.showcase-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.showcase-image {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.showcase-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

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

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.showcase-notice {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 30px;
    border-radius: 32px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

.notice-icon {
    flex-shrink: 0;
    color: #D97706;
}

.notice-text {
    font-size: 13px;
    line-height: 1.7;
    color: #92400E;
}

.notice-text strong {
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, var(--off-white) 100%);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    background: white;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--black);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 16px;
    color: var(--light-gray);
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: var(--primary-green);
    font-weight: 600;
    background: white;
    padding: 0 8px;
}

.btn-submit {
    align-self: flex-start;
    margin-top: 10px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--gradient-dark);
    color: var(--light-gray);
    padding: 80px 0 40px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--light-gray);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact {
    font-size: 13px;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-disclaimer {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 40px;
}

.footer-disclaimer h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--light-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--light-gray);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-top svg {
    stroke: white;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS Animation Attributes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-content,
    .feature-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
    }
    
    .showcase-main,
    .showcase-image,
    .showcase-notice {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-image-wrapper {
        height: 400px;
    }
    
    .hero-image {
        width: 350px;
        height: 350px;
    }
    
    .hero-circle-1 {
        width: 380px;
        height: 380px;
    }
    
    .hero-circle-2 {
        width: 300px;
        height: 300px;
    }
    
    .hero-circle-3 {
        width: 220px;
        height: 220px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .container,
    .container-small {
        padding: 0 20px;
    }
    
    .disclaimer-card {
        flex-direction: column;
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-title,
    .showcase-title {
        font-size: 28px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .logo-text,
    .logo-accent {
        font-size: 24px;
    }
    
    .hero-image-wrapper {
        height: 300px;
    }
    
    .hero-image {
        width: 280px;
        height: 280px;
    }
}