/* CSS Variables for Premium Theme */
:root {
    --bg-color: #0b1120;
    --surface-color: #1e293b;
    --surface-light: #334155;
    --primary-color: #0B7285;
    --primary-light: #12b8d4;
    --primary-dark: #074a56;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography elements */
h1,
h2,
h3,
h4 {
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #12b8d4, #0B7285);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(11, 114, 133, 0.2);
    border: 1px solid rgba(11, 114, 133, 0.5);
    color: var(--primary-light);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(11, 114, 133, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 114, 133, 0.6);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.btn-secondary {
    background: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--surface-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-light);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Glassmorphism Utilities */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 114, 133, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(11, 114, 133, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.84);
    color: var(--text-primary);
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: '';
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    position: absolute;
    left: 0;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.navbar.nav-open .nav-toggle span {
    background: transparent;
}

.navbar.nav-open .nav-toggle span::before {
    transform: translateY(6px) rotate(45deg);
}

.navbar.nav-open .nav-toggle span::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Background Glow Effect */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 114, 133, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-image-wrapper {
    margin-top: 5rem;
    position: relative;
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #0f172a;
}

.browser-frame {
    height: 40px;
    width: 100%;
    background: #1e293b;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #334155;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #eab308;
}

.browser-dots span:nth-child(3) {
    background: #22c55e;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.3);
    text-align: center;
}

.trust-bar p {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-item {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
}

/* Features Matrix */
.features-matrix {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(11, 114, 133, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    border: 1px solid rgba(11, 114, 133, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 12px;
    background: var(--primary-light);
    border-radius: 4px;
    opacity: 0.8;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Deep Dive Split Section */
.split-section {
    padding: 8rem 0;
    position: relative;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-text {
    flex: 1;
}

.split-visual {
    flex: 1;
    position: relative;
}

.deep-dive-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-list li span {
    color: var(--primary-light);
    font-weight: bold;
}

.right-glow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 114, 133, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0 8rem;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid rgba(11, 114, 133, 0.3);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #12b8d4, #0B7285);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: #0f172a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    flex: 1;
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.link-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Overrides */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-content {
        height: 72px;
        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.96);
        box-shadow: 0 20px 50px rgba(2, 6, 23, 0.36);
    }

    .navbar.nav-open .nav-links {
        display: flex;
    }

    .nav-links a {
        width: 100%;
    }

    .nav-links a:not(.btn) {
        padding: 0.75rem 0.85rem;
        border-radius: 8px;
    }

    .nav-links a:not(.btn):hover,
    .nav-links a.active,
    .nav-links a[aria-current="page"] {
        background: rgba(11, 114, 133, 0.14);
        color: var(--text-primary);
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .split-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

/* Generic Pages (Terms, Privacy, About, etc.) */
.generic-hero {
    padding: 160px 0 60px;
    text-align: center;
    background: rgba(15, 23, 42, 0.4);
    border-bottom: 1px solid var(--border-color);
}

.text-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.text-content-container h2 {
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.text-content-container h3 {
    color: var(--primary-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.text-content-container p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.text-content-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    font-size: 1.05rem;
}

.text-content-container li {
    margin-bottom: 0.5rem;
}

.download-box {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(11, 114, 133, 0.15);
}

/* User Manual */
.manual-shell {
    padding: 4rem 0 6rem;
}

.manual-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 2rem;
}

.manual-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
}

.manual-sidebar h3 {
    font-size: 1rem;
    margin-bottom: 0.85rem;
}

.manual-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.manual-sidebar li + li {
    margin-top: 0.35rem;
}

.manual-sidebar a {
    display: block;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.manual-sidebar a:hover,
.manual-sidebar a.active {
    background: rgba(11, 114, 133, 0.12);
    color: var(--primary-light);
}

.manual-content {
    min-width: 0;
}

.manual-lead {
    max-width: 760px;
    margin-bottom: 2rem;
}

.manual-overview-grid,
.manual-card-grid,
.manual-callout-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.manual-card,
.manual-callout,
.manual-step-panel,
.manual-toc,
.manual-table-wrap {
    background: rgba(15, 23, 42, 0.48);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.18);
}

.manual-card,
.manual-callout,
.manual-step-panel,
.manual-toc {
    padding: 1.5rem;
}

.manual-card p,
.manual-callout p,
.manual-step-panel p,
.manual-toc p {
    font-size: 1rem;
    margin-bottom: 0;
}

.manual-card h3,
.manual-callout h3,
.manual-step-panel h3,
.manual-toc h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.manual-kicker {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(18, 184, 212, 0.12);
    border: 1px solid rgba(18, 184, 212, 0.35);
    color: var(--primary-light);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.manual-section {
    margin-top: 2.5rem;
}

.manual-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.manual-step-list,
.manual-bullet-list {
    margin: 0;
    padding-left: 1.3rem;
    color: var(--text-secondary);
}

.manual-step-list li,
.manual-bullet-list li {
    margin-bottom: 0.85rem;
}

.manual-note {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--primary-light);
    background: rgba(18, 184, 212, 0.08);
    border-radius: 12px;
    color: var(--text-secondary);
}

.manual-table-wrap {
    overflow: auto;
}

.manual-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.manual-table th,
.manual-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.manual-table th {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.manual-next-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.manual-next-nav a {
    min-width: 220px;
}

.manual-hero-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.manual-chip-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.manual-chip {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.manual-mini-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.manual-download-row {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.1rem;
}

.manual-shot {
    margin-top: 1.5rem;
}

.manual-shot-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.55));
    box-shadow: 0 18px 38px rgba(2, 6, 23, 0.28);
}

.manual-shot-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.manual-shot-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.28));
    pointer-events: none;
}

.manual-shot-pin {
    position: absolute;
    z-index: 1;
    max-width: 220px;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(103, 232, 249, 0.55);
    background: rgba(8, 47, 73, 0.88);
    color: #ecfeff;
    font-size: 0.82rem;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.manual-shot-pin::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: -16px;
    width: 2px;
    height: 16px;
    background: rgba(103, 232, 249, 0.72);
}

.manual-shot-pin.right::after {
    left: auto;
    right: 18px;
}

.manual-shot-pin.pin-flow {
    top: 11%;
    left: 8%;
}

.manual-shot-pin.pin-role {
    top: 19%;
    right: 8%;
}

.manual-shot-pin.pin-continuity {
    bottom: 12%;
    left: 11%;
}

.manual-shot figcaption {
    margin-top: 0.85rem;
    color: var(--text-secondary);
    font-size: 0.96rem;
}

.manual-shot figcaption strong {
    color: var(--text-primary);
}

.manual-pdf-note {
    margin-top: 0.9rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.print-manual-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem 1.75rem 4rem;
    color: #0f172a;
}

.print-manual-cover {
    padding: 1rem 0 2rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.print-manual-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(8, 145, 178, 0.12);
    color: #0f766e;
    border: 1px solid rgba(8, 145, 178, 0.28);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.print-manual-cover h1,
.print-manual-section h2,
.print-manual-section h3 {
    color: #0f172a;
}

.print-manual-cover p,
.print-manual-section p,
.print-manual-section li,
.print-manual-section td,
.print-manual-section th {
    color: #334155;
}

.print-manual-section {
    margin-top: 2.5rem;
    break-before: page;
}

.print-manual-section:first-of-type {
    break-before: auto;
}

.print-manual-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.print-manual-card {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    background: #f8fafc;
}

.print-manual-list {
    padding-left: 1.3rem;
}

.print-manual-shot .manual-shot-frame {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: none;
}

.print-manual-shot .manual-shot-frame::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.16));
}

.print-manual-shot .manual-shot-pin {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(15, 23, 42, 0.65);
    color: #f8fafc;
    box-shadow: none;
}

.print-manual-shot figcaption {
    color: #475569;
}

.print-manual-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.print-manual-table th,
.print-manual-table td {
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 0.75rem 0.85rem;
    text-align: left;
    vertical-align: top;
}

.print-manual-toc {
    margin-top: 1.75rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    background: #f8fafc;
}

.print-manual-toc ol {
    margin: 0.8rem 0 0;
    padding-left: 1.2rem;
}

.print-manual-downloads {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

@media (max-width: 920px) {
    .manual-layout {
        grid-template-columns: 1fr;
    }

    .manual-sidebar {
        position: static;
    }

    .manual-next-nav {
        flex-direction: column;
    }

    .manual-shot-pin {
        position: static;
        display: block;
        max-width: none;
        margin: 0.8rem;
    }

    .manual-shot-pin::after {
        display: none;
    }

    .print-manual-grid {
        grid-template-columns: 1fr;
    }
}

@page {
    size: A4;
    margin: 13mm;
}

/* Premium public website system */
body:not([data-super-admin-page]) {
    --bg-color: #f6f8fb;
    --surface-color: #ffffff;
    --surface-light: #eef4f7;
    --primary-color: #0f766e;
    --primary-light: #14b8a6;
    --primary-dark: #115e59;
    --accent-color: #b45309;
    --ink-color: #162033;
    --muted-ink: #5b677a;
    --text-primary: #162033;
    --text-secondary: #5b677a;
    --border-color: rgba(22, 32, 51, 0.13);
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(22, 32, 51, 0.12);
    background:
        linear-gradient(180deg, #f7fbfc 0%, #f4f6f9 44%, #ffffff 100%);
    color: var(--text-primary);
}

body:not([data-super-admin-page]) h1,
body:not([data-super-admin-page]) h2,
body:not([data-super-admin-page]) h3,
body:not([data-super-admin-page]) h4 {
    letter-spacing: 0;
}

body:not([data-super-admin-page]) .highlight {
    background: none;
    color: var(--primary-dark);
    -webkit-text-fill-color: currentColor;
}

body:not([data-super-admin-page]) .glassmorphism,
body:not([data-super-admin-page]) .navbar {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body:not([data-super-admin-page]) .logo,
body:not([data-super-admin-page]) .nav-links a:not(.btn) {
    color: var(--ink-color);
}

body:not([data-super-admin-page]) .nav-links a:not(.btn) {
    opacity: 0.76;
}

body:not([data-super-admin-page]) .nav-links a:not(.btn):hover,
body:not([data-super-admin-page]) .nav-links a.active,
body:not([data-super-admin-page]) .nav-links a[aria-current="page"] {
    color: var(--primary-dark);
    opacity: 1;
}

body:not([data-super-admin-page]) .logo-icon {
    background: linear-gradient(135deg, #0f766e, #b45309);
}

body:not([data-super-admin-page]) .btn {
    border-radius: 8px;
    min-height: 44px;
    box-shadow: none;
}

body:not([data-super-admin-page]) .btn-primary {
    background: #0f766e;
    color: #ffffff;
    border: 1px solid #0f766e;
}

body:not([data-super-admin-page]) .btn-primary:hover {
    background: #115e59;
    border-color: #115e59;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
}

body:not([data-super-admin-page]) .btn-secondary,
body:not([data-super-admin-page]) .btn-outline {
    background: #ffffff;
    color: var(--ink-color);
    border: 1px solid var(--border-color);
}

body:not([data-super-admin-page]) .btn-secondary:hover,
body:not([data-super-admin-page]) .btn-outline:hover {
    background: #eef7f6;
    border-color: rgba(15, 118, 110, 0.36);
}

body:not([data-super-admin-page]) .badge,
.premium-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(15, 118, 110, 0.24);
    border-radius: 999px;
    background: #e8f5f3;
    color: #115e59;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

body:not([data-super-admin-page]) .hero::before,
body:not([data-super-admin-page]) .right-glow,
body:not([data-super-admin-page]) .glow-effect {
    display: none;
}

.premium-hero {
    padding: 132px 0 64px;
    background: #f7fbfc;
    border-bottom: 1px solid var(--border-color);
}

.premium-hero.compact {
    padding-bottom: 44px;
}

.premium-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 3rem;
    align-items: center;
}

.premium-hero-copy {
    min-width: 0;
}

.premium-title,
body:not([data-super-admin-page]) .premium-title {
    max-width: 820px;
    margin: 0.9rem 0 1rem;
    color: var(--ink-color);
    font-size: 3.55rem;
    line-height: 1.05;
    letter-spacing: 0;
}

.premium-hero.compact .premium-title {
    font-size: 3rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.premium-lede {
    max-width: 720px;
    color: var(--muted-ink);
    font-size: 1.12rem;
    line-height: 1.72;
}

.premium-hero.compact .premium-lede,
.premium-hero.compact .premium-eyebrow {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.premium-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.8rem;
}

.premium-actions.centered {
    justify-content: center;
}

.premium-subnote {
    margin-top: 1rem;
    color: var(--muted-ink);
    font-size: 0.94rem;
}

.product-frame {
    overflow: hidden;
    border: 1px solid rgba(22, 32, 51, 0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(22, 32, 51, 0.16);
}

.product-frame-bar {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    height: 34px;
    padding: 0 0.85rem;
    background: #eef4f7;
    border-bottom: 1px solid rgba(22, 32, 51, 0.1);
}

.product-frame-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #94a3b8;
}

.product-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-proof-grid,
.proof-strip {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--border-color);
}

.hero-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.4rem;
}

.proof-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0 auto;
}

.proof-item {
    min-height: 98px;
    padding: 1rem;
    background: #ffffff;
}

.proof-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--ink-color);
    font-size: 1rem;
}

