:root {
    --font-hostinger-sans: "DM Sans";
    --font-sans: var(--font-hostinger-sans), "DM Sans", ui-sans-serif, system-ui, sans-serif;
    --font-display: var(--font-sans);

    /* Primary Colors */
    --color-navy: #0F172A;
    --color-blue: #2563EB;
    --color-teal: #14B8A6;
    
    /* Secondary Colors */
    --color-purple: #8B5CF6;
    --color-gold: #F59E0B;
    --color-gray-light: #F0F4F9;
    --color-white: #FFFFFF;

    /* Semantic Variables */
    --color-primary: var(--color-blue);
    --color-primary-hover: #1D4ED8;
    --color-secondary: var(--color-gray-light);
    --color-text-main: var(--color-navy);
    --color-text-muted: #64748B;
    --color-background: var(--color-white);
    --color-background-alt: var(--color-gray-light);
    --color-border: #E2E8F0;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px -5px rgba(15, 23, 42, 0.12), 0 10px 20px -5px rgba(15, 23, 42, 0.04);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.2s;
}

a:hover {
    color: var(--color-primary-hover);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1rem;
    letter-spacing: 0;
}

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

/* Promotion Banner */
.launch-promo-banner {
    background:
        radial-gradient(circle at 18% 0%, rgba(96, 165, 250, 0.42), transparent 18rem),
        linear-gradient(100deg, #081225 0%, #15316a 45%, #2563eb 100%);
    border-bottom: 1px solid rgba(219, 234, 254, 0.42);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
    color: #ffffff;
    position: relative;
    z-index: 160;
}

.launch-promo-banner__inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    min-height: 42px;
    padding: 8px 31px;
    text-align: center;
}

.launch-promo-banner__badge {
    background: rgba(219, 234, 254, 0.16);
    border: 1px solid rgba(219, 234, 254, 0.48);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    color: #eff6ff;
    font-size: 0.78rem;
    font-weight: 850;
    padding: 5px 10px;
    white-space: nowrap;
}

.launch-promo-banner__copy {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px 8px;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.25;
}

.launch-promo-banner__copy strong {
    color: #ffffff;
    font-weight: 900;
}

.launch-promo-banner__price {
    color: #ffffff;
    font-size: 1em;
}

.launch-promo-banner__price .hdl-promo-price__regular,
.launch-promo-banner__price .hdl-promo-price__suffix {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1em;
}

.launch-promo-banner__price .hdl-promo-price__launch {
    color: #ffffff;
    font-size: 1.18em;
}

.launch-promo-banner__link {
    border-bottom: 1px solid currentColor;
    color: #bfdbfe;
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1.2;
    white-space: nowrap;
}

.launch-promo-banner__link:hover {
    color: #ffffff;
}

.hdl-promo-price {
    align-items: baseline;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px 9px;
    line-height: 1.05;
}

.hdl-promo-price__line {
    align-items: baseline;
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 6px;
}

.hdl-promo-price__regular {
    color: #64748b;
    font-size: 0.7em;
    font-weight: 800;
    text-decoration-color: currentColor;
    text-decoration-thickness: 2px;
}

.hdl-promo-price__launch {
    color: currentColor;
    font-size: 1em;
    font-weight: 900;
}

.hdl-promo-price__suffix {
    color: currentColor;
    font-size: 0.52em;
    font-weight: 850;
}

.hdl-promo-price__code {
    color: #334155;
    display: inline-flex;
    gap: 4px;
    font-size: 0.34em;
    font-weight: 850;
    line-height: 1.2;
}

.hdl-promo-price__code strong {
    color: var(--color-blue);
    font-weight: 900;
}

/* Header/Navbar */
.site-header {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.78);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header > .container {
    max-width: none;
    padding: 0 31px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    gap: 22px;
    position: relative;
}

.brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.brand svg {
    color: var(--color-blue);
}

.brand-logo {
    display: block;
    width: auto;
    height: 31px;
    max-width: min(230px, 42vw);
    object-fit: contain;
}

.brand-logo--dark {
    display: none;
}

.marketing-page {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 34rem),
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.08), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 42%, #f8fafc 100%);
}

.marketing-page .section {
    background: transparent !important;
    padding: 48px 0 84px;
}

