:root {
    --brand: #FFD60A;
    --brand-dark: #E6BF00;
    --brand-soft: #FFF8D6;
    --ink: #0F0F10;
    --ink-2: #1F1F22;
    --muted: #6B6B72;
    --line: #ECECEE;
    --line-2: #F5F5F7;
    --bg: #FFFFFF;
    --bg-soft: #FAFAFB;
    --success: #15803D;
    --danger: #DC2626;
    --shadow-sm: 0 1px 2px rgba(15,15,16,0.06);
    --shadow: 0 8px 24px rgba(15,15,16,0.08);
    --shadow-lg: 0 24px 60px rgba(15,15,16,0.12);
    --radius: 14px;
    --radius-lg: 22px;
    --radius-sm: 9px;
    --container: 1180px;
    --tr: 220ms cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

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

/* === TOPBAR === */
.topbar {
    background: linear-gradient(90deg, #FFF5C2 0%, var(--brand-soft) 100%);
    border-bottom: 1px solid #FFE066;
    color: #4A3E00;
    font-size: 13.5px;
}
.topbar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 24px;
    line-height: 1.4;
}
.topbar-dot {
    width: 8px; height: 8px;
    background: #E6BF00;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(230,191,0,0.20);
    flex-shrink: 0;
    animation: pulse 2s infinite;
}
.topbar a {
    color: #4A3E00;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    margin-left: 2px;
}
.topbar a:hover { color: var(--ink); }

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.logo strong { font-weight: 800; }
.logo-icon { display: inline-flex; }
.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-links a {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--ink-2);
    font-weight: 500;
    font-size: 15px;
    transition: background var(--tr), color var(--tr);
}
.nav-links a:hover { background: var(--line-2); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: white;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    width: 18px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    transition: transform var(--tr), background var(--tr), box-shadow var(--tr), border-color var(--tr);
    white-space: nowrap;
    line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: var(--brand);
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 16px rgba(255,214,10,0.45);
}
.btn-primary:hover {
    background: var(--brand-dark);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 22px rgba(255,214,10,0.55);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn-ghost:hover { background: var(--line-2); }
.btn-lg {
    padding: 14px 22px;
    font-size: 16px;
    border-radius: 14px;
}

/* === HERO === */
.hero {
    padding: 64px 0 80px;
    background:
        radial-gradient(60% 60% at 80% 0%, rgba(255,214,10,0.18), transparent 60%),
        radial-gradient(40% 40% at 0% 20%, rgba(255,214,10,0.10), transparent 60%),
        var(--bg);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-soft);
    color: #6B5900;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #FFE980;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(255,214,10,0.25);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255,214,10,0.25); }
    50%      { box-shadow: 0 0 0 8px rgba(255,214,10,0.05); }
}
.hero-title {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 900;
    margin: 18px 0 18px;
}
.highlight {
    background: linear-gradient(180deg, transparent 60%, var(--brand) 60%);
    padding: 0 6px;
    border-radius: 6px;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 0 32px;
}
.hero-form {
    display: flex;
    gap: 10px;
    max-width: 540px;
    margin-bottom: 18px;
}
.hero-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: white;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    transition: border-color var(--tr), box-shadow var(--tr);
}
.hero-input-wrap:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(255,214,10,0.25);
}
.hero-input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 14px 4px 14px 16px;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    color: var(--ink);
    min-width: 0;
}
.hero-input-suffix {
    padding: 0 14px 0 4px;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
}
.hero-perks {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}
.hero-perks .check {
    color: var(--success);
    font-weight: 700;
    margin-right: 6px;
}
.hero-note {
    margin: 22px 0 0;
    padding: 12px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-left: 3px solid var(--brand);
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--ink-2);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 540px;
}
.hero-note a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.hero-note-icon {
    width: 22px; height: 22px;
    background: var(--brand);
    color: var(--ink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* === HERO VISUAL === */
.hero-visual {
    position: relative;
}
.mock-window {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: perspective(1500px) rotateY(-4deg) rotateX(2deg);
    transition: transform 600ms ease;
}
.mock-window:hover {
    transform: perspective(1500px) rotateY(-2deg) rotateX(1deg);
}
.mock-header {
    background: var(--line-2);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--line);
}
.mock-dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA42; }
.mock-url {
    margin-left: 16px;
    background: white;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--muted);
    border: 1px solid var(--line);
}
.mock-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 380px;
}
.mock-sidebar {
    background: #FAFAFB;
    padding: 16px 12px;
    border-right: 1px solid var(--line);
    font-size: 13px;
}
.mock-compose {
    background: var(--brand);
    color: var(--ink);
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 14px;
}
.mock-nav-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--ink-2);
    margin-bottom: 2px;
}
.mock-nav-item.active {
    background: white;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}
