/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #f8f9fa;
    color: #2c3e50;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== AD BAR ===== */
.ad-bar {
    background: #1E88E5;
    color: #fff;
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.ad-text {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
    }
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #1a2a3a 0%, #0a111a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
    position: relative;
}

.loader-solar {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-core {
    width: 40px;
    height: 40px;
    background: #FFB74D;
    border-radius: 50%;
    box-shadow: 0 0 30px #FF9800, 0 0 60px rgba(255, 152, 0, 0.4);
    z-index: 2;
    animation: sunPulse 2s ease-in-out infinite;
}

.orbit {
    position: absolute;
    border: 1.5px solid rgba(30, 136, 229, 0.2);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.orbit-1 {
    width: 80px;
    height: 80px;
    animation-duration: 6s;
}

.orbit-2 {
    width: 110px;
    height: 110px;
    animation-duration: 9s;
    animation-direction: reverse;
}

.planet {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #1E88E5;
    border-radius: 50%;
    box-shadow: 0 0 10px #1E88E5;
}

.loader-name {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #FFB74D, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes sunPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* ===== COOKIE ===== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cookie-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cookie-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    border-top: 4px solid #FFB74D;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-icon {
    font-size: 2.5rem;
    color: #FFB74D;
    margin-bottom: 12px;
}

.cookie-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #1E88E5;
    margin: 0 0 10px;
}

.cookie-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, #1E88E5, #1565C0);
    color: #fff;
    border: none;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
}

.btn-reject {
    background: transparent;
    color: #1E88E5;
    border: 2px solid #1E88E5;
}

.btn-reject:hover {
    background: #1E88E5;
    color: #fff;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    color: #FFB74D;
    font-size: 1.6rem;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1E88E5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-accent {
    color: #FFB74D;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-close {
    display: none;
    font-size: 1.5rem;
    color: #1E88E5;
    padding: 8px;
}

.nav-link {
    color: #2c3e50;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover {
    background: rgba(30, 136, 229, 0.1);
    color: #1E88E5;
}

.btn-shop {
    background: linear-gradient(135deg, #FFB74D, #FF9800);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: #1E88E5;
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 60px 5% 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 183, 77, 0.15);
    color: #FF9800;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 152, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #1E88E5;
    margin: 0 0 20px;
}

.highlight {
    color: #FFB74D;
}

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #5a6b7a;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 0 20px;
}

.hero-features-compact {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-features-compact span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

.hero-features-compact i {
    color: #FFB74D;
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1E88E5, #1565C0);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.35);
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 136, 229, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1E88E5;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid #1E88E5;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover {
    background: #1E88E5;
    color: #fff;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFB74D;
}

.stat-label {
    font-size: 0.78rem;
    color: #7a8b9c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(30, 136, 229, 0.2);
}

/* Product Showcase */
.hero-visual {
    flex: 0 0 460px;
    display: flex;
    justify-content: center;
}

.product-showcase {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solar-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 183, 77, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

.solar-glow-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite reverse;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.product-image-wrap {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(30, 136, 229, 0.2);
    z-index: 2;
    padding: 20px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-chip {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1E88E5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid rgba(255, 183, 77, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.feature-chip i {
    color: #FFB74D;
}

.chip-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.chip-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 1.2s;
}

.chip-3 {
    top: 20%;
    right: -5%;
    animation-delay: 0.6s;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #1E88E5;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 10;
}

.scroll-dot-anim {
    width: 24px;
    height: 38px;
    border: 2px solid #1E88E5;
    border-radius: 12px;
    position: relative;
}

.scroll-dot-anim::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: #1E88E5;
    border-radius: 2px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 1.8s ease infinite;
}

@keyframes scroll-down {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 90px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 183, 77, 0.1);
    color: #FF9800;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #1E88E5;
    margin: 0 0 16px;
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1E88E5, #FFB74D);
    border-radius: 2px;
    margin: 0 auto;
}

.section-desc {
    color: #5a6b7a;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 20px auto 0;
}

/* ===== ABOUT ===== */
.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(30, 136, 229, 0.2);
    object-fit: cover;
    aspect-ratio: 1/1;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #FFB74D, #FF9800);
    color: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
    font-family: 'Montserrat', sans-serif;
}

.about-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #1E88E5;
    margin: 0 0 16px;
    font-weight: 600;
}

.about-body {
    color: #5a6b7a;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 16px;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 32px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1E88E5;
}

.pillar i {
    color: #FFB74D;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== WHY US ===== */
.whyus {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(30, 136, 229, 0.1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(30, 136, 229, 0.15);
}

.why-card.featured-card {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: #fff;
    border: none;
}

.why-badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFB74D;
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.why-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.featured-card .why-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
}

.why-icon {
    font-size: 1.5rem;
    color: #1E88E5;
}

.featured-card .why-icon {
    color: #fff;
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #1E88E5;
    margin: 0 0 12px;
    font-weight: 600;
}

.featured-card .why-title {
    color: #fff;
}

.why-desc {
    font-size: 0.88rem;
    color: #5a6b7a;
    line-height: 1.7;
    margin: 0;
}

.featured-card .why-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 28px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(30, 136, 229, 0.08);
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(30, 136, 229, 0.1);
}

