/* =============================================
   RESET
   ============================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*, *:after, *:before {
    box-sizing: border-box;
}

/* =============================================
   VARIABLES
   ============================================= */
:root {
    --primary:       #0a0e1e;
    --primary-light: #131829;
    --accent:        #06b6d4;
    --accent-hover:  #0891b2;
    --accent-soft:   #22d3ee;
    --text:          #1e293b;
    --text-muted:    #64748b;
    --bg:            #ffffff;
    --bg-alt:        #f0fbff;
    --border:        #e0f2fe;
    --white:         #ffffff;
    --max-width:     1200px;
    --header-h:      68px;
    --radius:        10px;
}

/* =============================================
   BASE
   ============================================= */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
}

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

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

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 11px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    transition: background 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover {
    background: var(--accent-hover);
}
.btn-large {
    padding: 15px 36px;
    font-size: 17px;
}
.btn-white {
    background: var(--white);
    color: var(--accent);
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}
.btn-login {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.42);
    padding: 10px 22px;
}
.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}
.btn-signup {
    background: var(--accent);
    color: var(--white);
    padding: 10px 22px;
}
.btn-signup:hover {
    background: var(--accent-hover);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--primary);
    height: var(--header-h);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    position: relative;
}

.logo {
    font-size: 21px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
    flex-shrink: 0;
    text-decoration: none;
}
.logo sup {
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    vertical-align: super;
    letter-spacing: 0;
}

/* Desktop nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    list-style: none;
}
.nav-menu li a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    display: block;
}
.nav-menu li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta-item {
    display: none;
}

.desktop-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    background: url("../images/banner.jpg") no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 90px 0 100px;
    text-align: center;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6, 182, 212, 0.18) 0%, rgba(10, 14, 30, 0.72) 60%);
    z-index: 0;
}
.hero-content {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: clamp(26px, 4.2vw, 50px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--white);
}
.hero p {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
    margin-bottom: 36px;
}
.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    background: var(--primary);
    padding: 36px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
}

/* =============================================
   SECTION BASE
   ============================================= */
section {
    padding: 64px 0;
}

section h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 14px;
}

section h3 {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 10px;
}

section p {
    font-size: 15px;
    line-height: 1.78;
    color: var(--text);
    margin-bottom: 12px;
}
section p:last-child {
    margin-bottom: 0;
}

section ul {
    margin: 8px 0 14px;
}
section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    padding-left: 22px;
    position: relative;
    margin-bottom: 5px;
}
section ul li::before {
    content: '›';
    position: absolute;
    left: 6px;
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
}

.section-intro {
    font-size: 17px !important;
    color: var(--text-muted) !important;
    margin-bottom: 36px !important;
}

/* =============================================
   INTRO
   ============================================= */
.intro {
    background: var(--bg);
}
.intro .container {
    max-width: 840px;
}
.intro p {
    font-size: 16px;
    line-height: 1.82;
    margin-bottom: 18px;
}

/* =============================================
   DROPS EXPLAINER  (2-col)
   ============================================= */
.drops-explainer {
    background: var(--bg-alt);
}
.drops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 8px;
}
.drop-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px 28px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
}
.drop-card h3 {
    margin-bottom: 12px;
}

/* =============================================
   DIGITAL COMMUNITY — DARK
   ============================================= */
.digital-community {
    background: var(--primary);
}
.digital-community h2 {
    color: var(--white);
}
.digital-community h3 {
    color: var(--white);
}
.digital-community p {
    color: rgba(255, 255, 255, 0.82);
}
.digital-community .section-intro {
    color: rgba(255, 255, 255, 0.6) !important;
}
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.community-card {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius);
    padding: 26px 22px;
}

/* =============================================
   HOW DROPS WORK — PROCESS
   ============================================= */
