/* ===== CSS Variables & Reset ===== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-card: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --accent: #0284c7; /* Sky 600 */
    --accent-glow: rgba(2, 132, 199, 0.15);
    --accent-hover: #0369a1; /* Sky 700 */
    --gradient-accent: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    --border-color: #e5e7eb;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===== Site Navigation ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.site-nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.site-logo-image {
    height: 44px;
    width: auto;
    display: block;
    background: #2c3138;
    border-radius: 11px;
    padding: 4px;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.24);
}

.site-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.site-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.site-links a {
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.site-links a:hover,
.site-links a[aria-current='page'] {
    color: var(--accent);
    background: rgba(2, 132, 199, 0.12);
    border-color: rgba(2, 132, 199, 0.2);
}

.site-links .nav-external {
    border-color: transparent;
    background: transparent;
}

.site-links .nav-external:hover {
    border-color: rgba(2, 132, 199, 0.25);
}


/* ===== Content Pages ===== */
.content-shell {
    max-width: 1080px;
    padding: 56px 24px 80px;
}

.content-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 22px;
}

.hub-hero {
    margin-bottom: 30px;
}

.hub-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.content-title {
    font-size: clamp(2rem, 3.8vw, 2.7rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.content-subtitle {
    color: var(--text-secondary);
    max-width: 70ch;
    font-size: 1.04rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.content-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.content-card-cover-wrap {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef2f7;
}

.content-card-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.content-card:hover .content-card-cover {
    transform: scale(1.04);
}

.content-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-3px);
    border-color: rgba(2, 132, 199, 0.35);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.content-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(240px, 38%) 1fr;
}

.content-card-featured .content-card-body {
    justify-content: center;
}

.content-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.content-chip {
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: capitalize;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--text-primary);
    padding: 4px 9px;
}

.content-card h2 {
    font-size: 1.17rem;
    line-height: 1.35;
    margin-bottom: 10px;
}

.content-card h2 a {
    color: var(--text-primary);
}

.content-card h2 a:hover {
    color: var(--accent);
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.content-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag-pill {
    padding: 4px 10px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-secondary);
    font-size: 0.76rem;
    font-weight: 600;
}

.content-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.92rem;
    margin-top: auto;
}

.content-empty {
    color: var(--text-secondary);
}

.article-shell {
    max-width: 900px;
    padding: 56px 24px 80px;
}

.article-head {
    margin-bottom: 18px;
}

.article-cover {
    width: 100%;
    max-width: 760px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    object-fit: cover;
    max-height: 420px;
}

.article-content {
    max-width: 760px;
    border-top: 1px solid var(--border-color);
    padding-top: 26px;
}

.article-content p,
.article-content ul,
.article-content ol {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.article-content h2,
.article-content h3 {
    color: var(--text-primary);
    line-height: 1.25;
    margin: 24px 0 12px;
}

.article-content h2 {
    font-size: 1.55rem;
}

.article-content h3 {
    font-size: 1.2rem;
}

.article-content ul,
.article-content ol {
    padding-left: 22px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content a {
    color: var(--accent);
    font-weight: 600;
}

.article-content img {
    width: 100%;
    max-width: 760px;
    height: auto;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    margin: 12px 0 20px;
    background: #f4f7fb;
}

.article-content kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5em;
    padding: 2px 7px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: #f8fafc;
    color: var(--text-primary);
    font-size: 0.8em;
    font-weight: 700;
    line-height: 1;
}

.article-content .help-heading-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.article-content .help-heading-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: #f8fafc;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.article-content .help-heading-icon svg {
    width: 18px;
    height: 18px;
}

.article-content .help-step-card,
.article-content .help-panel {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #ffffff;
    padding: 18px;
    margin-bottom: 18px;
}

.article-content .help-step-list,
.article-content .help-checklist,
.article-content .help-fix-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-content .help-step-list li,
.article-content .help-checklist li,
.article-content .help-fix-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.article-content .help-step-list li::before {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    margin-top: 9px;
}

.article-content .help-inline-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #059669;
    flex-shrink: 0;
}

.article-content .help-inline-icon svg {
    width: 100%;
    height: 100%;
}