.proof-item span,
.proof-item p {
    margin: 0;
    color: var(--muted-ink);
    font-size: 0.9rem;
    line-height: 1.45;
}

.section-band {
    padding: 72px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.section-band.alt {
    background: #f6f8fb;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.section-heading h2 {
    margin-top: 0.85rem;
    font-size: 2.35rem;
    color: var(--ink-color);
}

.section-heading p {
    color: var(--muted-ink);
}

.premium-grid,
.workflow-grid,
.role-grid,
.support-route-grid,
.pricing-proof-grid,
.faq-grid,
.download-info-grid,
.contact-path-grid,
.comparison-grid {
    display: grid;
    gap: 1rem;
}

.workflow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.role-grid,
.support-route-grid,
.pricing-proof-grid,
.download-info-grid,
.contact-path-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-info-grid.single-column {
    grid-template-columns: 1fr;
}

.premium-card,
.workflow-card,
.role-card,
.support-route-card,
.pricing-proof-card,
.faq-card,
.download-info-card,
.contact-path-card,
.comparison-card,
body:not([data-super-admin-page]) .glass-card,
body:not([data-super-admin-page]) .manual-card,
body:not([data-super-admin-page]) .manual-callout,
body:not([data-super-admin-page]) .faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(22, 32, 51, 0.08);
}

