/* KoreanSubs — Dark Premium Design */

/* Self-hosted Inter font */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/inter-400.ttf) format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url(../fonts/inter-500.ttf) format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/inter-600.ttf) format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url(../fonts/inter-700.ttf) format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url(../fonts/inter-800.ttf) format('truetype'); }

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

:root {
    --bg: #0a0a0f;
    --bg-elevated: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --border: #2a2a3a;
    --border-bright: #3a3a50;
    --text: #f4f4fa;
    --text-muted: #c0c0d4;
    --text-dim: #9a9ab2;
    --primary: #f43f5e;
    --primary-hover: #f472b6;
    --primary-glow: rgba(236, 72, 153, 0.15);
    --primary-glow-strong: rgba(236, 72, 153, 0.3);
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.15);
    --good: #34d399;
    --bad: #f87171;
    --bitcoin: #f7931a;
    --gradient-hero: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    --gradient-card: linear-gradient(135deg, var(--bg-card) 0%, #1a1a28 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* ============ */
/*   Buttons    */
/* ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #d946a8 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

.btn-bitcoin {
    background: linear-gradient(135deg, #f7931a 0%, #e67e0a 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(247, 147, 26, 0.3);
}

.btn-bitcoin:hover {
    box-shadow: 0 6px 30px rgba(247, 147, 26, 0.5);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
}

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.125rem; }

/* ============ */
/*   Navbar     */
/* ============ */
.navbar {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 48px;
    width: auto;
}

/* ============ */
/*    Hero      */
/* ============ */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

/* Subtle radial glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.08) 0%, rgba(168, 85, 247, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-logo {
    flex-shrink: 0;
}

.hero-logo-img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(236, 72, 153, 0.2));
}

.hero-content {
    text-align: left;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-glow);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-hover);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.lock-icon {
    font-size: 0.95rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 0 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.launch-tag {
    color: var(--primary);
    font-weight: 600;
}

/* =================== */
/* App Preview / Slides */
/* =================== */
.app-preview {
    padding: 40px 0 100px;
}

.slideshow {
    max-width: 900px;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-caption {
    padding: 16px 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.slideshow-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.slide-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    color: var(--primary);
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.25s;
}

.dot:hover {
    background: var(--text-muted);
}

.dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
    transform: scale(1.2);
}

/* ============== */
/* How It Works   */
/* ============== */
.how-it-works {
    padding: 100px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 240px;
    padding: 32px 20px;
    border-radius: 16px;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0 auto 14px;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--text-dim);
    padding-top: 60px;
}

/* ================== */
/* Why KoreanSubs / Who  */
/* ================== */
.who-section {
    padding: 100px 0;
    background: var(--bg-elevated);
    position: relative;
}

