/* ============================================================
   Privacy Policy Generator — Main Stylesheet
   Modern Legal-Tech UI | Responsive | Production Ready
   ============================================================ */

/* Google Fonts are now loaded via HTML link for better performance */

/* ── CSS Custom Properties ── */
:root {
    --primary: #4f6ef7;
    --primary-dark: #3a56d4;
    --primary-light: #7b93ff;
    --accent: #00d4a1;
    --accent-dark: #00a87f;
    --bg: #ffffff;
    --bg-2: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --border: rgba(79, 110, 247, 0.12);
    --border-soft: rgba(0, 0, 0, 0.05);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 40px rgba(79, 110, 247, 0.12);
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
    --max-w: 1160px;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 90px 0;
}

/* ============================================================
   NAVIGATION / HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
    transition: padding var(--transition), background var(--transition);
    /* Prevent performance stuttering */
    will-change: backdrop-filter;
    transform: translateZ(0);
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.nav-logo .logo-icon {
    display: none;
    /* Icon removed as requested earlier */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        padding: 120px 24px;
        z-index: 999;
        gap: 40px;
        text-align: center;
        animation: fadeIn 0.4s ease both;
    }

    .nav-links.active a {
        font-size: 1.5rem;
        font-weight: 700;
    }
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff !important;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(79, 110, 247, 0.35);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(79, 110, 247, 0.5);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    /* Hidden on desktop */
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #6a3de8 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(79, 110, 247, 0.45);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(79, 110, 247, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(79, 110, 247, 0.3);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(79, 110, 247, 0.05);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #021a13;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 212, 161, 0.35);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 212, 161, 0.55);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Animated background orbs */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: floatOrb 10s ease-in-out infinite alternate;
}

.hero::before {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -200px;
    background: radial-gradient(circle, rgba(79, 110, 247, 0.08) 0%, transparent 70%);
}

.hero::after {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -150px;
    background: radial-gradient(circle, rgba(0, 212, 161, 0.06) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 20px) scale(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(79, 110, 247, 0.08);
    border: 1px solid rgba(79, 110, 247, 0.2);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeSlideDown 0.6s ease both;
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    animation: fadeSlideDown 0.7s ease 0.1s both;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 70%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 38px;
    line-height: 1.8;
    animation: fadeSlideDown 0.8s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideDown 0.9s ease 0.3s both;
}

.hero-scroll-hint {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    animation: fadeIn 1.4s ease 0.8s both;
    letter-spacing: 0.5px;
}

.hero-scroll-hint span {
    animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    animation: scrollBounce 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    opacity: 0.7;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: rotate(45deg) translateY(10px);
        opacity: 1;
    }
}

/* ── Keyframes ── */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
    padding: 0;
    margin: 0;
}

.trust-bar-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 20px 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 0 20px;
}

.trust-check {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: var(--border-soft);
    flex-shrink: 0;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(79, 110, 247, 0.1);
    border: 1px solid rgba(79, 110, 247, 0.25);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================
   WHY YOU NEED A PRIVACY POLICY
   ============================================================ */

.why-section {
    background: linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-text-block {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.why-text-block .lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 18px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.why-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-visual::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(79, 110, 247, 0.2), transparent 70%);
    border-radius: 50%;
}

.why-visual-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.law-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.law-chip {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid;
}

.law-chip.gdpr {
    background: rgba(79, 110, 247, 0.08);
    border-color: rgba(79, 110, 247, 0.2);
    color: #3b5998;
}

.law-chip.ccpa {
    background: rgba(0, 212, 161, 0.08);
    border-color: rgba(0, 212, 161, 0.2);
    color: #059669;
}

.law-chip.caloppa {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.law-chip.lgpd {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.law-chip.pipeda {
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
    color: #7c3aed;
}

.law-chip.pdpa {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.2);
    color: #b45309;
}

.why-divider {
    margin: 24px 0;
    border: none;
    border-top: 1px solid var(--border-soft);
}

.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.compliance-item .check {
    width: 20px;
    height: 20px;
    background: rgba(0, 212, 161, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--accent);
    flex-shrink: 0;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 110, 247, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(79, 110, 247, 0.03), rgba(0, 212, 161, 0.02));
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
    transform: translateY(-6px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.feature-icon [data-lucide] {
    width: 32px;
    height: 32px;
    stroke: #0f172a;
    stroke-width: 1.8px;
    transition: stroke var(--transition);
}

.feature-card:hover .feature-icon [data-lucide] {
    stroke: var(--primary);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-section {
    background: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    margin-bottom: 48px;
}

/* Arrow Connectors */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234f6ef7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14m-7-7 7 7-7 7'/%3E%3C/svg%3E") no-repeat center/contain;
    z-index: 0;
    opacity: 0.5;
    animation: arrowSidePulse 2s ease-in-out infinite;
}

@keyframes arrowSidePulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.4;
    }

    50% {
        transform: translateX(6px);
        opacity: 0.8;
    }
}

@media (max-width: 991px) {
    .step-card::after {
        display: none;
    }
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(79, 110, 247, 0.12);
}

.step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #6a3de8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 22px;
    box-shadow: 0 6px 24px rgba(79, 110, 247, 0.4);
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.how-tip {
    background: rgba(79, 110, 247, 0.05);
    border: 1px solid rgba(79, 110, 247, 0.15);
    border-radius: var(--radius);
    padding: 18px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 914px;
    margin: 0 auto;
}

.how-tip-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.how-tip strong {
    color: var(--primary);
}

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */

.included-section {
    background: var(--bg-2);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.included-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 18px 22px;
    transition: var(--transition);
    position: relative;
}

.included-item::before {
    display: none;
}

.included-item::after {
    display: none;
}

.included-item:hover {
    border-color: rgba(79, 110, 247, 0.2);
    box-shadow: 0 8px 28px rgba(79, 110, 247, 0.08);
    transform: translateY(-2px);
}

.included-item .item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(79, 110, 247, 0.1), rgba(79, 110, 247, 0.04));
    border: 1px solid rgba(79, 110, 247, 0.13);
    transition: var(--transition);
}

