/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #f8fafc;
    --color-white: #ffffff;
    --color-navy: #0f1e3d;
    --color-navy-soft: #1e3a5f;
    --color-text: #4a5568;
    --color-text-light: #718096;
    --color-accent: #4285f4;
    --color-accent-dark: #1a73e8;
    --color-blue: #3b82f6;
    --color-purple: #a855f7;
    --color-green: #4285f4;
    --color-yellow: #fbbf24;
    --color-orange: #fb923c;
    --color-border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px -3px rgba(15, 30, 61, 0.08), 0 4px 10px -2px rgba(15, 30, 61, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(15, 30, 61, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.support-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.support-link:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    padding: 72px 0 96px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.6px;
    margin-bottom: 22px;
}

.title-dark {
    display: block;
    color: var(--color-navy);
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-description {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.65;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

/* Waitlist */
.waitlist {
    animation: fadeInUp 0.6s ease-out 0.7s backwards;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 26px 28px;
    max-width: 460px;
    box-shadow:
        0 4px 14px rgba(15, 30, 61, 0.06),
        0 1px 3px rgba(15, 30, 61, 0.04);
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.waitlist:hover {
    border-color: #cbd5e0;
    box-shadow:
        0 14px 34px rgba(15, 30, 61, 0.1),
        0 4px 10px rgba(15, 30, 61, 0.06);
    transform: translateY(-2px);
}

.waitlist-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
    margin-bottom: 16px;
}

.email-input {
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: var(--color-white);
    transition: all 0.25s ease;
    color: var(--color-navy);
    box-shadow: 0 1px 2px rgba(15, 30, 61, 0.04);
}

.email-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}

.email-input::placeholder {
    color: var(--color-text-light);
}

.cta-button {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    letter-spacing: -0.1px;
    box-shadow:
        0 4px 12px rgba(20, 184, 166, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 24px rgba(20, 184, 166, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.success {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
}

.waitlist-bonus {
    font-size: 13px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.waitlist-message {
    font-size: 13px;
    margin: 8px 0 0 0;
    min-height: 18px;
}
.waitlist-message.is-success { color: #4285f4; }
.waitlist-message.is-error   { color: #dc2626; }
.waitlist-message.is-info    { color: var(--color-text-light); }

.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.bonus-emoji {
    font-size: 14px;
}

.bonus-detail {
    color: var(--color-text-light);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 460px;
    animation: slideInRight 0.8s ease-out;
    padding: 40px 30px 40px 50px;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: #3b82f6;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.dot-1  { width: 7px;  height: 7px;  top: 2%;    left: 8%;   animation-delay: 0s;   }
.dot-2  { width: 5px;  height: 5px;  top: 10%;   left: 22%;  animation-delay: 0.3s; }
.dot-3  { width: 6px;  height: 6px;  top: 24%;   left: 2%;   animation-delay: 0.6s; }
.dot-4  { width: 8px;  height: 8px;  bottom: 32%; left: 0%;  animation-delay: 0.9s; }
.dot-5  { width: 5px;  height: 5px;  bottom: 16%; left: 14%; animation-delay: 1.2s; }
.dot-6  { width: 7px;  height: 7px;  bottom: 4%;  left: 26%; animation-delay: 1.5s; }
.dot-7  { width: 6px;  height: 6px;  top: 6%;    right: 14%; animation-delay: 0.4s; }
.dot-8  { width: 5px;  height: 5px;  top: 38%;   right: 2%;  animation-delay: 0.8s; }
.dot-9  { width: 7px;  height: 7px;  bottom: 24%; right: 0%; animation-delay: 1.1s; }
.dot-10 { width: 6px;  height: 6px;  bottom: 2%;  right: 8%; animation-delay: 1.4s; }

.cross {
    position: absolute;
    z-index: 1;
}

.cross-line {
    position: absolute;
    border-radius: 2px;
    background: #3b82f6;
}

/* cross-top: blue + orange crossing lines, near top of mockup */
.cross-top {
    width: 22px;
    height: 22px;
    top: 1%;
    left: 38%;
    animation: spin 8s linear infinite;
}

.cross-top .cross-blue {
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    background: #3b82f6;
}

.cross-top .cross-orange {
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    background: #fb923c;
}

/* simple plus crosses (blue) */
.cross-side,
.cross-bottom {
    width: 14px;
    height: 14px;
    animation: spin 7s linear infinite;
}

.cross-side .cross-line:nth-child(1),
.cross-bottom .cross-line:nth-child(1) {
    width: 100%;
    height: 2.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.cross-side .cross-line:nth-child(2),
.cross-bottom .cross-line:nth-child(2) {
    width: 2.5px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.cross-side {
    top: 30%;
    left: 1%;
}

.cross-bottom {
    bottom: 10%;
    left: 4%;
    animation-direction: reverse;
}

/* Two orange/yellow circles */
.orange-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.orange-big {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.85) 0%, rgba(251, 146, 60, 0.55) 55%, rgba(251, 146, 60, 0) 100%);
    top: 0px;
    right: -40px;
    z-index: 0;
    pointer-events: none;
    animation: pulse 5s ease-in-out infinite;
    filter: blur(0.5px);
}

.orange-small {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.75) 0%, rgba(251, 146, 60, 0.35) 60%, rgba(251, 146, 60, 0) 100%);
    bottom: 10px;
    right: 6%;
    z-index: 0;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite 1s;
    filter: blur(0.5px);
}

.mockup {
    position: relative;
    z-index: 2;
    background: var(--color-white);
    border-radius: 18px;
    box-shadow:
        0 30px 60px -20px rgba(15, 30, 61, 0.18),
        0 12px 24px -8px rgba(15, 30, 61, 0.08),
        0 0 0 1px rgba(15, 30, 61, 0.04);
    overflow: hidden;
    display: grid;
    grid-template-columns: 56px 1fr;
    height: 380px;
    transform-origin: center center;
    /* transform: perspective(1800px) rotateY(-6deg) rotateX(2deg); */
    transform: rotate(16deg);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mockup:hover {
    transform: perspective(1800px) rotateY(-3deg) rotateX(1deg);
}

.mockup-sidebar {
    background: linear-gradient(180deg, #1e40af 0%, #2952c7 50%, #3b82f6 100%);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.mockup-sidebar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 30%);
    pointer-events: none;
}

.sidebar-logo {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.sidebar-logo svg {
    width: 18px;
    height: 18px;
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: all 0.2s ease;
    cursor: pointer;
}

.sidebar-icon svg {
    width: 16px;
    height: 16px;
}

.sidebar-icon:hover {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.95);
}

.sidebar-icon.active {
    background: rgba(255,255,255,0.22);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.mockup-content {
    display: flex;
    flex-direction: column;
    background: #fafbfc;
}

.mockup-header {
    padding: 14px 18px;
    background: white;
    border-bottom: 1px solid #eef2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.2px;
}

.mockup-controls {
    display: flex;
    gap: 5px;
}

.mockup-controls span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e0;
}

.mockup-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 14px;
    padding: 14px;
}

.folder-tree {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: white;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    padding: 8px 6px;
    overflow: hidden;
}

.folder-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--color-navy);
    transition: background 0.2s ease;
    cursor: pointer;
}

.folder-item:hover {
    background: #f1f5f9;
}

.folder-item.indent {
    padding-left: 22px;
    position: relative;
}

.folder-item.indent::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e2e8f0;
}

.caret {
    font-size: 8px;
    color: #94a3b8;
    width: 8px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    line-height: 1;
}

.caret-open {
    color: #475569;
}

.folder-svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 1px rgba(245, 158, 11, 0.2));
}

.folder-svg.sub {
    width: 11px;
    height: 11px;
    opacity: 0.95;
}

.folder-name {
    color: #334155;
    letter-spacing: -0.1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-zone {
    border: 1.5px dashed #cbd5e0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    background: white;
    transition: all 0.3s ease;
}

.upload-zone:hover {
    border-color: #3b82f6;
    background: #f0f7ff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.upload-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-icon svg {
    width: 100%;
    height: 100%;
}

.upload-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-navy);
    letter-spacing: -0.1px;
}

.upload-tag {
    background: #eff6ff;
    color: #3b82f6;
    border: 1px solid #dbeafe;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: 0.4px;
}

/* Features Section */
.features {
    padding: 80px 0 96px;
    background: var(--color-white);
}

.features-grid {
    max-width: 1080px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 48px;
    letter-spacing: -0.8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card {
    background: var(--color-white);
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 1px 2px rgba(15, 30, 61, 0.03);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(2).visible { transition-delay: 0.1s; }
.feature-card:nth-child(3).visible { transition-delay: 0.2s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px -10px rgba(15, 30, 61, 0.12),
        0 8px 16px -6px rgba(15, 30, 61, 0.06);
    border-color: transparent;
}

.feature-illustration {
    width: 110px;
    height: 88px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.feature-illustration svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.feature-card:hover .feature-illustration {
    transform: scale(1.06) translateY(-3px);
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    line-height: 1.35;
}

.feature-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* Help Banner */
.help-banner {
    padding: 0 0 64px;
    background: var(--color-white);
}

.help-card {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    box-shadow: 0 1px 2px rgba(15, 30, 61, 0.03);
}

.help-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.help-card:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
    box-shadow: 0 6px 18px rgba(15, 30, 61, 0.06);
}

.help-icon {
    width: 48px;
    height: 48px;
    background: #e8f0fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4285f4;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.help-card:hover .help-icon {
    background: #d2e3fc;
    transform: scale(1.05);
}

.help-text {
    flex: 1;
    min-width: 0;
}

.help-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.help-text p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.help-text a {
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.help-text a:hover {
    color: #1a73e8;
    border-bottom-color: currentColor;
}

/* Footer */
.footer {
    padding: 28px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.copyright {
    font-size: 13px;
    color: var(--color-text-light);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.separator {
    color: var(--color-text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.06); opacity: 0.9; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== Legal / Privacy Policy Page ========== */
.legal-hero {
    padding: 60px 0 48px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #eef2f7;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.18) 0%, rgba(251, 146, 60, 0) 70%);
    pointer-events: none;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0) 70%);
    pointer-events: none;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    padding: 6px 12px 6px 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.6);
    border: 1px solid #e2e8f0;
}

.back-link:hover {
    color: var(--color-accent);
    border-color: #cbd5e0;
    transform: translateX(-2px);
}

.legal-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -1.4px;
    line-height: 1.1;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.legal-title .title-accent {
    display: inline;
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-meta {
    font-size: 14px;
    color: var(--color-text-light);
    background: white;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(15, 30, 61, 0.04);
}

.legal-meta strong {
    color: var(--color-navy);
    font-weight: 600;
    margin-left: 4px;
}

.legal-main {
    padding: 56px 0 80px;
    background: var(--color-white);
}

.legal-container {
    max-width: 820px;
}

.legal-content {
    background: white;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 48px 56px;
    box-shadow: 0 1px 3px rgba(15, 30, 61, 0.04);
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.4px;
    margin-bottom: 14px;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.legal-section h2 .num {
    color: var(--color-accent);
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.legal-section h3 {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    margin: 18px 0 10px;
    letter-spacing: -0.2px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.legal-section ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

.legal-section ul li strong {
    color: var(--color-navy);
    font-weight: 600;
}

.legal-section a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.legal-section a:hover {
    border-bottom-color: currentColor;
    color: var(--color-accent-dark);
}

.contact-card {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 22px 24px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: #e0f2fe;
    color: #0ea5e9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.contact-row a {
    font-size: 15px;
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: none;
}

.contact-row a:hover {
    text-decoration: underline;
}

.contact-address {
    font-size: 14px !important;
    color: #334155 !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .legal-title { font-size: 34px; }
    .legal-content { padding: 32px 24px; }
    .legal-section h2 { font-size: 19px; }
    .legal-section p, .legal-section ul li { font-size: 14px; }
    .legal-hero { padding: 40px 0 32px; }
}

@media (max-width: 420px) {
    .legal-title { font-size: 28px; }
}

/* ========== FAQ / Support Page ========== */
.faq-container {
    max-width: 880px;
}

.faq-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.faq-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: white;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    color: var(--color-navy);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: all 0.25s ease;
    box-shadow: 0 1px 2px rgba(15, 30, 61, 0.03);
}

.faq-nav-item:hover {
    transform: translateY(-2px);
    border-color: #cbd5e0;
    box-shadow: 0 8px 20px rgba(15, 30, 61, 0.07);
}

.faq-nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-tile-blue   { background: #dbeafe; color: #2563eb; }
.icon-tile-teal   { background: #e8f0fe; color: #4285f4; }
.icon-tile-amber  { background: #fef3c7; color: #d97706; }
.icon-tile-purple { background: #ede9fe; color: #7c3aed; }

.faq-section {
    margin-bottom: 40px;
    scroll-margin-top: 90px;
}

.faq-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.faq-section-tile {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-section-head h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.4px;
    margin: 0;
}

.faq-item {
    background: white;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(15, 30, 61, 0.03);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #cbd5e0;
}

.faq-item[open] {
    border-color: #cbd5e0;
    box-shadow: 0 6px 16px rgba(15, 30, 61, 0.06);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy);
    letter-spacing: -0.2px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
    background: #f8fafc;
}

.faq-item summary::after {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat center;
    background-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
    background-color: #ccfbf1;
}

.faq-answer {
    padding: 0 22px 20px;
    animation: faqFade 0.3s ease;
}

.faq-answer p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.faq-answer p + p { margin-top: 10px; }

.faq-answer a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.faq-answer a:hover { border-bottom-color: currentColor; }

@keyframes faqFade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.faq-help {
    margin-top: 48px;
    padding: 26px 30px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
    border: 1px solid #ccfbf1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.faq-help-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: white;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.18);
}

.faq-help-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 4px;
    letter-spacing: -0.2px;
}

.faq-help-text p {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

.faq-help-text a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.faq-help-text a:hover { border-bottom-color: currentColor; }

@media (max-width: 768px) {
    .faq-nav { grid-template-columns: repeat(2, 1fr); }
    .faq-section-head h2 { font-size: 19px; }
    .faq-item summary { padding: 16px 18px; font-size: 14.5px; }
    .faq-answer { padding: 0 18px 18px; }
    .faq-help { flex-direction: column; text-align: center; padding: 22px; }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-illustration {
        height: 380px;
        max-width: 480px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-illustration {
        height: 320px;
    }

    .mockup {
        height: 300px;
        transform: none;
    }

    .help-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 14px;
    }

    .help-text {
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