.workflow-card,
.role-card,
.support-route-card,
.pricing-proof-card,
.faq-card,
.download-info-card,
.contact-path-card,
.comparison-card,
.premium-card {
    padding: 1.35rem;
}

.workflow-card small,
.role-card small,
.premium-meta {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.workflow-card h3,
.role-card h3,
.support-route-card h3,
.pricing-proof-card h3,
.faq-card h3,
.download-info-card h3,
.contact-path-card h3,
.comparison-card h3 {
    color: var(--ink-color);
    font-size: 1.1rem;
}

.workflow-card p,
.role-card p,
.support-route-card p,
.pricing-proof-card p,
.faq-card p,
.download-info-card p,
.contact-path-card p,
.comparison-card p {
    margin-bottom: 0;
    color: var(--muted-ink);
    font-size: 0.98rem;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 3rem;
    align-items: center;
}

.two-column.reverse {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.copy-list,
.premium-check-list,
.features-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
}

.copy-list li,
.premium-check-list li,
.features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--muted-ink);
}

.copy-list li::before,
.premium-check-list li::before,
.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary-color);
}

.feature-list li span {
    display: none;
}

.mini-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.mini-stat {
    min-width: 140px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
}

.mini-stat strong {
    display: block;
    color: var(--ink-color);
    font-size: 1.35rem;
}