.mock-nav-item span {
    background: var(--brand);
    color: var(--ink);
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 8px;
    font-weight: 700;
}
.mock-list { padding: 6px; }
.mock-mail {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background var(--tr);
}
.mock-mail:hover { background: var(--line-2); }
.mock-mail.unread { background: #FFFDF1; }
.mock-mail.unread .mock-mail-from,
.mock-mail.unread .mock-mail-subject { font-weight: 700; }
.mock-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.mock-mail-body { min-width: 0; }
.mock-mail-from { font-size: 13px; color: var(--ink); }
.mock-mail-subject { font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.mock-mail-preview {
    font-size: 12px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 2px;
}
.mock-mail-time {
    font-size: 11px;
    color: var(--muted);
    align-self: start;
    padding-top: 4px;
}

.float-card {
    position: absolute;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    animation: float 6s ease-in-out infinite;
}
.float-card strong { display: block; color: var(--ink); font-size: 13px; }
.float-card small { color: var(--muted); font-size: 12px; }
.float-icon {
    width: 38px; height: 38px;
    background: var(--brand-soft);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.float-card-1 { top: 14%; left: -34px; animation-delay: 0s; }
.float-card-2 { bottom: 8%; right: -28px; animation-delay: 3s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* === STATS === */
.stats { padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-value {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}
.stat-value span { color: var(--muted); font-weight: 700; font-size: 0.55em; margin-left: 2px; }
.stat-label { color: var(--muted); margin-top: 8px; font-size: 14px; }

/* === SECTION === */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.eyebrow {
    display: inline-block;
    background: var(--brand-soft);
    color: #6B5900;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    line-height: 1.15;
}
.section-lead {
    font-size: 17px;
    color: var(--muted);
    margin: 0;
}

/* === FEATURES === */
.features { padding: 100px 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.feature-icon {
    width: 52px; height: 52px;
    background: var(--brand-soft);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}
.feature h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

/* === SECURITY === */
.security {
    padding: 100px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.security-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.security-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 18px;
}
.security-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
}
.security-list strong { display: block; font-size: 16px; margin-bottom: 4px; }
.security-list p { margin: 0; color: var(--muted); font-size: 15px; }
.security-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.security-content .section-title { text-align: left; }
.security-content .section-lead { text-align: left; }

.lock-card {
    background: var(--ink);
    color: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.lock-card::before {
    content: '';
    position: absolute;
    inset: -50% -50% auto auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(closest-side, rgba(255,214,10,0.25), transparent);
}
.lock-icon {
    font-size: 38px;
    width: 64px; height: 64px;
    background: var(--brand);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    position: relative;
}
.lock-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
}
.lock-bars { display: grid; gap: 12px; position: relative; }
.lock-bar {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.lock-bar em {
    font-style: normal;
    color: var(--brand);
    font-weight: 700;
    font-size: 13px;
}

/* === COMPARISON === */
.comparison { padding: 100px 0; }
.comparison-table-wrap {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
.comparison-table th,
.comparison-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
}
.comparison-table thead th {
    background: var(--bg-soft);
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.04em;
}
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--ink-2);
}
.comparison-table .us {
    background: var(--brand-soft);
    color: var(--ink);
    font-weight: 700;
}
.comparison-table thead .us {
    color: var(--ink);
    background: var(--brand);
}
.yes { color: var(--success); font-size: 18px; font-weight: 800; }
.no { color: #C5C5CB; font-size: 18px; }

/* === FAQ === */
.faq { padding: 100px 0; background: var(--bg-soft); border-top: 1px solid var(--line); }
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    transition: border-color var(--tr);
}
.faq-item[open] { border-color: var(--brand); }
.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--muted);
    transition: transform var(--tr);
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    padding: 0 24px 22px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

/* === CTA === */
.cta { padding: 100px 0; }
.cta-inner {
    background: linear-gradient(135deg, var(--ink) 0%, #2A2A2E 100%);
    color: white;
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-inner::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    background: radial-gradient(closest-side, rgba(255,214,10,0.30), transparent);
    top: -160px; left: -120px;
}
.cta-inner::after {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    background: radial-gradient(closest-side, rgba(255,214,10,0.15), transparent);
    bottom: -160px; right: -120px;
}
.cta-inner h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    line-height: 1.2;
}
.cta-inner p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 30px;
    position: relative;
}
.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.cta-inner .btn-ghost {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    color: white;
}
.cta-inner .btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* === FOOTER === */
.footer {
    background: white;
    border-top: 1px solid var(--line);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 48px;
}
.footer-brand p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 14px;
    max-width: 280px;
}
.footer-col h4 {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a {
    color: var(--muted);
    font-size: 14px;
    transition: color var(--tr);
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

/* === MODAL === */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,15,16,0.55);
    backdrop-filter: blur(4px);
    animation: fadeIn 200ms ease;
}
.modal-dialog {
    position: relative;
    background: white;
    border-radius: 22px;
    max-width: 480px;
    width: 100%;
    padding: 40px 32px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: popIn 260ms cubic-bezier(.2,.7,.3,1.2);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
    from { opacity: 0; transform: translateY(20px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute;
    top: 12px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 0;
    background: var(--line-2);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    transition: background var(--tr);
}
.modal-close:hover { background: var(--line); }
.modal-icon {
    width: 72px; height: 72px;
    background: var(--brand-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    margin: 0 auto 18px;
    border: 4px solid var(--brand);
}
.modal-dialog h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.modal-dialog p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 15px;
}
.modal-sub { font-size: 14px; }
.modal-form {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}
.modal-form input {
    flex: 1;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color var(--tr), box-shadow var(--tr);
    min-width: 0;
}
.modal-form input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(255,214,10,0.25);
}
.modal-success {
    margin-top: 20px;
    padding: 22px;
    border-radius: 14px;
    background: var(--brand-soft);
    border: 1px solid #FFE980;
}
.modal-success-icon {
    width: 44px; height: 44px;
    background: var(--brand);
    color: var(--ink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 10px;
}
.modal-success strong {
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
}
.modal-success p { margin: 0; font-size: 14px; color: var(--ink-2); }

/* === REVIEWS === */
.reviews { padding: 100px 0; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--tr), box-shadow var(--tr);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-stars {
    color: #F5A623;
    font-size: 18px;
    letter-spacing: 2px;
}
.review p {
    margin: 0;
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.55;
    flex: 1;
}
.review footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.review-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.review footer strong {
    display: block;
    font-size: 14px;
}
.review footer small {
    color: var(--muted);
    font-size: 12px;
}

/* === LOGIN MODAL === */
.modal-dialog-login {
    max-width: 440px;
    text-align: left;
    padding: 32px 32px 28px;
}
.login-head {
    text-align: center;
    margin-bottom: 22px;
}
.login-head .logo-icon {
    display: inline-flex;
    margin-bottom: 10px;
}
.login-head h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.login-sub {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}
.login-form {
    display: grid;
    gap: 14px;
}
.login-error {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    border-radius: 10px;
    color: #991B1B;
    font-size: 13.5px;
    line-height: 1.5;
    animation: shake 380ms cubic-bezier(.36,.07,.19,.97);
}
.login-error span:first-child {
    color: var(--danger);
    font-size: 16px;
    line-height: 1.3;
    flex-shrink: 0;
}
@keyframes shake {
    10%, 90%   { transform: translateX(-1px); }
    20%, 80%   { transform: translateX(2px); }
    30%, 50%, 70% { transform: translateX(-4px); }
    40%, 60%   { transform: translateX(4px); }
}
.login-field {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
}
.login-field-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.login-forgot {
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
}
.login-forgot:hover { color: var(--ink); text-decoration: underline; }
.login-field > input,
.login-input-wrap {
    border: 1.5px solid var(--line);
    border-radius: 11px;
    background: white;
    transition: border-color var(--tr), box-shadow var(--tr);
    display: flex;
    align-items: center;
}
.login-field > input {
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    color: var(--ink);
    width: 100%;
    font-weight: 500;
}
.login-input-wrap input {
    border: 0;
    background: transparent;
    padding: 12px 4px 12px 14px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    flex: 1;
    min-width: 0;
    color: var(--ink);
    font-weight: 500;
}
.login-input-suffix {
    padding: 0 14px 0 4px;
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}
.login-field > input:focus,
.login-input-wrap:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(255,214,10,0.25);
}
.login-form.has-error .login-field > input,
.login-form.has-error .login-input-wrap {
    border-color: #FCA5A5;
}
.login-form.has-error .login-field > input:focus,
.login-form.has-error .login-input-wrap:focus-within {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(220,38,38,0.15);
}
.login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--ink-2);
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}
.login-remember input { accent-color: var(--brand); }
.btn-block { width: 100%; }
.btn-spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(15,15,16,0.2);
    border-top-color: var(--ink);
    border-radius: 50%;
    display: none;
    animation: spin 720ms linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: 0.7; }
