/* ============== RESET & TOKENS ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Professional ocean palette */
    --white:       #ffffff;
    --off-white:   #fafbfc;
    --bg-soft:     #f3f6f8;
    --border:      #e3e9ee;
    --border-mid:  #cdd7df;

    --text:        #0a1929;   /* almost black with blue undertone */
    --text-mid:    #2a4257;
    --text-soft:   #5d7384;
    --text-light:  #8a9aa8;

    --deep:        #003049;   /* deep ocean — primary brand */
    --deep-2:      #0a4d6e;   /* mid blue */
    --ocean:       #1e6091;   /* clear ocean */
    --sky:         #7fb3c9;   /* lighter blue accent */
    --foam:        #cfe3ed;   /* very light foam */

    --accent:      #d4a574;   /* warm muted gold */
    --accent-soft: #f5e6d0;

    --green:       #25D366;
    --green-2:     #128C7E;

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius:      18px;
    --radius-sm:   12px;
    --radius-xs:   8px;

    --shadow-sm:   0 1px 3px rgba(10, 25, 41, 0.05), 0 1px 2px rgba(10, 25, 41, 0.03);
    --shadow:      0 4px 16px rgba(10, 25, 41, 0.06), 0 2px 4px rgba(10, 25, 41, 0.03);
    --shadow-lg:   0 20px 50px rgba(10, 25, 41, 0.1), 0 8px 16px rgba(10, 25, 41, 0.05);
    --shadow-xl:   0 30px 80px rgba(10, 25, 41, 0.15);

    --container: 1280px;
    --header-h: 96px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============== TOPBAR ============== */
.topbar {
    background: var(--deep);
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.topbar-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-left span, .topbar-right span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar i { color: var(--sky); font-size: 12px; }

/* ============== HEADER ============== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 28px;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s;
}

.logo:hover img { transform: scale(1.05); }

.nav { display: flex; gap: 32px; }

.nav a {
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    color: var(--text);
    transition: color 0.2s;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--deep);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav a:hover, .nav a.active { color: var(--deep); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-cta-header {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 22px;
    background: var(--deep);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px -4px rgba(0, 48, 73, 0.3);
}

.btn-cta-header:hover {
    transform: translateY(-2px);
    background: var(--deep-2);
    box-shadow: 0 8px 18px -4px rgba(0, 48, 73, 0.4);
}

.btn-cta-header i { font-size: 16px; color: #25D366; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

/* ============== HERO ============== */
.hero {
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, #f3f8fa 100%);
    padding: 90px 0 220px;
    overflow: hidden;
}

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

.hero-content {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.hero-tag .dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(212, 165, 116, 0.1); }
}

.hero-title {
    font-size: clamp(48px, 7vw, 88px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 28px;
}

.hero-title-accent {
    color: var(--deep);
    position: relative;
    display: inline-block;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 100%; height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q 25 0 50 6 T 100 6 T 150 6 T 200 6' fill='none' stroke='%23d4a574' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100px 12px;
    background-repeat: repeat-x;
    animation: waveSlide 3s linear infinite;
}

@keyframes waveSlide {
    from { background-position-x: 0; }
    to { background-position-x: 100px; }
}

.hero-sub {
    font-size: 18px;
    color: var(--text-soft);
    max-width: 530px;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--deep);
    color: white;
    box-shadow: 0 8px 20px -6px rgba(0, 48, 73, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 100%; left: -10%;
    width: 120%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q 25 0 50 10 T 100 10 V 20 H 0 Z' fill='%230a4d6e'/%3E%3C/svg%3E");
    background-size: 60px 100%;
    background-repeat: repeat-x;
    transition: top 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
}

.btn-primary:hover::before { top: -50%; animation: waveBtn 1.5s linear infinite; }

@keyframes waveBtn {
    from { background-position-x: 0; }
    to { background-position-x: 60px; }
}

.btn-primary > * { position: relative; z-index: 1; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -6px rgba(0, 48, 73, 0.5);
}

.btn-outline {
    background: white;
    color: var(--deep);
    border: 1.5px solid var(--border);
}

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

.btn-outline .fa-whatsapp { color: var(--green); font-size: 18px; }

.hero-meta {
    display: flex;
    gap: 50px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-item strong {
    font-size: 36px;
    font-weight: 800;
    color: var(--deep);
    line-height: 1;
    letter-spacing: -0.02em;
}

.meta-item span {
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;
    line-height: 1.4;
}

.meta-item .fa-star { color: var(--accent); font-size: 11px; margin-left: 2px; }

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeIn 1.4s 0.3s ease-out both;
}

/* ===== HERO IMAGE — Pêcheur flottant, sans fond ni cadre ===== */
.hero-fish-img {
    width: 100%;
    height: auto;
    max-height: 640px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 30px 50px rgba(0, 48, 73, 0.25));
    animation: heroFloat 5s ease-in-out infinite;
    transition: filter 0.4s, transform 0.4s;
}