.mini-stat span {
    color: var(--muted-ink);
    font-size: 0.85rem;
}

.product-showcase {
    display: grid;
    gap: 1rem;
}

.product-showcase .product-frame {
    box-shadow: 0 18px 42px rgba(22, 32, 51, 0.13);
}

.premium-cta {
    padding: 56px 0;
    background: #162033;
    color: #ffffff;
}

.premium-cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
}

.premium-cta h2,
.premium-cta p {
    color: #ffffff;
}

.premium-cta p {
    opacity: 0.78;
    margin-bottom: 0;
}

body:not([data-super-admin-page]) .generic-hero,
.features-hero,
.pricing-hero,
.contact-hero,
.compliance-hero {
    padding: 132px 0 54px;
    text-align: center;
    background: #f7fbfc;
    border-bottom: 1px solid var(--border-color);
}

body:not([data-super-admin-page]) .generic-hero h1,
.features-hero h1,
.pricing-hero h1,
.contact-hero h1,
.compliance-hero h1 {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-size: 3rem;
    color: var(--ink-color);
}

body:not([data-super-admin-page]) .generic-hero .premium-eyebrow,
.features-hero .premium-eyebrow,
.pricing-hero .premium-eyebrow,
.contact-hero .premium-eyebrow,
.compliance-hero .premium-eyebrow {
    margin-left: auto;
    margin-right: auto;
}