.testi-card.featured-testi {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    border-color: transparent;
}

.testi-stars {
    color: #FFB74D;
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.featured-testi .testi-stars {
    color: #FFB74D;
}

.testi-text {
    font-size: 0.9rem;
    color: #5a6b7a;
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic;
}

.featured-testi .testi-text {
    color: rgba(255, 255, 255, 0.95);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FFB74D, #FF9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.testi-info strong {
    display: block;
    font-size: 0.9rem;
    color: #1E88E5;
}

.featured-testi .testi-info strong {
    color: #fff;
}

.testi-info span {
    font-size: 0.78rem;
    color: #7a8b9c;
}

.featured-testi .testi-info span {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FAQS ===== */
.faqs {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #FFB74D;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1E88E5;
    transition: background 0.2s;
    border: none;
    background: #fff;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.faq-q:hover {
    background: rgba(30, 136, 229, 0.04);
}

.faq-q i {
    color: #FFB74D;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 24px 20px;
    color: #5a6b7a;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

.faq-a a {
    color: #1E88E5;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #0d2b45;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-body {
    padding: 60px 5% 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo span {
    color: #FFB74D;
}

.footer-logo i {
    color: #FFB74D;
    margin-right: 8px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #b0c4de;
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 300px;
}

.footer-heading {
    color: #FFB74D;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #b0c4de;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #FFB74D;
}

.footer-link-btn {
    background: none;
    border: none;
    color: #b0c4de;
    font-size: 0.88rem;
    transition: color 0.2s;
    cursor: pointer;
    padding: 0;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
}

.footer-link-btn:hover {
    color: #FFB74D;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #b0c4de;
}

.footer-contact li i {
    color: #FFB74D;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
}

.footer-contact li a {
    color: #b0c4de;
    transition: color 0.2s;
}

.footer-contact li a:hover {
    color: #FFB74D;
}

.footer-contact li span {
    flex: 1;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.78rem;
    color: #8da0b5;
    text-align: center;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: #8da0b5;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 8000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    background: #fff;
    border-radius: 20px;
    width: min(90vw, 560px);
    max-height: 80vh;
    z-index: 8001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-top: 4px solid #FFB74D;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #eef2f6;
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #1E88E5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: #FFB74D;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #f0f4f8;
    color: #1E88E5;
}

.modal-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}

.modal-body h4 {
    color: #1E88E5;
    font-size: 0.95rem;
    margin: 20px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #5a6b7a;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0 0 8px;
}

.modal-body a {
    color: #1E88E5;
    font-weight: 500;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero-visual {
        flex: 0 0 380px;
    }

    .product-showcase {
        width: 340px;
        height: 340px;
    }

    .product-image-wrap {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -75%;
        width: 75%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 30px 28px;
        gap: 6px;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 9000;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        color: #1E88E5;
        font-size: 1.4rem;
        cursor: pointer;
        margin-bottom: 20px;
        padding: 4px;
        width: 100%;
        background: none;
        border: none;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid #eef2f6;
        width: 100%;
    }

    .btn-shop {
        margin-top: 12px;
        text-align: center;
        width: 100%;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features-compact {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        flex: none;
    }

    .product-showcase {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .product-image-wrap {
        width: 220px;
        height: 220px;
    }

    .chip-1 {
        left: -5%;
        font-size: 0.7rem;
    }

    .chip-2 {
        left: -3%;
        font-size: 0.7rem;
    }

    .chip-3 {
        right: -3%;
        font-size: 0.7rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrap {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .about-badge-float {
        right: 0;
        bottom: -15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-links li a {
        text-align: left;
    }

    .footer-link-btn {
        text-align: left;
        width: 100%;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-contact li {
        justify-content: flex-start;
        text-align: left;
        flex-wrap: wrap;
    }

    .section {
        padding: 60px 5%;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
    }

    .hero-features-compact {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .stat-divider {
        display: none;
    }

    .about-pillars {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .product-showcase {
        width: 260px;
        height: 260px;
    }

    .product-image-wrap {
        width: 190px;
        height: 190px;
    }

    .feature-chip {
        padding: 6px 12px;
        font-size: 0.65rem;
    }

    .chip-1 {
        top: 10%;
        left: 0;
    }

    .chip-2 {
        left: 0;
    }

    .chip-3 {
        right: 0;
    }

    .modal {
        width: 95vw;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }
}

/* ===== IOS TOUCH IMPROVEMENTS ===== */
@media (hover: none) and (pointer: coarse) {

    .nav-link,
    .btn-primary,
    .btn-secondary,
    .btn-shop,
    .faq-q,
    .modal-close {
        -webkit-tap-highlight-color: transparent;
    }

    .btn-primary:active,
    .btn-secondary:active,
    .btn-shop:active {
        transform: translateY(-1px);
    }
}