/* ============================================
   TLHOMPA BASADI – Main Stylesheet
   Color Palette:
    --navy:   #0f1e3a  (dark hero/sections)
    --blue:   #5b8ec4  (logo blue)
    --gold:   #d4b483  (logo gold / accent)
    --white:  #ffffff
    --light:  #f0f4ff
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ---- CSS Variables ---- */
:root {
    --navy: #0f1e3a;
    --navy-mid: #162844;
    --blue: #5b8ec4;
    --blue-light: #7baad4;
    --gold: #d4b483;
    --gold-dark: #b8955f;
    --white: #ffffff;
    --light: #f0f4ff;
    --text-light: rgba(255, 255, 255, 0.85);
    --shadow: 0 8px 30px rgba(15, 30, 58, 0.12);
    --shadow-lg: 0 20px 60px rgba(15, 30, 58, 0.18);
    --radius: 16px;
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================ */
/* ----  UTILITY CLASSES  ---- */
/* ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--blue);
}

.accent-gold {
    color: var(--gold);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-tag.light {
    color: var(--gold);
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--white);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================ */
/* ---- SCROLL REVEAL ANIMATIONS ---- */
/* ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================ */
/* ---- NAVBAR ---- */
/* ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 30, 58, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    padding: 10px 0;
}

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

.nav-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition);
}

.nav-logo img:hover {
    transform: scale(1.04);
}

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

.nav-links li a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.02em;
}

.nav-links li a:hover {
    color: var(--gold);
    background: rgba(212, 180, 131, 0.1);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-radius: 8px !important;
    padding: 10px 22px !important;
    font-weight: 700 !important;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition) !important;
}

.nav-cta:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 180, 131, 0.4) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================ */
/* ---- HERO ---- */
/* ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(15, 30, 58, 0.8), rgba(15, 30, 58, 0.85)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 120px 24px 160px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue), transparent);
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold), transparent);
    bottom: 0;
    left: -80px;
    animation: float 11s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero>.container {
    display: none;
}

/* hero uses direct flex */
.hero {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1640px;
    padding-left: max(24px, calc((100% - 1200px) / 2 + 24px));
    flex: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 180, 131, 0.15);
    border: 1px solid rgba(212, 180, 131, 0.3);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 .accent {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Common Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(212, 180, 131, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(212, 180, 131, 0.4);
}

.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: max(24px, calc((100% - 1200px) / 2 + 24px));
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-16px) rotate(1deg);
    }
}

/* Wave dividers */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.wave-dark svg path {
    fill: #0f1e3a;
}

.wave-white svg path {
    fill: #ffffff;
}

.wave-dark2 svg path {
    fill: #0f1e3a;
}

.wave-light2 svg path {
    fill: #f0f4ff;
}

/* ============================================ */
/* ---- ABOUT SECTION ---- */
/* ============================================ */
.about-section {
    position: relative;
    background: var(--white);
    padding: 120px 0 160px;
    z-index: 1;
}

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

.about-img .img-frame {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-radius: var(--radius);
    overflow: visible;
}

.about-img .img-frame img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 0.6s ease;
}

.about-img .img-frame img:hover {
    transform: scale(1.05);
    z-index: 2;
}

.img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(212, 180, 131, 0.4);
}

.img-badge i {
    font-size: 1.3rem;
}

.about-text .section-tag {
    color: var(--gold-dark);
}

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--navy);
}

.about-text p {
    color: #546;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light);
    padding: 14px 18px;
    border-radius: 12px;
}

.stat-item i {
    font-size: 1.4rem;
    color: var(--blue);
}

.stat-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-item span {
    font-size: 0.78rem;
    color: #778;
}

/* ============================================ */
/* ---- PRODUCTS SECTION ---- */
/* ============================================ */
.products-section {
    position: relative;
    background: var(--navy);
    padding: 100px 0 160px;
    z-index: 1;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    cursor: default;
    backdrop-filter: blur(4px);
}

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(212, 180, 131, 0.08);
    border-color: rgba(212, 180, 131, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 180, 131, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: background var(--transition);
}

.product-card:hover .product-icon {
    background: rgba(212, 180, 131, 0.25);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
}

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

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================ */
/* ---- VALUES SECTION ---- */
/* ============================================ */
.values-section {
    position: relative;
    background: var(--white);
    padding: 120px 0 160px;
}

.values-section .section-header h2 {
    color: var(--navy);
}

.values-section .section-header p {
    color: #668;
}

.values-section .section-tag {
    color: var(--blue);
}

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

.value-card {
    position: relative;
    background: var(--navy);
    border-radius: var(--radius);
    padding: 40px 28px 32px;
    overflow: hidden;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 30, 58, 0.25);
}

.value-num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(212, 180, 131, 0.4);
    margin-bottom: 14px;
    text-align: left;
}

.value-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================ */
/* ---- WHY US SECTION ---- */
/* ============================================ */
.why-section {
    position: relative;
    background: var(--navy);
    padding: 100px 0 160px;
}

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

.why-text .section-tag {
    color: var(--gold);
}

.why-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.why-text p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 28px;
    font-size: 1rem;
}

.eco-list {
    list-style: none;
    margin-bottom: 36px;
}

.eco-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.eco-list li i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 22px;
    transition: transform var(--transition), background var(--transition);
}

.feature-box:hover {
    transform: translateY(-4px);
    background: rgba(212, 180, 131, 0.08);
}

.feature-box i {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.feature-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================ */
/* ---- MISSION SECTION ---- */
/* ============================================ */
.mission-section {
    background: var(--light);
    padding: 100px 0;
}

.mission-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--white);
}

.mission-icon.gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.mission-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 1rem;
    color: #556;
    line-height: 1.75;
    font-style: italic;
}

/* ============================================ */
/* ---- CTA SECTION ---- */
/* ============================================ */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 60%);
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape-1,
.cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gold);
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--white);
    bottom: -100px;
    left: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 36px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================ */
/* ---- FOOTER ---- */
/* ============================================ */
.footer {
    background: #080f1e;
    color: var(--white);
    padding-top: 0;
}

.footer-wave {
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer .container {
    padding-top: 60px;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 52px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition), gap var(--transition);
}

.footer-nav ul li a:hover {
    color: var(--gold);
    gap: 12px;
}

.footer-nav ul li a i {
    font-size: 0.7rem;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact ul li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-contact ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom a {
    color: var(--gold);
    transition: opacity 0.2s;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* ============================================ */
/* ---- RESPONSIVE ---- */
/* ============================================ */
@media (max-width: 1024px) {

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero {
        flex-direction: column;
        padding: 140px 24px 180px;
        text-align: center;
    }

    .hero-content {
        padding-left: 0;
        max-width: 100%;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        padding-right: 0;
        width: 100%;
        max-width: 480px;
    }

    .mission-section .container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(11, 22, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 36px 36px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        align-items: flex-start;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
        display: block;
        padding: 12px 0;
        border-radius: 0;
        font-size: 1rem;
    }

    .nav-cta {
        background: var(--gold) !important;
        border-radius: 8px !important;
        padding: 12px 16px !important;
        text-align: center !important;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .mission-card {
        padding: 32px 24px;
    }
}