body:not([data-super-admin-page]) .generic-hero p,
.features-hero p,
.pricing-hero p,
.contact-hero p,
.compliance-hero p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted-ink);
}

.feature-detail-row {
    gap: 3rem;
    padding: 64px 0;
}

.feature-visual {
    border-radius: 8px;
    border-color: var(--border-color);
    box-shadow: 0 18px 42px rgba(22, 32, 51, 0.13);
}

.pricing-grid {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem 0 2.5rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 8px;
    background: #ffffff;
    border-color: var(--border-color);
    box-shadow: 0 14px 32px rgba(22, 32, 51, 0.08);
}

.pricing-card.popular {
    background: #f0fbf8;
    border-color: rgba(15, 118, 110, 0.34);
}

.popular-badge {
    background: #b45309;
    border-radius: 999px;
}

.price {
    color: var(--ink-color);
    letter-spacing: 0;
}

.price-alt {
    color: var(--muted-ink);
    min-height: 24px;
}

.pricing-card .features-list {
    margin-top: 1.5rem;
    flex: 1;
}

.pricing-card [data-plan-cta] {
    margin-top: auto;
    width: 100%;
}

.download-checksum {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.help-layout {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.help-sidebar {
    flex: 0 0 250px;
    position: sticky;
    top: 100px;
    height: max-content;
}

.help-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(22, 32, 51, 0.08);
}

.help-sidebar li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--muted-ink);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.help-sidebar li a:hover,
.help-sidebar li a.active {
    color: var(--primary-color);
    background: #f0fbf8;
}

.help-content {
    flex: 1;
}

.faq-category {
    margin-bottom: 4rem;
    scroll-margin-top: 120px;
}

