@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
    --bg: #0f172a;
    --surface: rgba(15, 23, 42, 0.75);
    --surface-solid: #15213b;
    --card: rgba(30, 41, 68, 0.85);
    --accent: #f97316;
    --accent-soft: rgba(249, 115, 22, 0.2);
    --text: #f8fafc;
    --text-muted: #cbd5f5;
    --border: rgba(148, 163, 200, 0.2);
    --radius: 1rem;
    --shadow: 0 30px 60px rgba(8, 15, 33, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 45%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.14), transparent 45%),
        var(--bg);
    background-repeat: no-repeat;
    color: var(--text);
    font-family: "Inter", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.brand {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav a {
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease;
}

.site-nav a:focus-visible,
.site-nav a:hover {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.75rem;
    cursor: pointer;
}

main {
    display: block;
}

.section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero {
    padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 6rem);
}

.hero .container {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 32rem;
}

.hero-visual {
    min-height: 300px;
    border-radius: calc(var(--radius) + 0.5rem);
    background:
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.35), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(99, 102, 241, 0.25), transparent 55%),
        url('assets/imgs/Card1/bag1.png') center/cover;
    box-shadow: var(--shadow);
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-header {
    max-width: 46rem;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why .split {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 1.5rem;
}

.feature-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.feature-list h3 {
    margin-bottom: 0.35rem;
}

.feature-list .icon {
    font-size: 1.75rem;
    color: var(--accent);
    margin-top: 0.15rem;
}

.metric-panel {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.metric-title {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.metric-panel dl {
    display: grid;
    gap: 1.5rem;
}

.metric-panel dt {
    font-size: 2.1rem;
    font-weight: 700;
}

.metric-panel dd {
    color: var(--text-muted);
}

.products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--surface);
    border-radius: calc(var(--radius) - 0.25rem);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

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

.product-content {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-weight: 600;
}

.link {
    color: var(--accent);
    font-weight: 600;
}

.cta .split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(99, 102, 241, 0.25));
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: var(--shadow);
}

.contact .contact-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    background: var(--surface);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 0.5rem;
    color: var(--text-muted);
}

.contact-form label span {
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text);
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-form .full {
    grid-column: 1 / -1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent), #6366f1);
    color: var(--text);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.45);
}

.btn.ghost {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
}

.btn.ghost:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    background: rgba(10, 15, 30, 0.85);
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.25rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
}

.cta .btn {
    flex-shrink: 0;
}

.cta .split > div {
    max-width: 32rem;
}

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        inset: 4.25rem 1rem auto;
        background: rgba(15, 23, 42, 0.95);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: var(--shadow);
        transform: scale(0.95);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-nav[data-open="true"] {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-header .container {
        padding: 0.85rem 0;
    }

    .hero {
        padding-top: 6rem;
    }

    .cta .split {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