/* Gentle floating animation — like the fisherman is gently rocking on a boat */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-14px) rotate(0.6deg); }
}

.hero-fish-img:hover {
    filter: drop-shadow(0 36px 60px rgba(0, 48, 73, 0.35)) brightness(1.03);
}


/* ====== HERO ANIMATED WAVES ====== */
.wave-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-wave { height: 180px; }
.hero-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
}

.wave-back  { animation: waveMove 14s linear infinite; opacity: 0.85; }
.wave-mid   { animation: waveMove 9s linear infinite reverse; opacity: 0.85; }
.wave-front { animation: waveMove 6s linear infinite; }

@keyframes waveMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============== MARQUEE STRIP ============== */
.marquee {
    background: var(--deep);
    color: white;
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.marquee-track i { color: var(--sky); font-size: 14px; }
.marquee-track .dot-sep { color: var(--accent); font-size: 6px; }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============== SECTION HEAD ============== */
.section-head {
    text-align: center;
    margin-bottom: 70px;
    max-width: 740px;
    margin-inline: auto;
}

.kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.kicker.light { color: var(--accent); }

.section-title {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.section-title.light { color: white; }

.title-line {
    display: inline-block;
    color: var(--deep);
    position: relative;
}

.section-title.light .title-line { color: var(--sky); }

.title-line::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 100%; height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 25 0 50 5 T 100 5 T 150 5 T 200 5' fill='none' stroke='%23d4a574' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100px 10px;
    background-repeat: repeat-x;
    animation: waveSlide 3s linear infinite;
}

.section-desc {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
    margin-inline: auto;
}

/* ============== CATEGORIES ============== */
.categories {
    background: var(--white);
    padding: 120px 0;
}

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

.cat-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-xl);
}

.cat-num {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 50px;
}

.cat-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.cat-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 48, 73, 0.3));
}

.cat-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cat-card:hover .cat-img img { transform: scale(1.1); }

.cat-body {
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cat-body > div { flex: 1; }

.cat-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.cat-body p {
    color: var(--text-soft);
    font-size: 14px;
    margin: 0;
}

.cat-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--deep);
    transition: all 0.4s;
    flex-shrink: 0;
}

.cat-card:hover .cat-arrow {
    background: var(--deep);
    color: white;
    border-color: var(--deep);
    transform: rotate(-45deg);
}

/* ============== PRODUCTS ============== */
.products {
    padding: 120px 0;
    background: var(--off-white);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    padding: 8px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    width: fit-content;
    margin-inline: auto;
    box-shadow: var(--shadow-sm);
}

.filter {
    padding: 10px 22px;
    border-radius: 50px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-soft);
    transition: all 0.3s;
    white-space: nowrap;
}

.filter:hover { color: var(--deep); }

.filter.active {
    background: var(--deep);
    color: white;
    box-shadow: 0 4px 12px -4px rgba(0, 48, 73, 0.4);
}

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

.prod-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.prod-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.prod-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: var(--bg-soft);
}

.prod-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.prod-card:hover .prod-img img { transform: scale(1.08); }

.prod-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: white;
    color: var(--text);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.prod-tag.fresh  { background: var(--deep); color: white; }
.prod-tag.frozen { background: var(--ocean); color: white; }
.prod-tag.hot    { background: var(--accent); color: var(--text); }

.prod-rating-corner {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.prod-rating-corner i { color: var(--accent); font-size: 11px; }

.prod-body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-cat-tag {
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.prod-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.prod-desc {
    font-size: 13.5px;
    color: var(--text-soft);
    margin-bottom: 18px;
    flex: 1;
    line-height: 1.6;
}

.prod-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed var(--border);
}

.prod-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--deep);
    letter-spacing: -0.02em;
}