.article-content .help-success {
    margin: 6px 0 0;
    padding-top: 12px;
    border-top: 1px dashed rgba(2, 132, 199, 0.3);
    color: #0f766e;
    font-size: 0.94rem;
}

.article-content .help-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.article-content .help-panel-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: #f8fafc;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-content .help-panel-icon svg {
    width: 16px;
    height: 16px;
}

.article-content .help-panel--tip {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #fff9eb 100%);
}

.article-content .help-panel--tip .help-panel-icon {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.article-content .help-panel--note {
    border-color: var(--border-color);
}

.article-content .help-fix-list li::before {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f59e0b;
    margin-top: 9px;
}

/* ===== Markdown-First Help Authoring ===== */
.article-help .article-content > h2 + ol,
.article-help .article-content > h2 + ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 16px 18px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #ffffff;
}

.article-help .article-content > h2 + ol {
    counter-reset: help-step;
}

.article-help .article-content > h2 + ol > li,
.article-help .article-content > h2 + ul > li {
    position: relative;
    margin: 0;
    padding: 0 0 0 30px;
    color: var(--text-secondary);
}

.article-help .article-content > h2 + ol > li + li,
.article-help .article-content > h2 + ul > li + li {
    margin-top: 10px;
}

.article-help .article-content > h2 + ol > li::before {
    counter-increment: help-step;
    content: counter(help-step);
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid rgba(2, 132, 199, 0.35);
    background: rgba(2, 132, 199, 0.12);
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.article-help .article-content > h2 + ul > li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f59e0b;
}