.faq-category h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.faq-item {
    margin-bottom: 2rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    box-shadow: 0 14px 32px rgba(22, 32, 51, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(22, 32, 51, 0.12);
    border-color: rgba(15, 118, 110, 0.34);
}

.faq-item h3 {
    color: var(--ink-color);
    margin-bottom: 1rem;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-item p,
.faq-item ul {
    color: var(--muted-ink);
}

.faq-item p {
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-item ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.faq-item li {
    margin-bottom: 0.5rem;
}

.pricing-footnote {
    max-width: 900px;
    margin: 0 auto;
    color: var(--muted-ink);
}

.checkout-dialog-card,
.download-box,
.contact-form,
.compliance-card,
.data-flow-section,
.step-box,
.manual-sidebar,
.manual-table-wrap {
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 14px 32px rgba(22, 32, 51, 0.08);
}

.checkout-dialog {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(22, 32, 51, 0.58);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.checkout-dialog[hidden] {
    display: none;
}

.checkout-dialog-card {
    width: min(100%, 540px);
    padding: 2rem;
}

.checkout-form-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.checkout-title {
    margin-top: 1rem;
}

.checkout-term {
    margin-top: 0.75rem;
    color: var(--muted-ink);
}

.checkout-form-grid label,
.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--muted-ink);
    font-size: 0.94rem;
    font-weight: 600;
}

.checkout-form-status,
[data-contact-status] {
    min-height: 24px;
    margin-top: 1rem;
    color: var(--muted-ink);
}

.checkout-form-status[data-state="error"],
[data-contact-status][data-state="error"] {
    color: #b91c1c;
}

[data-contact-status][data-state="success"] {
    color: #047857;
}

.checkout-form-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-control,
.checkout-form-grid input,
.checkout-form-grid select {
    width: 100%;
    padding: 0.85rem 1rem;
    font: inherit;
}

textarea.form-control {
    min-height: 132px;
    resize: vertical;
}

.checkout-dialog-card {
    background: #ffffff;
}

.checkout-form-grid input,
.checkout-form-grid select,
.form-control {
    background: #ffffff;
    color: var(--ink-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.download-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: start;
    padding: 48px 0 72px;
}

.download-release-panel {
    display: grid;
    gap: 1rem;
}

.release-note-box {
    padding: 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #f8fafc;
}

.release-note-box p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

.download-box {
    max-width: none;
    margin: 0;
    text-align: left;
}

.download-box .btn {
    width: 100%;
}

.download-checksum {
    word-break: break-all;
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    max-width: 1160px;
    gap: 2rem;
}

.contact-form {
    padding: 2rem;
}

.contact-info,
.contact-form {
    min-width: 0;
}

.info-card {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-card:last-child {
    border-bottom: none;
}

.info-card h3 {
    color: var(--ink-color);
}

.contact-split-note {
    margin-top: 1.5rem;
    padding: 1.1rem;
    border-radius: 8px;
    background: #eef7f6;
    color: var(--muted-ink);
}

.contact-submit {
    width: 100%;
}

.compliance-hero-copy,
.flow-copy {
    color: var(--muted-ink);
}

.compliance-hero-copy {
    max-width: 760px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
}

.flow-copy {
    max-width: 600px;
    margin: 0 auto;
}

.compliance-grid {
    gap: 1rem;
}

.compliance-card:hover,
.pricing-card:hover,
.feature-visual:hover img,
.glass-card:hover {
    transform: none;
}

.flow-steps {
    gap: 1rem;
}

.step-arrow {
    color: var(--accent-color);
}

.step-box {
    width: 260px;
}

.step-box h4,
.step-box p {
    color: var(--ink-color) !important;
}

.step-box h4 {
    margin-bottom: 0.5rem;
}

.step-box p {
    margin: 0;
    font-size: 0.9rem;
}

.manual-chip,
.manual-sidebar a,
.help-sidebar li a {
    color: var(--muted-ink);
}

.manual-shot-frame,
.manual-sidebar,
.manual-card,
.manual-callout,
.manual-step-panel,
.manual-toc,
.manual-table-wrap,
.help-sidebar ul,
.faq-item {
    border-radius: 8px;
}

.help-layout {
    padding-top: 56px;
}

.help-layout,
.manual-shell {
    background: #ffffff;
}

.help-sidebar ul {
    background: #ffffff;
    border-radius: 8px;
}

.faq-category h2 {
    color: var(--ink-color);
}

.faq-item h3,
.manual-card h3,
.manual-callout h3,
.manual-step-panel h3,
.manual-toc h3 {
    color: var(--ink-color);
}

@media (max-width: 1040px) {
    .premium-hero-grid,
    .two-column,
    .two-column.reverse,
    .download-layout,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .workflow-grid,
    .proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .role-grid,
    .support-route-grid,
    .pricing-proof-grid,
    .download-info-grid,
    .contact-path-grid,
    .comparison-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .help-layout {
        flex-direction: column;
    }

    .help-sidebar {
        position: static;
        flex: none;
    }

    .help-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .help-sidebar li a {
        padding: 0.5rem 1rem;
        background: #f8fafc;
    }
}

@media (max-width: 768px) {
    body:not([data-super-admin-page]) .nav-toggle {
        background: #ffffff;
        color: var(--ink-color);
    }

    body:not([data-super-admin-page]) .nav-links {
        background: #ffffff;
    }

    .premium-hero,
    body:not([data-super-admin-page]) .generic-hero,
    .features-hero,
    .pricing-hero,
    .contact-hero,
    .compliance-hero {
        padding-top: 112px;
    }

    .premium-title,
    body:not([data-super-admin-page]) .premium-title,
    body:not([data-super-admin-page]) .generic-hero h1,
    .features-hero h1,
    .pricing-hero h1,
    .contact-hero h1,
    .compliance-hero h1 {
        font-size: 2.35rem;
    }

    .hero-proof-grid,
    .workflow-grid,
    .proof-strip,
    .role-grid,
    .support-route-grid,
    .pricing-proof-grid,
    .download-info-grid,
    .contact-path-grid,
    .comparison-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .section-band {
        padding: 52px 0;
    }

    .premium-cta-box {
        grid-template-columns: 1fr;
    }

    .premium-actions,
    .premium-cta .premium-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .premium-actions .btn,
    .premium-cta .btn {
        width: 100%;
    }
}
