/* Gestor de Senhas — Programa Piloto | GuiDev Studio */

:root {
    --bg-dark: #0a0e17;
    --bg-mid: #121a2b;
    --bg-card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(0, 212, 255, 0.25);
    --cyan: #00d4ff;
    --cyan-soft: #7be6ff;
    --cyan-dark: #0099cc;
    --text: #ffffff;
    --text-muted: #a0aec0;
    --text-soft: #c8d4e0;
    --success: #27ca3f;
    --warning: #ffbd2e;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 10px 40px rgba(0, 212, 255, 0.15);
    --nav-height: 72px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 16px);
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(1.85rem, 4.5vw, 2.75rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cyan-soft);
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 14, 23, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo .logo-main {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cyan);
}

.nav-logo .logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-soft);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--cyan);
}

.nav-cta {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: inherit;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
}

.btn-secondary:hover {
    background: var(--cyan);
    color: #fff;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1fb855;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero */
.hero {
    padding: calc(var(--nav-height) + 32px) 0 56px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 20%, rgba(0, 212, 255, 0.08), transparent),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0, 153, 204, 0.06), transparent);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-accent);
    color: var(--cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    background: linear-gradient(135deg, var(--cyan) 0%, #fff 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.75rem;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-soft);
}

.benefit-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(var(--shadow-glow));
}

/* Sections */
.section {
    padding: 72px 0;
}

.section-alt {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.section-header .section-subtitle {
    font-size: 1.05rem;
}

.section-title {
    color: var(--text);
}

/* Cards grid */
.cards-grid {
    display: grid;
    gap: 20px;
}

.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.85rem;
}

.card h3 {
    color: var(--text);
    margin-bottom: 8px;
}

.card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.card-visual {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Problem cards */
.problem-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.problem-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 95, 86, 0.15);
    color: #ff6b6b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Feature list */
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--cyan);
    font-weight: 700;
    flex-shrink: 0;
}

/* Equipment */
.equipment-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.equipment-item:last-child {
    margin-bottom: 0;
}

.equipment-label {
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.85rem;
    min-width: 140px;
    text-align: center;
}

.equipment-note {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: rgba(255, 189, 46, 0.08);
    border: 1px solid rgba(255, 189, 46, 0.2);
    color: var(--text-soft);
    font-size: 0.95rem;
}

/* Pilot section */
.pilot-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    margin: 24px 0;
}

.pilot-benefits li {
    display: flex;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.pilot-benefits li::before {
    content: '→';
    color: var(--cyan);
    font-weight: 700;
}

.alert-box {
    padding: 20px 24px;
    border-radius: var(--radius);
    background: rgba(255, 189, 46, 0.08);
    border: 1px solid rgba(255, 189, 46, 0.25);
    margin-top: 24px;
}

.alert-box strong {
    color: var(--warning);
    display: block;
    margin-bottom: 8px;
}

.alert-box p {
    margin-bottom: 0;
    color: var(--text-soft);
}

/* Validation list */
.validation-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    list-style: none;
}

.validation-list li {
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-soft);
    font-size: 0.9rem;
    text-align: center;
}

/* License key */
.license-demo {
    margin: 28px 0;
    padding: 28px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    text-align: center;
}

.license-key {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: var(--cyan);
    letter-spacing: 2px;
    padding: 16px 24px;
    background: rgba(0, 212, 255, 0.06);
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.license-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.license-points li {
    color: var(--text-soft);
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.license-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

/* Manual & videos */
.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.docs-box {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.docs-box h3 {
    color: var(--cyan);
    margin-bottom: 12px;
}

.video-list {
    list-style: none;
}

.video-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 0.95rem;
}

.video-list li:last-child {
    border-bottom: none;
}

/* Form */
.form-section {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.04) 0%, transparent 100%);
}

.interest-form {
    max-width: 640px;
    margin: 0 auto;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff6b6b;
}

.form-error {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.form-actions .btn {
    width: 100%;
}

.form-divider {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 8px 0;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

.form-note a {
    text-decoration: underline;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question:hover {
    color: var(--cyan);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA final */
.cta-final {
    text-align: center;
    padding: 80px 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 212, 255, 0.1), transparent),
        rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--border);
}

.cta-final .section-header {
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Footer */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text);
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-section p,
.footer-section li {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.pilot-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 189, 46, 0.15);
    color: var(--warning);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    color: #fff;
}

/* Legal & thank you pages */
.page-legal,
.page-thanks {
    padding: calc(var(--nav-height) + 40px) 0 80px;
    min-height: 100vh;
}

.legal-card,
.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.legal-card h1,
.thanks-card h1 {
    color: var(--text);
}

.legal-card h2 {
    margin-top: 32px;
    font-size: 1.3rem;
    color: var(--text);
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}

.legal-card li {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.thanks-card {
    text-align: center;
}

.thanks-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(39, 202, 63, 0.15);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.thanks-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

/* Two column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hidden {
    display: none;
}

/* Included items */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.included-item {
    position: relative;
    padding-top: 28px;
}

.included-number {
    position: absolute;
    top: -14px;
    left: 20px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.included-item h3 {
    color: var(--text);
    margin-bottom: 8px;
}

.included-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Pilot understand list */
.pilot-understand-list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.pilot-understand-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-soft);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pilot-understand-list li:last-child {
    border-bottom: none;
}

.pilot-understand-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--warning);
    font-weight: 700;
}

/* Pricing */
.pricing-card {
    max-width: 420px;
    margin: 0 auto;
    padding: 36px 32px;
    background: var(--bg-card);
    border: 2px solid var(--border-accent);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.pricing-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.price-amount {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-includes {
    list-style: none;
    text-align: left;
    margin: 0 0 28px;
    padding: 0;
}

.pricing-includes li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-soft);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.pricing-includes li:last-child {
    border-bottom: none;
}

.pricing-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-disclaimer {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Audience */
.audience-card .card-icon {
    font-size: 0.75rem;
}

/* Not for list */
.not-for-list {
    max-width: 640px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.not-for-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    background: rgba(255, 95, 86, 0.06);
    border: 1px solid rgba(255, 95, 86, 0.2);
    border-radius: 12px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.not-for-list li::before {
    content: '✕';
    flex-shrink: 0;
    color: #ff6b6b;
    font-weight: 700;
}

/* Steps */
.steps-list {
    max-width: 640px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    counter-reset: steps;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.step-item:last-child {
    border-bottom: none;
}

.step-item .step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.step-item p {
    margin: 0;
    padding-top: 6px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.step-item strong {
    color: var(--text);
}

/* Thanks page */
.thanks-page-content {
    max-width: 720px;
}

.thanks-hero {
    text-align: center;
    margin-bottom: 40px;
}

.thanks-hero h1 {
    color: var(--text);
}

.thanks-hero p {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-block {
    margin-bottom: 32px;
}

.thanks-block .section-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.thanks-alert {
    margin-bottom: 32px;
}

.thanks-alert p {
    margin-bottom: 12px;
    color: var(--text-soft);
}

.checkout-note {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
}

.subscription-badge {
    display: block;
    margin-bottom: 12px;
}

.subscription-note {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.55;
    margin-bottom: 20px;
    text-align: left;
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}