.article-help .article-content > blockquote {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-left: 4px solid rgba(2, 132, 199, 0.35);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.article-help .article-content > blockquote p {
    margin: 0;
    color: var(--text-primary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-watch {
    position: absolute;
    left: -70px;
    bottom: -8px;
    width: 220px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.phone-frame {
    width: 100%;
    max-width: 300px;
    border-radius: 40px;
    border: 8px solid #1c1c1e; /* Sleek bezel */
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2), /* Softer shadow for light mode */
        0 0 0 1px rgba(0, 0, 0, 0.1); /* Dark subtle rim for definition */
    overflow: hidden;
    background: #1c1c1e;
    display: flex;
}

.phone-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 32px; /* Radius for the 'screen' inside the bezel */
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
    display: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* ===== Features Section ===== */
.features {
    padding: 120px 0;
    background: var(--bg-secondary);
}

/* ===== Screenshots Section ===== */
.screenshots {
    padding: 88px 0;
    background: var(--bg-secondary);
}

.screenshot-card {
    text-align: center;
}

.screenshot-card .phone-frame {
    margin: 0 auto 20px;
}

.screenshot-image {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    margin: 0 auto 20px;
    display: block;
}


.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.accent-text {
    color: var(--accent);
}


.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.feature-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--bg-primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 0.975rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Garmin Section ===== */
.garmin-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.garmin-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.garmin-content {
    flex: 1;
    max-width: 600px;
}

.garmin-title {
    text-align: left;
    margin-bottom: 16px;
}

.garmin-subtitle {
    text-align: left;
    margin-bottom: 48px;
    max-width: 100%;
}

.garmin-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.garmin-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.garmin-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.garmin-icon svg {
    width: 24px;
    height: 24px;
}

.garmin-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.garmin-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.garmin-buttons {
    margin-top: 32px;
}

.garmin-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.garmin-image-wrapper img {
    width: 100%;
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.garmin-image-wrapper:hover img {
    transform: translateY(-10px);
}

@media (max-width: 900px) {
    .garmin-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .garmin-content {
        max-width: 100%;
    }

    .garmin-title,
    .garmin-subtitle {
        text-align: center;
    }

    .garmin-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    box-shadow: var(--card-shadow);
}

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

.pricing-table th,
.pricing-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.975rem;
}

.pricing-table thead th {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody td:nth-child(2),
.pricing-table tbody td:nth-child(3) {
    color: var(--text-secondary);
}

.pricing-table strong {
    color: var(--accent);
    font-weight: 700;
}

.pricing-details {
    text-align: center;
}

.pricing-details .section-subtitle {
    margin-bottom: 12px;
}

/* ===== CTA Section ===== */
.cta {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-glow {
    position: absolute;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 60%);
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    display: none;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 24px 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.975rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ===== Privacy Page ===== */
.privacy-header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.privacy-nav {
    display: flex;
    align-items: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-hover);
}

.privacy-content {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    background: var(--bg-secondary);
}

.privacy-termly {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px 56px;
    box-shadow: var(--card-shadow);
}

.privacy-termly > span {
    display: none;
}

.privacy-termly [data-custom-class],
.privacy-termly [data-custom-class] * {
    font-family: var(--font-family) !important;
}

.privacy-termly h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-termly [data-custom-class='subtitle'] {
    display: block;
    color: var(--text-secondary) !important;
    font-size: 0.95rem !important;
    margin-bottom: 32px;
}

.privacy-termly [data-custom-class='body_text'] {
    color: var(--text-secondary) !important;
    font-size: 1rem !important;
    line-height: 1.8;
}

.privacy-termly [data-custom-class='heading_1'] {
    color: var(--accent) !important;
    font-size: 1.5rem !important;
    font-weight: 600;
    margin: 32px 0 12px;
}

.privacy-termly [data-custom-class='heading_2'] {
    color: var(--accent) !important;
    font-size: 1.25rem !important;
    font-weight: 600;
    margin: 24px 0 12px;
}

.privacy-termly [data-custom-class='body'] > div {
    margin-bottom: 16px;
}

.privacy-termly [data-custom-class='body'] > div:last-child {
    margin-bottom: 0;
}

.privacy-termly ul,
.privacy-termly ol {
    margin: 16px 0 24px;
    padding-left: 24px;
    color: var(--text-secondary);
}

.privacy-termly li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.privacy-termly li strong {
    color: var(--text-primary);
}

.privacy-termly a,
.privacy-termly [data-custom-class='link'] {
    color: var(--accent) !important;
}

.privacy-termly a:hover {
    color: var(--accent-hover) !important;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 60px 0;
    }

    .privacy-termly {
        padding: 32px 24px;
    }

    .privacy-termly [data-custom-class='heading_1'] {
        font-size: 1.25rem !important;
    }

    .privacy-termly [data-custom-class='heading_2'] {
        font-size: 1.125rem !important;
    }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .site-logo {
        display: none;
    }

    .site-nav {
        height: auto;
        justify-content: center;
        padding: 10px 0;
    }

    .site-links {
        width: 100%;
        justify-content: center;
        gap: 6px;
    }

    .site-links a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .content-shell,
    .article-shell {
        padding-top: 40px;
        padding-bottom: 60px;
    }

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

    .content-card-featured {
        grid-template-columns: 1fr;
    }

    .content-card-cover-wrap {
        aspect-ratio: 16 / 10;
    }

    .content-title {
        font-size: 1.85rem;
    }

    .article-content .help-heading-icon {
        width: 30px;
        height: 30px;
    }

    .article-content .help-step-card,
    .article-content .help-panel {
        padding: 15px;
    }

    .article-content .help-step-list li,
    .article-content .help-checklist li,
    .article-content .help-fix-list li {
        gap: 8px;
    }

    .hero {
        padding: 80px 20px;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-watch {
        width: 210px;
        left: -35px;
        bottom: -5px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .features {
        padding: 80px 0;
    }

    .screenshots {
        padding: 80px 0;
    }

    .pricing {
        padding: 80px 0;
    }

    .features-grid {
        padding: 0 16px;
    }

    .feature-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .pricing-table {
        overflow-x: auto;
    }

    .pricing-table table {
        min-width: 560px;
    }

    .cta {
        padding: 80px 20px;
    }

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

    .footer-links {
        justify-content: center;
    }
}


@media (max-width: 480px) {
    .site-links a {
        padding: 7px 10px;
        font-size: 0.84rem;
    }

    .content-title {
        font-size: 1.65rem;
    }

    .article-content h2 {
        font-size: 1.35rem;
    }

    .article-content .help-heading-wrap {
        align-items: flex-start;
    }

    .hero-watch {
        width: 165px;
        left: -15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 24px;
    }
}
