/* assets/css/marketing.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Brand Colors */
    --brand-primary: #0071e3;
    --brand-secondary: #00f2ff;
    --brand-glow: rgba(0, 113, 227, 0.15);

    /* Neutral Palette */
    --bg-main: #fbfbfd;
    --bg-surface: rgba(251, 251, 253, 0.8);
    --bg-card: #ffffff;

    /* Text Colors */
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #86868b;

    /* Borders & Dividers */
    --border-light: rgba(0, 0, 0, 0.08);
    --border-glass: rgba(255, 255, 255, 0.3);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    height: 72px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--brand-primary);
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    position: relative;
    border-radius: 12px;
    transition: background-color 0.3s;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before, 
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before { top: -8px; }
.hamburger-inner::after { bottom: -8px; }

/* Hamburger Open State */
.nav-open .hamburger-inner {
    background-color: transparent;
}

.nav-open .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
}

.nav-open .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Background Effects --- */
.bg-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
    animation: float 25s infinite ease-in-out alternate;
}

.orb-1 {
    width: 40vw;
    height: 40vw;
    top: -10%;
    right: -5%;
    background: radial-gradient(circle, #e0f2fe, transparent);
}

.orb-2 {
    width: 35vw;
    height: 35vw;
    bottom: 5%;
    left: -5%;
    background: radial-gradient(circle, #f0f9ff, transparent);
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 10%) scale(1.1);
    }
}



/* --- Hero Section --- */
.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.compliance-badge-hero {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.08);
    animation: pulse-soft 3s infinite ease-in-out 1.2s;
}

@keyframes pulse-soft {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}


.live-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
}

.live-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    background-color: #22c55e;
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: var(--text-primary);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.2s;
    position: relative;
    z-index: 2;
}

.highlight-underline {
    position: relative;
    display: inline-block;
    color: var(--brand-primary);
    white-space: nowrap;
}

.underline-svg {
    position: absolute;
    bottom: -10px;
    left: -5%;
    width: 110%;
    height: 15px;
    z-index: -1;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw-line 1.5s ease-out forwards 1s;
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 3rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.4s;
    position: relative;
    z-index: 2;
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.6s;
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-primary);
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
    border-radius: inherit;
    transition: opacity 0.3s;
}

.btn-glow:hover::after {
    opacity: 0.8;
}

.hero-micro-features {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.8s;
    position: relative;
    z-index: 2;
}

.micro-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.micro-feature:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}


.micro-feature svg {
    color: var(--brand-primary);
    stroke-width: 2.2;
}

.scroll-indicator {
    margin-top: 4rem;
    color: var(--text-tertiary);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 1.2s;
    display: flex;
    justify-content: center;
    transition: color 0.3s;
    position: relative;
    z-index: 2;
}

.scroll-indicator:hover {
    color: var(--brand-primary);
}

.scroll-wheel {
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(4px);
        opacity: 0;
    }

    51% {
        transform: translateY(-4px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- Features (Bento Grid) --- */
.features {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(240px, auto));
    gap: 1.5rem;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.bento-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 113, 227, 0.2);
}

.bento-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.item-large {
    grid-column: span 2;
}

.item-tall {
    grid-row: span 2;
}

/* Anchor offset for fixed nav */
#ozellikler,
#uyumluluk,
#diller,
#kolay-kullanim,
#showroom,
#iletisim {
    scroll-margin-top: 96px;
}

/* --- Compliance --- */
.compliance-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 380px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.compliance-copy h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.compliance-lead {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.compliance-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compliance-points li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.compliance-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--brand-primary);
}

.compliance-card {
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.35), rgba(0, 242, 255, 0.25), rgba(0, 113, 227, 0.15));
    box-shadow: var(--shadow-md);
}

.compliance-card-inner {
    background: var(--bg-card);
    border-radius: 23px;
    padding: clamp(1.75rem, 4vw, 2.25rem);
    border: 1px solid var(--border-light);
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--brand-primary);
}

.compliance-badge-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.compliance-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.compliance-meter {
    padding-top: 0.25rem;
}

.compliance-meter-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

.compliance-meter-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(0, 113, 227, 0.12);
    overflow: hidden;
    margin-bottom: 0.35rem;
}

.compliance-meter-fill {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
}

.compliance-meter-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* --- Languages --- */
.lang-section {
    padding: 0 0 clamp(4rem, 8vw, 5.5rem);
}