.how-it-works {
    background: var(--bg-alt);
}
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}
.step {
    display: flex;
    gap: 28px;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px 30px;
    border: 1px solid var(--border);
    align-items: flex-start;
}
.step-number {
    font-size: 44px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.22;
    flex-shrink: 0;
    line-height: 1;
    width: 56px;
    text-align: center;
}
.step-content {
    flex: 1;
}

/* =============================================
   EU MARKET
   ============================================= */
.eu-market {
    background: var(--bg);
}

/* =============================================
   SEASONAL DROPS — 3-col
   ============================================= */
.seasonal {
    background: var(--primary-light, #131829);
}
.seasonal h2 {
    color: var(--white);
}
.seasonal h3 {
    color: var(--white);
}
.seasonal p {
    color: rgba(255, 255, 255, 0.8);
}
.seasonal .section-intro {
    color: rgba(255, 255, 255, 0.58) !important;
}
.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.seasonal-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 26px 22px;
}

/* =============================================
   COLLABORATIONS
   ============================================= */
.collaborations {
    background: var(--bg-alt);
}
.collab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}
.collab-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 26px 22px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
}

/* =============================================
   DROP CALENDAR
   ============================================= */
.drop-calendar {
    background: var(--bg);
}
.calendar-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
}
.cal-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px 18px;
    text-align: center;
    border-top: 3px solid var(--accent);
}
.cal-item strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}
.cal-item span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* =============================================
   COMMUNITY INNOVATION
   ============================================= */
.community-innovation {
    background: var(--bg-alt);
}
.innovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}
.innovation-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 26px 22px;
    border-top: 3px solid var(--accent);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
}

/* =============================================
   TECH / SECURE ORDERING GRID
   ============================================= */
.secure-ordering {
    background: var(--bg);
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 24px 0;
}
.tech-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 14px;
    font-weight: 600;
    font-size: 13px;
    color: var(--primary);
    text-align: center;
    line-height: 1.45;
}

/* =============================================
   WHY CHOOSE — DARK
   ============================================= */
.why-choose {
    background: var(--primary);
}
.why-choose h2 {
    color: var(--white);
}
.why-choose h3 {
    color: var(--white);
}
.why-choose p {
    color: rgba(255, 255, 255, 0.8);
}
.why-choose .section-intro {
    color: rgba(255, 255, 255, 0.58) !important;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius);
    padding: 26px 22px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #0369a1 100%);
    text-align: center;
}
.cta-section h2 {
    color: var(--white);
    font-size: clamp(24px, 3.5vw, 42px);
}
.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn-white {
    margin-top: 8px;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    background: var(--bg-alt);
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}
.faq-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px 28px;
    border: 1px solid var(--border);
}
.faq-item h3 {
    margin-bottom: 10px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--primary);
    padding: 52px 0 28px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.footer-brand .logo {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}
.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.6;
    margin: 0;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
}
.footer-nav a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-nav a:hover {
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

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

    .hamburger {
        display: flex;
    }
    .desktop-cta {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: -24px;
        right: -24px;
        background: var(--primary);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 16px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
        z-index: 100;
        margin-left: 0;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
    .nav-menu li:last-child {
        border-bottom: none;
    }
    .nav-menu li a {
        padding: 14px 24px;
        font-size: 15px;
        border-radius: 0;
    }
    .nav-menu li a:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    .nav-cta-item {
        display: block;
        padding: 10px 24px;
        border-bottom: none !important;
    }
    .nav-cta-item .btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Layout */
    .drops-grid {
        grid-template-columns: 1fr;
    }
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .seasonal-grid {
        grid-template-columns: 1fr;
    }
    .collab-grid {
        grid-template-columns: 1fr;
    }
    .calendar-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 48px 0;
    }
    .hero {
        padding: 68px 0 76px;
    }
    .community-grid {
        grid-template-columns: 1fr;
    }
    .calendar-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .step {
        flex-direction: column;
        gap: 12px;
    }
    .step-number {
        width: auto;
        font-size: 34px;
    }
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    .hero h1 {
        font-size: 24px;
    }
}