.marketing-hero {
    max-width: 670px;
    margin: 0 0 56px;
    text-align: left;
}

.marketing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.marketing-hero h1 {
    color: var(--color-navy);
    font-size: clamp(2.19rem, 4.05vw, 3.53rem);
    line-height: 1.04;
    letter-spacing: 0;
    margin: 0 0 14px;
}

.marketing-hero p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.68;
    max-width: 650px;
    margin: 0;
}

.marketing-hero__note {
    margin-top: 12px !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
}

.marketing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
    margin-top: 24px;
}

.marketing-hero__actions .btn {
    min-height: 52px;
    border-radius: 12px;
    font-weight: 800;
}

.pricing-page .nav-links a[href="/pricing"] {
    color: var(--color-blue);
    position: relative;
}

.pricing-page .nav-links a[href="/pricing"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-blue);
}

.pricing-page .section {
    background:
        radial-gradient(circle at 12% 0%, rgba(37, 99, 235, .10), transparent 26rem),
        radial-gradient(circle at 90% 18%, rgba(139, 92, 246, .08), transparent 26rem),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 46%, #ffffff 100%) !important;
    border-bottom: 1px solid rgba(219, 231, 246, .7);
    padding-top: 48px;
}

.pricing-page .marketing-hero {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 44px;
}

.nav-links {
    display: flex;
    gap: clamp(12px, 1.7vw, 24px);
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--color-navy);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links a.nav-item {
    color: #334155;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.nav-links a.nav-item:hover {
    color: var(--color-blue);
}

.nav-cta {
    min-height: 42px;
    padding: 9px 16px;
    border-radius: 7px;
    white-space: nowrap;
    font-size: 0.96rem;
}

.site-header .nav-cta {
    font-size: 0.96rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: var(--color-background-alt);
    color: var(--color-navy) !important;
}

.btn-secondary:hover {
    background-color: #E2E8F0;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-navy) !important;
}

.btn-outline:hover {
    border-color: var(--color-text-muted);
    background-color: var(--color-background-alt);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: left;
    background: linear-gradient(180deg, var(--color-gray-light) 0%, var(--color-white) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(2.7rem, 5.4vw, 4.05rem);
    letter-spacing: 0;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Card Decorators */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-border);
    transition: background 0.3s ease;
}

.card.card-blue::before { background: var(--color-blue); }
.card.card-teal::before { background: var(--color-teal); }
.card.card-purple::before { background: var(--color-purple); }
.card.card-gold::before { background: var(--color-gold); }

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-blue .card-icon { background: rgba(37, 99, 235, 0.1); color: var(--color-blue); }
.card-teal .card-icon { background: rgba(20, 184, 166, 0.1); color: var(--color-teal); }
.card-purple .card-icon { background: rgba(139, 92, 246, 0.1); color: var(--color-purple); }
.card-gold .card-icon { background: rgba(245, 158, 11, 0.1); color: var(--color-gold); }


.card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.card-desc {
    color: var(--color-text-muted);
    margin-bottom: 32px;
    flex-grow: 1;
    font-size: 1.05rem;
}

.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.card-actions .btn {
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 24px;
    width: fit-content;
}

.badge-free {
    background-color: rgba(20, 184, 166, 0.1);
    color: var(--color-teal);
}

.badge-paid {
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--color-purple);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--color-gray-light);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--color-navy);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 64px;
}

/* Auth Forms */
.auth-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: var(--color-gray-light);
}

.auth-card {
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 480px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-navy);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.auth-google-block {
    margin-bottom: 24px;
}

.auth-google-button {
    min-height: 44px;
}

.auth-divider {
    align-items: center;
    color: var(--color-text-muted);
    display: grid;
    font-size: 0.85rem;
    font-weight: 700;
    gap: 12px;
    grid-template-columns: 1fr auto 1fr;
    margin-top: 22px;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    background: var(--color-border);
    content: "";
    height: 1px;
}

/* Footer */
.site-footer {
    background:
        radial-gradient(circle at 8% 0%, rgba(37, 99, 235, .16), transparent 26rem),
        linear-gradient(135deg, #071323 0%, #0f172a 62%, #08111f 100%);
    color: #94A3B8;
    padding: 48px 0 24px;
    margin-top: 56px;
}

.site-footer > .container {
    max-width: none;
    padding: 0 31px;
}

.site-footer .brand {
    color: var(--color-white);
    margin-bottom: 12px;
}

.site-footer .brand-logo {
    height: 31px;
    max-width: 180px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) repeat(4, minmax(108px, .62fr)) minmax(220px, .85fr);
    gap: clamp(18px, 3vw, 44px);
    align-items: start;
}

