/* ====================================================
   MEGA GROSS — Premium One-Page Website CSS
   Colors: Navy #1a2332 / Gold #e9bc35 / Green #9bc13c
==================================================== */
/* --- CSS Custom Properties --- */
:root {
    --navy: #1a2332;
    --navy-dark: #0f151f;
    --navy-light:  #243044;
    --gold: #e9bc35;
    --gold-light: #f5d47a;
    --gold-dark:   #a88c2e;
    --green: #9bc13c;
    --green-dark:  #449944;
    --green-light: #b5d661;
    --white:       #ffffff;
    --off-white:   #f4f6fa;
    --text-dark:   #1a2332;
    --text-muted:  #6b7280;
    --text-light:  #9ca3af;
    --border:      rgba(255,255,255,0.08);
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg:   0 8px 48px rgba(0,0,0,0.18);
    --shadow-gold: 0 4px 24px rgba(200,168,64,0.3);
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   40px;
    --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body:   'Inter', sans-serif;
    --font-display:'Outfit', sans-serif;
}
/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
/* --- Container --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-large { padding: 15px 36px; font-size: 1rem; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,168,64,0.45);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}
/* --- Section Layout --- */
section { padding: 90px 0; }
.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200,168,64,0.12);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(200,168,64,0.3);
    margin-bottom: 16px;
}
.light-label { color: rgba(200,168,64,0.9); background: rgba(200,168,64,0.08); }
.section-header { margin-bottom: 56px; }
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--navy-dark);
    margin-top: 8px;
}
.light-heading { color: var(--white) !important; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.gold-text { color: var(--gold); }
.text-center { text-align: center; }
/* ====================================================
   HEADER
==================================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}
.header.sticky {
    background: rgba(17, 24, 39, 0.97);
    backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo-link { flex-shrink: 0; }
.header-logo {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: var(--transition);
}
.header-logo:hover { transform: scale(1.04); }
/* Inline Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}
.brand-logo:hover { transform: scale(1.03); }
.brand-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-mega {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
}
.brand-gross {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 1px;
    -webkit-text-stroke: 1px var(--navy-dark);
    paint-order: stroke fill;
}
.hero-brand-svg {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
/* Desktop Nav */
.desktop-nav ul {
    display: flex;
    gap: 4px;
}
.desktop-nav a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}
.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--gold);
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 60%; }
/* Nav CTA */
.nav-cta { font-size: 0.85rem; padding: 10px 22px; }
/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 8px 24px; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-family: var(--font-display);
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
/* ====================================================
   HERO
==================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a2e 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,168,64,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 50%, rgba(92,184,92,0.05) 0%, transparent 60%);
    pointer-events: none;
}
/* Particles */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle 8s infinite ease-in-out;
}
.particle:nth-child(1) { width: 6px; height: 6px; background: rgba(200,168,64,0.5); top: 15%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 4px; height: 4px; background: rgba(92,184,92,0.5); top: 70%; left: 5%; animation-delay: 1.5s; }
.particle:nth-child(3) { width: 8px; height: 8px; background: rgba(200,168,64,0.3); top: 30%; right: 15%; animation-delay: 3s; }
.particle:nth-child(4) { width: 5px; height: 5px; background: rgba(255,255,255,0.2); top: 80%; right: 20%; animation-delay: 4.5s; }
.particle:nth-child(5) { width: 3px; height: 3px; background: rgba(200,168,64,0.6); top: 50%; left: 45%; animation-delay: 2s; }
.particle:nth-child(6) { width: 6px; height: 6px; background: rgba(92,184,92,0.4); top: 10%; right: 40%; animation-delay: 6s; }
@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,168,64,0.12);
    border: 1px solid rgba(200,168,64,0.4);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}
.hero-badge i { font-size: 0.75rem; }
.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.9s ease-out 0.1s both;
}
.hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-item i { color: var(--green); font-size: 1rem; }
/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    animation: fadeIn 1.2s ease-out 0.5s both;
}
.hero-logo-ring {
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,168,64,0.08) 0%, rgba(26,35,50,0.5) 70%);
    border: 2px solid rgba(200,168,64,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-ring 4s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(200,168,64,0.1), inset 0 0 40px rgba(200,168,64,0.05);
}
@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 0 60px rgba(200,168,64,0.1), inset 0 0 40px rgba(200,168,64,0.05); }
    50% { box-shadow: 0 0 100px rgba(200,168,64,0.2), inset 0 0 60px rgba(200,168,64,0.1); }
}
.hero-logo-img { width: 200px; height: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}
.hero-float-card i { color: var(--gold); font-size: 1rem; }
.card-1 { top: 10%; left: -10%; animation: float-card 5s ease-in-out infinite; }
.card-2 { bottom: 20%; left: -5%; animation: float-card 5s ease-in-out infinite 1.5s; }
.card-3 { top: 30%; right: -5%; animation: float-card 5s ease-in-out infinite 3s; }
@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* Hero Wave */
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; display: block; }
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* ====================================================
   STATS