.btn[disabled] { cursor: wait; opacity: 0.9; }
@keyframes spin { to { transform: rotate(360deg); } }

.modal-foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: 13.5px;
    color: var(--muted);
}
.modal-foot a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}
.modal-foot a:hover { text-decoration: underline; }

/* === TOAST === */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--ink);
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 200;
    box-shadow: var(--shadow-lg);
    transition: transform 320ms cubic-bezier(.2,.7,.3,1.2);
}
.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 980px) {
    .hero-grid,
    .security-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-visual { order: -1; max-width: 540px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .float-card-1 { left: 0; }
    .float-card-2 { right: 0; }
}
@media (max-width: 720px) {
    .nav-links, .nav-actions .btn-ghost { display: none; }
    .nav-toggle { display: flex; }
    .nav.menu-open .nav-links {
        display: grid;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: white;
        border-bottom: 1px solid var(--line);
        padding: 12px 24px 18px;
        gap: 2px;
    }
    .hero { padding: 48px 0 64px; }
    .hero-form { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .features, .security, .comparison, .faq, .cta, .reviews { padding: 72px 0; }
    .topbar { font-size: 12.5px; }
    .topbar-inner { padding: 8px 16px; }
    .cta-inner { padding: 44px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .comparison-table-wrap { overflow-x: auto; }
    .comparison-table { min-width: 600px; }
    .modal-form { flex-direction: column; }
    .mock-sidebar { display: none; }
    .mock-body { grid-template-columns: 1fr; }
    .float-card { display: none; }
    .mock-window { transform: none; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .hero-title { font-size: 38px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .mock-window { transform: none; }
}