.who-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.who-item {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.who-item:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Last item (the "fix" card) gets a special glow */
.who-item:last-child {
    border-color: rgba(236, 72, 153, 0.25);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.who-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.who-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.who-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.also-works-note {
    text-align: center;
    margin-top: 36px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.also-works-note p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============= */
/*   Privacy     */
/* ============= */
.privacy-section {
    padding: 100px 0;
}

.privacy-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.privacy-comparison {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.privacy-comparison table {
    width: 100%;
    border-collapse: collapse;
}

.privacy-comparison th,
.privacy-comparison td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.privacy-comparison thead th {
    background: var(--bg-elevated);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-comparison tbody tr:last-child td {
    border-bottom: none;
}

.privacy-comparison tbody tr {
    transition: background 0.15s;
}

.privacy-comparison tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.privacy-comparison td {
    font-size: 0.92rem;
}

.privacy-comparison td.good {
    color: var(--good);
    font-weight: 600;
}

.privacy-comparison td.bad {
    color: var(--bad);
    opacity: 0.8;
}

.privacy-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 16px 24px;
    background: var(--primary-glow);
    border: 1px solid rgba(236, 72, 153, 0.15);
    border-radius: 10px;
    font-size: 0.92rem;
    color: var(--primary-hover);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============= */
/*   Features    */
/* ============= */
.features {
    padding: 100px 0;
    background: var(--bg-elevated);
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.features-list {
    max-width: 720px;
    margin: 0 auto;
}

.feature {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.feature:last-child {
    border-bottom: none;
}

.feature .check {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 1.02rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============= */
/*   Pricing     */
/* ============= */
.pricing {
    padding: 100px 0;
    position: relative;
}

/* Background glow for pricing */
.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pricing h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    position: relative;
}

.pricing-card {
    max-width: 420px;
    margin: 0 auto;
    background: var(--gradient-card);
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    padding: 44px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.5);
}

/* Subtle glow ring around card */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.launch-banner {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.price {
    margin-bottom: 8px;
}

.price .price-original {
    font-size: 1.5rem;
    color: var(--text-dim);
    text-decoration: line-through;
    margin-right: 8px;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--text-muted);
}

.price .amount {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff, var(--text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.92rem;
}

.pricing-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-includes li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.pricing-includes li:last-child {
    border-bottom: none;
}

/* Buy buttons */
.buy-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

.trust-badge {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ============= */
/*     FAQ       */
/* ============= */
.faq {
    padding: 100px 0;
    background: var(--bg-elevated);
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--border-bright);
}

.faq-item h4 {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.faq-item a {
    color: var(--primary);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* ============= */
/*  Final CTA    */
/* ============= */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.06) 0%, rgba(168, 85, 247, 0.03) 40%, transparent 70%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    position: relative;
}

.final-cta p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1.15rem;
    position: relative;
}

.final-cta .btn {
    position: relative;
}

.final-guarantee {
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--text-dim);
    position: relative;
}

/* ================ */
/* From the Blog    */
/* ================ */
.blog-section {
    padding: 100px 0;
    background: var(--bg-elevated);
}

.blog-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.blog-card-home {
    display: block;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-home:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-home h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.blog-card-home p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card-home .blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.blog-section .view-all {
    text-align: center;
    margin-top: 36px;
}

.blog-section .view-all a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-section .view-all a:hover {
    text-decoration: underline;
}

/* ============= */
/*    Footer     */
/* ============= */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.footer p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer a {
    color: var(--primary);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.6;
}

/* ======================== */
/* Bitcoin Modal            */
/* ======================== */
.btc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.btc-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.btc-modal-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    color: var(--text);
}

.btc-modal-content p {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    font-size: 0.92rem;
}

.btc-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dim);
    line-height: 1;
    transition: color 0.2s;
}

.btc-modal-close:hover {
    color: var(--text);
}

#btc-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

#btc-form input {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-bright);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--bg-elevated);
    color: var(--text);
    transition: border-color 0.2s;
}

#btc-form input::placeholder {
    color: var(--text-dim);
}

#btc-form input:focus {
    outline: none;
    border-color: var(--bitcoin);
    box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.15);
}

#btc-form .btn {
    margin-top: 0.5rem;
}

/* ============= */
/*  Responsive   */
/* ============= */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-logo-img {
        width: 140px;
    }

    .hero-cta {
        align-items: center;
    }

    .step-arrow {
        display: none;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 320px;
        width: 100%;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        align-items: center;
    }

    .section-subtitle {
        margin-top: 0;
    }

    .how-it-works,
    .who-section,
    .privacy-section,
    .features,
    .pricing,
    .faq {
        padding: 70px 0;
    }

    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .buy-buttons {
        flex-direction: column;
        align-items: center;
    }

    .buy-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .who-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .privacy-comparison th:first-child,
    .privacy-comparison td:first-child {
        font-size: 0.82rem;
    }
}

/* ============= */
/* Smooth scroll  */
/* ============= */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: rgba(236, 72, 153, 0.3);
    color: #fff;
}