.footer-brand p {
    color: #cbd5e1;
    font-size: .7rem;
    line-height: 1.55;
    margin: 0 0 16px;
}

.footer-column {
    display: grid;
    gap: 8px;
}

.footer-column h2 {
    color: #cbd5e1;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.footer-column a {
    color: #cbd5e1;
    font-size: .7rem;
    line-height: 1.45;
}

.footer-column a:hover {
    color: #fff;
}

.footer-newsletter {
    display: grid;
    gap: 8px;
    max-width: 260px;
    justify-self: end;
}

.footer-newsletter h2 {
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

.footer-newsletter p {
    color: #cbd5e1;
    font-size: .7rem;
    line-height: 1.45;
    margin: 0;
}

.footer-newsletter form {
    margin-top: 4px;
}

.footer-newsletter__field {
    min-height: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    border: 1px solid rgba(203, 213, 225, .72);
    border-radius: 8px;
    background: rgba(15, 23, 42, .1);
}

.footer-newsletter input {
    min-width: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: .72rem;
    padding: 0 10px;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: #cbd5e1;
}

.footer-newsletter button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.footer-newsletter button:disabled {
    cursor: wait;
    opacity: .72;
}

.footer-newsletter svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-newsletter__message {
    min-height: 1em;
    color: #86efac;
    font-weight: 700;
}

.footer-newsletter__message.is-error {
    color: #fecaca;
}

.footer-disclaimer {
    max-width: 760px;
    color: #94a3b8;
    font-size: .7rem;
    line-height: 1.5;
    margin: 30px auto 0;
    text-align: center;
}

.footer-copyright {
    color: #64748b;
    font-size: .7rem;
    margin: 12px 0 0;
    text-align: center;
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: var(--color-gray-light);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 24px;
    color: var(--color-text-muted);
    background: var(--color-white);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

@media (max-width: 1020px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-newsletter {
        justify-self: start;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .launch-promo-banner__inner {
        gap: 6px 10px;
        min-height: auto;
        padding: 7px 14px;
    }

    .launch-promo-banner__badge {
        font-size: 0.68rem;
        padding: 4px 8px;
    }

    .launch-promo-banner__copy {
        font-size: 0.78rem;
        line-height: 1.22;
    }

    .launch-promo-banner__link {
        font-size: 0.78rem;
    }

    .site-header > .container {
        padding: 0 18px;
    }

    .brand-logo {
        height: 30px;
        max-width: 58vw;
    }

    .navbar {
        gap: 16px;
    }

    .nav-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 120;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(219, 231, 246, 0.95);
        border-radius: 10px;
        box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a.nav-item,
    .nav-links .nav-cta {
        width: 100%;
        min-height: 44px;
        justify-content: flex-start;
        padding: 12px 14px;
        font-size: .94rem;
        color: var(--color-navy);
        border-radius: 7px;
    }

    .nav-links.is-open a.nav-item {
        color: var(--color-navy) !important;
        background: transparent;
    }

    .nav-links a.nav-item:hover {
        color: var(--color-blue) !important;
        background: rgba(37, 99, 235, 0.07);
    }

    .nav-links .nav-cta {
        justify-content: center;
        margin-top: 4px;
        color: #ffffff !important;
    }

    .pricing-page .nav-links a[href="/pricing"] {
        color: var(--color-blue) !important;
        background: rgba(37, 99, 235, .07);
    }

    .pricing-page .nav-links a[href="/pricing"]::after {
        display: none;
    }

    .marketing-hero {
        text-align: left;
        margin-bottom: 34px;
    }

    .marketing-hero h1 {
        font-size: clamp(2.25rem, 10vw, 3.1rem);
    }

    .marketing-hero p {
        margin-left: 0;
        margin-right: 0;
        font-size: 1.02rem;
    }

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

    .footer-disclaimer {
        text-align: left;
    }
    
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .card-actions .btn {
        width: 100%;
    }
}