.prod-price small {
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;
    margin-left: 4px;
}

.prod-order {
    width: 100%;
    padding: 13px;
    background: var(--deep);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.prod-order::before {
    content: '';
    position: absolute;
    top: 100%; left: -10%;
    width: 120%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q 25 0 50 10 T 100 10 V 20 H 0 Z' fill='%2325D366'/%3E%3C/svg%3E");
    background-size: 60px 100%;
    background-repeat: repeat-x;
    transition: top 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.prod-order:hover::before { top: -50%; animation: waveBtn 1.5s linear infinite; }

.prod-order > * { position: relative; z-index: 1; }

.prod-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.4);
}

.prod-order i { font-size: 16px; }

/* ============== STATS (DARK) ============== */
.stats {
    position: relative;
    background: var(--deep);
    color: white;
    padding: 180px 0 220px;
    overflow: hidden;
    margin: -1px 0;
}

.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 2;
}

.divider-top { top: -1px; }
.divider-bottom { bottom: -1px; }

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

.stats-waves {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.bg-wave-1, .bg-wave-2 {
    position: absolute;
    width: 200%;
    height: 200px;
}

.bg-wave-1 {
    top: 30%;
    animation: waveMove 18s linear infinite;
}

.bg-wave-2 {
    bottom: 25%;
    animation: waveMove 22s linear infinite reverse;
}

.stats-inner {
    position: relative;
    z-index: 2;
}

.stats-head {
    text-align: center;
    margin-bottom: 70px;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 165, 116, 0.3);
}

.stat-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--accent), #c4954c);
    color: var(--deep);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin: 0 auto 22px;
}

.stat-num {
    font-size: 56px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    line-height: 1.5;
    margin-top: 12px;
}

/* ============== ABOUT ============== */
.about {
    padding: 120px 0;
    background: white;
}

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

.about-visual {
    position: relative;
    aspect-ratio: 1/1.05;
}

.about-img-main, .about-img-secondary {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-soft);
}

.about-img-main {
    width: 80%;
    height: 80%;
    top: 0; left: 0;
    box-shadow: var(--shadow-xl);
}

.about-img-secondary {
    width: 55%;
    height: 50%;
    bottom: 0; right: 0;
    box-shadow: var(--shadow-lg);
    border: 6px solid white;
}

.about-img-main img, .about-img-secondary img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.about-quote {
    position: absolute;
    top: 50%; left: 65%;
    transform: translate(-50%, -50%);
    background: var(--deep);
    color: white;
    padding: 26px 24px;
    border-radius: var(--radius-sm);
    width: 240px;
    box-shadow: var(--shadow-xl);
    z-index: 3;
}

.about-quote i {
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
}

.about-quote p {
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-quote span {
    font-size: 12px;
    color: var(--sky);
    font-weight: 600;
}

.about-content h2 { margin-bottom: 24px; }

.about-lede {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 36px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
}

.af-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.af-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.af-icon {
    width: 48px; height: 48px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--deep);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.af-item:hover .af-icon {
    background: var(--deep);
    color: white;
    transform: rotate(-5deg);
}

.af-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.af-text p {
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ============== CTA BANNER ============== */
.cta-banner {
    padding: 80px 0 110px;
    background: white;
}

.cta-card {
    background: var(--deep);
    border-radius: 28px;
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-waves {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-wave-1, .cta-wave-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
}

.cta-wave-1 { animation: waveMove 14s linear infinite; }
.cta-wave-2 { animation: waveMove 10s linear infinite reverse; }

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
    flex: 1;
    min-width: 280px;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 8px 0 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    font-weight: 500;
}

.btn-cta-big {
    position: relative;
    z-index: 2;
    background: var(--green);
    color: white;
    padding: 20px 30px;
    border-radius: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    overflow: hidden;
}

.btn-cta-big::before {
    content: '';
    position: absolute;
    top: 100%; left: -10%;
    width: 120%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q 25 0 50 10 T 100 10 V 20 H 0 Z' fill='%23128C7E'/%3E%3C/svg%3E");
    background-size: 60px 100%;
    background-repeat: repeat-x;
    transition: top 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-cta-big:hover::before { top: -50%; animation: waveBtn 1.5s linear infinite; }

.btn-cta-big > * { position: relative; z-index: 1; }

.btn-cta-big i { font-size: 32px; }

.btn-cta-big span {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.btn-cta-big small {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.btn-cta-big strong {
    font-size: 18px;
    font-weight: 700;
}

.btn-cta-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -8px rgba(37, 211, 102, 0.7);
}

/* ============== FOOTER ============== */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.75);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

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

.footer-bg-wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 200px;
    animation: waveMove 30s linear infinite;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.foot-logo {
    height: 88px;
    width: auto;
    margin-bottom: 22px;
}

.foot-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 320px;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: white;
    transition: all 0.3s;
    font-size: 14px;
}

.socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text);
    transform: translateY(-3px);
}