==================================================== */
.stats {
    background: var(--off-white);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200,168,64,0.1);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.stat-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* ====================================================
   PRODUCTS
==================================================== */
.products {
    background: var(--white);
    padding: 90px 0;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.product-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(200,168,64,0.15);
}
.product-img-wrap {
    position: relative;
    padding: 32px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
}
.product-icon-bg {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}
.green-bg  { background: linear-gradient(135deg, #5cb85c, #3d9a3d); }
.red-bg    { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.blue-bg   { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.gold-bg   { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.teal-bg   { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.purple-bg { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.orange-bg { background: linear-gradient(135deg, #f59e0b, #d97706); }
.pink-bg   { background: linear-gradient(135deg, #ec4899, #be185d); }
.product-badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-badge.fresh { background: #dcfce7; color: #15803d; }
.product-badge.hot   { background: #fee2e2; color: #dc2626; }
.product-badge.new   { background: #dbeafe; color: #1d4ed8; }
.product-badge.sale  { background: rgba(200,168,64,0.15); color: var(--gold-dark); }
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}
.product-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.product-tags span {
    background: var(--off-white);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.06);
}
/* ====================================================
   WHY US
==================================================== */
.why-us {
    background: var(--off-white);
    padding: 90px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.why-icon-wrap {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(200,168,64,0.12), rgba(200,168,64,0.06));
    border: 2px solid rgba(200,168,64,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: rotate(8deg) scale(1.1);
}
.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
/* ====================================================
   ABOUT
==================================================== */
.about { background: var(--white); padding: 100px 0; }
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}
.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.about-logo-display {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(145deg, var(--off-white) 0%, rgba(200,168,64,0.05) 100%);
    border-radius: var(--radius-lg);
    border: 3px solid rgba(200,168,64,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.about-logo-img { width: 120px; height: auto; }
.about-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    animation: float-card 5s ease-in-out infinite;
}
.about-float-badge i { font-size: 1.4rem; color: var(--gold); }
.about-float-badge strong { display: block; font-size: 0.85rem; color: var(--navy); font-weight: 700; }
.about-float-badge span { font-size: 0.75rem; color: var(--text-muted); }
.badge-left  { bottom: 60px; left: -20px; animation-delay: 0s; }
.badge-right { top: 60px; right: -20px; animation-delay: 2.5s; }
.about-content .section-label { margin-bottom: 12px; }
.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 24px;
}
.about-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}
.about-list-item i { color: var(--green); font-size: 1.1rem; flex-shrink: 0; }
/* ====================================================
   VISION / MISSION
==================================================== */
.vision-mission {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.vm-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(200,168,64,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(92,184,92,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vm-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition);
}
.vm-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(200,168,64,0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.vm-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.vm-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--navy-dark);
    flex-shrink: 0;
}
.vm-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}
.vm-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 24px; }
.vm-list { display: flex; flex-direction: column; gap: 10px; }
.vm-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.vm-list i { color: var(--gold); font-size: 0.75rem; }
/* ====================================================
   CONTACT
==================================================== */
.contact { background: var(--off-white); padding: 90px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: stretch;
    min-height: 420px;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    flex: 1;
}
.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
    transform: translateX(4px);
}
.contact-card-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--navy-dark);
    flex-shrink: 0;
}
.contact-card-icon.green-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
}
.contact-card-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.contact-card-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(200,168,64,0.2);
    min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; }
/* ====================================================
   FOOTER
==================================================== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 18px; filter: brightness(1.1); }
.brand-col p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul a::before { content: '→'; opacity: 0; transition: var(--transition); font-size: 0.75rem; color: var(--gold); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul a:hover::before { opacity: 1; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item address { line-height: 1.6; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.seo-text { font-size: 0.75rem !important; }
/* ====================================================
   BACK TO TOP
==================================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(200,168,64,0.5); }
/* ====================================================
   SCROLL REVEAL ANIMATION
==================================================== */
.will-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.will-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .vm-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .about-container { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .desktop-nav { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
}
@media (max-width: 600px) {
    section { padding: 64px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .hero { padding: 100px 0 60px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .back-to-top { bottom: 20px; right: 20px; }
}