.lang-panel {
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(145deg, #0c1929 0%, #0f172a 45%, #111c2e 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative;
}

.lang-panel::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(0, 113, 227, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.lang-panel-head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.section-eyebrow--on-dark {
    color: var(--brand-secondary);
}

.lang-panel h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4.5vw, 2.5rem);
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.lang-intro {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.5;
    margin-bottom: 0.65rem;
}

.lang-sub {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

.lang-chips {
    position: relative;
    z-index: 1;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.lang-chips li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.lang-chips li:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(0, 113, 227, 0.45);
    transform: translateY(-2px);
}

.lang-chip {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f1f5f9;
    text-align: center;
}

.lang-code {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brand-secondary);
    opacity: 0.9;
}

/* --- Ease of use --- */
.ease-section {
    padding: clamp(2rem, 5vw, 4rem) 0 100px;
}

.ease-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ease-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.ease-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 113, 227, 0.18);
}

.ease-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(0, 113, 227, 0.12), rgba(0, 242, 255, 0.08));
    color: var(--brand-primary);
    margin-bottom: 1.25rem;
}

.ease-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.ease-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Showroom --- */
.showroom {
    padding: 100px 0;
    background: rgba(242, 242, 247, 0.5);
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.template-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.template-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.template-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.card-preview {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.template-card:hover .card-preview {
    transform: scale(1.02);
}

.card-preview svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Showroom CTA --- */
.showroom-cta {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

.btn-custom-design {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 22px;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.btn-custom-design:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 113, 227, 0.12);
    color: var(--brand-primary);
}

.btn-custom-design svg {
    color: var(--brand-primary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-custom-design:hover svg {
    transform: translateX(8px);
}

@media (max-width: 640px) {
    .showroom-cta {
        margin-top: 3.5rem;
    }
    
    .btn-custom-design {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 1.1rem 1.5rem;
        gap: 0.75rem;
        border-radius: 18px;
    }
}


/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: var(--brand-primary);
    color: white;
}

.btn-primary:hover {
    background: #0077ed;
    box-shadow: 0 10px 25px rgba(0, 113, 227, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f2f2f7;
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: #e5e5ea;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.btn-ghost:hover {
    background: #f2f2f7;
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
    position: relative;
}

.contact .container {
    max-width: 900px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.contact-grid {
    display: flex;
    justify-content: center;
}



.contact-grid p {
    color: var(--bg-main);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.info-item--primary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
}

.info-item--primary .info-icon {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}


.info-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

.info-item--primary:hover .info-icon {
    background: white;
    color: #128c7e;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.info-item--primary h4,
.info-item--primary p {
    color: white;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .info-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .contact .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* --- Footer --- */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-light);
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo p {
    margin-top: 1rem;
    color: var(--text-tertiary);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--brand-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .item-large {
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .compliance-card {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .ease-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .lang-chips {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 0.65rem 0.9rem;
        flex-wrap: wrap;
        justify-content: flex-end;
        row-gap: 0.35rem;
    }
}

@media (max-width: 900px) {
    .nav-links a {
        font-size: 0.88rem;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-surface);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 2rem;
    }

    .nav-open .nav-links {
        transform: translateX(0);
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-open .nav-links li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered entry */
    .nav-open .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-open .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-open .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-open .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-open .nav-links li:nth-child(5) { transition-delay: 0.5s; }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
    }

    .menu-toggle {
        display: block;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 2.5rem;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* --- WhatsApp Floating Icon --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-heading);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
    background: #20bd5a;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .whatsapp-float svg {
        width: 20px;
        height: 20px;
    }
}

/* --- Buy Now Section --- */
.buy-now-section {
    padding: 100px 0;
    position: relative;
}

.buy-now-card {
    background: linear-gradient(145deg, #0c1929 0%, #0f172a 45%, #111c2e 100%);
    border-radius: 40px;
    padding: clamp(3rem, 10vw, 6rem) 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.buy-now-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.buy-now-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.buy-now-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.buy-now-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.buy-now-content .highlight-underline {
    color: var(--brand-secondary);
}

.buy-now-content p {
    color: #94a3b8;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    margin-bottom: 3.5rem;
}

.buy-now-features {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.buy-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.buy-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(0, 242, 255, 0.2);
}

.buy-feature svg {
    color: var(--brand-secondary);
}

.buy-now-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-xl {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 20px;
}

.trust-note {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Nav CTA */
.nav-cta {
    background: var(--brand-primary);
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 999px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.2);
}

.nav-cta:hover {
    background: #005bb5 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.3);
}