/* ============================================
   RADICAL REDESIGN - Purple & Pink Theme
   Playfair Display + Montserrat
   ============================================ */

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

:root {
    /* Purple & Pink Palette */
    --primary: #7C3AED;
    --secondary: #EC4899;
    --accent: #F59E0B;
    --purple-light: #A78BFA;
    --purple-lighter: #C4B5FD;
    --pink-light: #F9A8D4;
    --white: #FFFFFF;
    --black: #0F172A;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-700: #334155;
    --gray-900: #0F172A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%);
    --gradient-radial: radial-gradient(circle at center, #7C3AED 0%, #EC4899 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.15);
    --shadow-md: 0 4px 16px rgba(124, 58, 237, 0.2);
    --shadow-lg: 0 8px 32px rgba(124, 58, 237, 0.25);
    --shadow-xl: 0 16px 48px rgba(124, 58, 237, 0.3);
    --shadow-neuro: 8px 8px 16px rgba(124, 58, 237, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--gray-900);
    background: var(--gray-50);
    overflow-x: hidden;
}

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

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

/* ============================================
   PARTICLE BACKGROUND
   ============================================ */

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

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle 20s ease-in-out infinite;
}

.particle-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2), transparent);
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.4), transparent);
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.particle-4 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25), transparent);
    bottom: 30%;
    right: 10%;
    animation-delay: 6s;
}

.particle-5 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.3), transparent);
    bottom: 10%;
    left: 20%;
    animation-delay: 8s;
}

.particle-6 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(249, 168, 212, 0.35), transparent);
    top: 70%;
    right: 25%;
    animation-delay: 10s;
}

.particle-7 {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent);
    top: 40%;
    left: 50%;
    animation-delay: 12s;
}

.particle-8 {
    width: 85px;
    height: 85px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent);
    bottom: 50%;
    right: 40%;
    animation-delay: 14s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, 40px) scale(1.05);
        opacity: 0.7;
    }
}

/* ============================================
   FLOATING SVG SHAPES
   ============================================ */

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

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

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

.shape-2 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 5%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation-delay: 6s;
}

.shape-4 {
    width: 170px;
    height: 170px;
    top: 30%;
    left: 15%;
    animation-delay: 9s;
}

.shape-5 {
    width: 190px;
    height: 190px;
    bottom: 10%;
    left: 40%;
    animation-delay: 12s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ============================================
   VERTICAL SIDE NAVIGATION
   ============================================ */

.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(124, 58, 237, 0.1);
    border-right: 2px solid rgba(124, 58, 237, 0.1);
}

.nav-logo {
    margin-bottom: 50px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    display: block;
    writing-mode: vertical-lr;
    text-orientation: upright;
    line-height: 1.2;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-200);
    display: block;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.nav-dot::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-dot:hover::before {
    opacity: 1;
    left: 35px;
}

.nav-dot:hover,
.nav-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.5);
}

.nav-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link {
    color: var(--gray-700);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: var(--gradient-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ============================================
   AD BADGE FLOATING
   ============================================ */

.ad-badge-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

/* ============================================
   HERO - DIAGONAL SPLIT
   ============================================ */

.hero-diagonal {
    min-height: 100vh;
    display: flex;
    position: relative;
    margin-left: 80px;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 100px 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    z-index: 2;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: slideDown 1s ease-out;
}

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

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

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

.btn-rounded {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.btn-rounded:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    border: 3px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: var(--transition);
}

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

.hero-right {
    flex: 1;
    position: relative;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: rotate-circle 20s linear infinite;
}

.circle-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circle-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation-delay: -7s;
}

.circle-3 {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    animation-delay: -14s;
}

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

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: url('images/photo-1490645935967-10de6ba17061.jpeg') center/cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float-image 6s ease-in-out infinite;
}

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

.diagonal-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, transparent 49%, var(--primary) 50%, transparent 51%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   DISCLAIMER - NEUMORPHIC
   ============================================ */

.disclaimer-neuro {
    padding: 100px 0;
    background: var(--gray-100);
}

.disclaimer-card-neuro {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--gray-100);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-neuro);
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.disclaimer-title-neuro {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

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

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

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

.section-tag {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

/* ============================================
   PRODUCTS - ROUNDED GRID
   ============================================ */

.products-rounded {
    padding: 120px 0;
    margin-left: 80px;
    background: white;
}

.rounded-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.rounded-card {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.rounded-card[data-index="1"] { animation-delay: 0.1s; }
.rounded-card[data-index="2"] { animation-delay: 0.2s; }
.rounded-card[data-index="3"] { animation-delay: 0.3s; }
.rounded-card[data-index="4"] { animation-delay: 0.4s; }

.rounded-shape {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    transition: var(--transition);
}

.rounded-card:hover .rounded-shape {
    transform: scale(1.05);
}

.rounded-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    border-radius: 50%;
}

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

.rounded-card:hover .rounded-overlay {
    opacity: 0.3;
}

.rounded-card:hover .rounded-image {
    transform: scale(1.2);
}

.rounded-content {
    text-align: center;
}

.rounded-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.rounded-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
}

/* ============================================
   FEATURE - ZIGZAG LAYOUT
   ============================================ */

.feature-zigzag {
    padding: 120px 0;
    margin-left: 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
}

.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.zigzag-image {
    position: relative;
}

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

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.1);
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary);
}

.corner-tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.content-tag {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

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

.content-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   SHOWCASE - BENTO GRID
   ============================================ */

.showcase-bento {
    padding: 120px 0;
    margin-left: 80px;
    background: white;
}

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    border-radius: 32px;
    padding: 50px;
    transition: var(--transition);
}

.bento-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    box-shadow: var(--shadow-lg);
}

.bento-image {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: var(--gradient-primary);
}

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

.bento-image:hover img {
    transform: scale(1.1);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

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

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

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

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

.bento-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;
}

.bento-title {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 25px;
}

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

/* ============================================
   CONTACT - GLASSMORPHISM
   ============================================ */

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

.glass-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 60px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

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

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 20px;
    border: none;
    border-bottom: 3px solid var(--gray-200);
    background: transparent;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--black);
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

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

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 0;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
}

.field-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.form-field input:focus ~ .field-border,
.form-field textarea:focus ~ .field-border {
    width: 100%;
}

.btn-submit-glass {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    margin-top: 20px;
}

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

/* ============================================
   FOOTER - 4 COLUMN CENTERED
   ============================================ */

.footer-modern {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--gray-200);
    padding: 80px 0 40px;
    margin-left: 80px;
    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-col-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: white;
    display: block;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

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

.footer-heading {
    font-family: var(--font-display);
    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(--gray-200);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

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

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

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

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

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

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

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

/* ============================================
   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);
    }
}

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

@media (max-width: 1200px) {
    .hero-diagonal {
        flex-direction: column;
    }
    
    .diagonal-divider {
        display: none;
    }
    
    .zigzag-row,
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-image,
    .bento-notice {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .side-nav {
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .side-nav.active {
        transform: translateX(0);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-diagonal,
    .products-rounded,
    .feature-zigzag,
    .showcase-bento,
    .contact-glass,
    .footer-modern {
        margin-left: 0;
    }
    
    .hero-left,
    .hero-right {
        padding: 60px 30px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title-large {
        font-size: 36px;
    }
    
    .rounded-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .glass-form-wrapper {
        padding: 40px 30px;
    }
    
    .container-wide,
    .container-narrow {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title-large {
        font-size: 28px;
    }
    
    .content-title,
    .bento-title {
        font-size: 28px;
    }
    
    .rounded-title {
        font-size: 24px;
    }
}