.included-item .item-icon [data-lucide] {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    stroke-width: 2px;
}

.included-item:hover .item-icon {
    background: linear-gradient(145deg, rgba(79, 110, 247, 0.16), rgba(79, 110, 247, 0.06));
    border-color: rgba(79, 110, 247, 0.25);
    transform: scale(1.06);
}

.included-item-text {
    flex: 1;
}

.included-item-text strong {
    display: block;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.45;
}

.included-item-text span {
    display: none;
}

@media (max-width: 640px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   WHO IS IT FOR
   ============================================================ */

.who-section {
    background: var(--bg);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.who-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 26px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
    cursor: default;
}

.who-card:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(79, 110, 247, 0.12);
}

.who-card .who-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.who-card .who-icon [data-lucide] {
    width: 28px;
    height: 28px;
    stroke: #0f172a;
    stroke-width: 1.8px;
}

.who-card span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    background: var(--bg-2);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 26px;
    text-align: left;
    font-family: var(--font-main);
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
}

.faq-chevron [data-lucide] {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-item.open .faq-question {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
    padding: 0 26px 22px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    border-top: 1px solid var(--border-soft);
    padding-top: 16px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */

.final-cta-section {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 500px;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(79, 110, 247, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-box {
    position: relative;
    background: linear-gradient(135deg, rgba(79, 110, 247, 0.12) 0%, rgba(0, 212, 161, 0.07) 100%);
    border: 1px solid rgba(79, 110, 247, 0.25);
    border-radius: var(--radius-lg);
    padding: 72px 48px;
    text-align: center;
    overflow: hidden;
}

.final-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.final-cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 900;
    letter-spacing: -0.8px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.final-cta-box p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border-soft);
    padding: 48px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.footer-taglines {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-taglines span {
    display: block;
}

.footer-right {
    text-align: right;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   NOTICE PAGE
   ============================================================ */

body.notice-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg);
}

.notice-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

.notice-main::before,
.notice-main::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.notice-main::before {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(79, 110, 247, 0.08), transparent 70%);
}

.notice-main::after {
    width: 450px;
    height: 450px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 212, 161, 0.05), transparent 70%);
}

.notice-card {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 30px;
    padding: 64px 60px;
    max-width: 600px;
    width: 100%;
    text-align: left;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.04);
    animation: fadeSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 30px 30px 0 0;
}

.notice-card h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.8px;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.2;
}

.notice-card .notice-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.notice-intro {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 4px;
}

.notice-footer-bar {
    background: var(--bg-2);
    border-top: 1px solid var(--border-soft);
    padding: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */

.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 110, 247, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 110, 247, 0.5);
}

.scroll-top-btn:active {
    transform: translateY(0) scale(0.95);
}

.scroll-top-btn [data-lucide] {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2.5px;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fix Glitch: Prevent content being invisible if JS fails/is slow */
body:not(.loaded) .reveal {
    opacity: 1;
    transform: none;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .why-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: 1px solid var(--border-soft);
        border-radius: 8px;
        cursor: pointer;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        background: var(--text-secondary);
        border-radius: 2px;
        transition: var(--transition);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid::before {
        display: none;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-right {
        text-align: left;
    }

    .final-cta-box {
        padding: 48px 28px;
    }

    .notice-card {
        padding: 44px 28px;
    }

    .trust-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 16px;
        gap: 8px 0;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}