.foot-col h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    color: white;
    letter-spacing: -0.01em;
}

.foot-col a, .foot-contact p {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    margin-bottom: 12px;
    transition: color 0.2s;
    font-weight: 500;
}

.foot-col a:hover { color: var(--accent); }

.foot-contact p i {
    color: var(--accent);
    margin-right: 10px;
    width: 16px;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    position: relative;
    z-index: 2;
}

.foot-legal {
    display: flex;
    gap: 24px;
}

.foot-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.foot-legal a:hover { color: var(--accent); }

/* ============== FLOATING WHATSAPP ============== */
.float-wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 62px; height: 62px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
    z-index: 99;
    transition: all 0.3s;
}

.float-wa:hover { transform: scale(1.1); background: var(--green-2); }

.float-wa .ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.4;
    animation: pingAnim 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
}

@keyframes pingAnim {
    75%, 100% { transform: scale(1.7); opacity: 0; }
}

/* ============== ANIMATIONS ============== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .topbar-left span:last-child { display: none; }

    .hero { padding: 70px 0 200px; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }

    .stats { padding: 140px 0 180px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { max-width: 540px; margin: 0 auto; width: 100%; }

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

    .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .cta-card { padding: 50px 40px; flex-direction: column; text-align: center; gap: 32px; }
}

@media (max-width: 768px) {
    .topbar { display: none; }

    .nav {
        position: fixed;
        top: var(--header-h);
        right: 0;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - var(--header-h));
        background: white;
        flex-direction: column;
        padding: 40px 30px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        border-left: 1px solid var(--border);
        z-index: 99;
        box-shadow: -10px 0 40px rgba(10, 25, 41, 0.08);
    }

    .nav.open { transform: translateX(0); }

    .nav a { font-size: 18px; }

    .hamburger { display: flex; }

    .btn-cta-header span { display: none; }
    .btn-cta-header { padding: 11px; width: 44px; height: 44px; justify-content: center; }
    .btn-cta-header i { font-size: 18px; }

    .header-inner { padding: 0 22px; }
    .logo img { height: 64px; }

    .hero { padding: 50px 0 160px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; width: 100%; }
    .hero-meta { flex-wrap: wrap; gap: 28px; padding-top: 28px; }
    .meta-item strong { font-size: 30px; }

    .hero-wave { height: 130px; }

    .marquee { padding: 14px 0; }
    .marquee-track { font-size: 13px; gap: 32px; }

    .categories, .products, .about { padding: 80px 0; }
    .stats { padding: 130px 0 150px; }
    .section-head { margin-bottom: 50px; }

    .cat-grid, .prod-grid, .stats-grid { grid-template-columns: 1fr; }

    .filter-bar {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        border-radius: 50px;
        padding: 6px;
    }

    .filter { flex-shrink: 0; padding: 9px 18px; font-size: 13px; }

    .about-visual { aspect-ratio: 1/1.1; }
    .about-quote { width: 200px; padding: 20px; }
    .about-quote p { font-size: 13px; }

    .cta-card { padding: 40px 28px; border-radius: 22px; }
    .btn-cta-big { padding: 16px 22px; }

    .foot-grid { grid-template-columns: 1fr; gap: 36px; }
    .foot-bottom { justify-content: center; text-align: center; flex-direction: column; }

    .float-wa { width: 56px; height: 56px; font-size: 26px; bottom: 22px; right: 22px; }

    .stat-num { font-size: 44px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 44px; }
    .section-title { font-size: 32px; }
    .cta-content h2 { font-size: 24px; }
    .hero-meta { gap: 20px; }
    .meta-item strong { font-size: 26px; }
    .meta-item span { font-size: 12px; }
}
