/* ============================================
   SCORM License Manager — Landing Site Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    --gold: #c0a764;
    --gold-hover: #a8903e;
    --gold-light: #f5ecd3;
    --gold-dark: #8c7a3f;
    --dark: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --dark-tertiary: #3a3a3a;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --section-spacing: 5rem;
    --navbar-height: 72px;
    --transition-base: 0.3s ease;
}

/* --- Base --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
}

section {
    padding: var(--section-spacing) 0;
}

section:nth-of-type(even) {
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-heading {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    color: var(--text-primary);
}

.section-subheading {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Skip to Content --- */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 0.375rem 0.375rem;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition-base);
}

.skip-to-content:focus {
    top: 0;
    color: var(--dark);
}

/* --- Buttons --- */
.btn-gold {
    background-color: var(--gold);
    color: var(--dark);
    border: 2px solid var(--gold);
    font-weight: 600;
    padding: 0.625rem 1.75rem;
    border-radius: 0.375rem;
    transition: all var(--transition-base);
}

.btn-gold:hover,
.btn-gold:focus {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--dark);
}

.btn-gold:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 600;
    padding: 0.625rem 1.75rem;
    border-radius: 0.375rem;
    transition: all var(--transition-base);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
    background-color: var(--gold);
    color: var(--dark);
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    padding: 0.625rem 1.75rem;
}

/* --- Navbar --- */
.navbar-landing {
    background-color: transparent;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
    padding: 1rem 0;
    z-index: 1030;
}

.navbar-landing.navbar-scrolled {
    background-color: var(--dark) !important;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-landing .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: none;
}

.navbar-landing .navbar-brand img {
    height: 36px;
    width: auto;
}

.navbar-landing .navbar-brand .brand-text {
    color: var(--gold);
    letter-spacing: 0.5px;
}

.navbar-landing .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition-base);
}

.navbar-landing .nav-link:hover,
.navbar-landing .nav-link:focus {
    color: var(--gold);
}

.navbar-landing .btn-login {
    background-color: var(--gold);
    color: var(--dark);
    font-weight: 600;
    padding: 0.4rem 1.25rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color var(--transition-base);
    border: none;
    margin-left: 0.5rem;
}

.navbar-landing .btn-login:hover {
    background-color: var(--gold-hover);
    color: var(--dark);
}

/* --- Hero --- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #111111 0%, var(--dark-secondary) 50%, #111111 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--navbar-height);
}

.hero-bg-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-icons .hero-icon {
    position: absolute;
    opacity: 0.045;
    color: var(--gold);
    fill: currentColor;
}

.hero-icon--lock     { top: 12%; left: 8%;  width: 80px;  animation: heroFloat 8s ease-in-out infinite alternate; }
.hero-icon--book     { top: 20%; right: 10%; width: 90px;  animation: heroFloat 7s ease-in-out 1s infinite alternate; }
.hero-icon--cert     { bottom: 18%; left: 15%; width: 100px; animation: heroFloat 9s ease-in-out 0.5s infinite alternate; }
.hero-icon--shield   { bottom: 25%; right: 12%; width: 85px;  animation: heroFloat 6s ease-in-out 1.5s infinite alternate; }
.hero-icon--lock2    { top: 55%; left: 45%;  width: 70px;  animation: heroFloat 10s ease-in-out 2s infinite alternate; }
.hero-icon--book2    { top: 8%;  left: 55%;  width: 60px;  animation: heroFloat 7.5s ease-in-out 0.8s infinite alternate; }

@keyframes heroFloat {
    0%   { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(3deg); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-title .text-gold {
    color: var(--gold);
}

.hero-tagline {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Product Description / About --- */
.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-primary);
}

.compatibility-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.compatibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--gold-light);
    color: var(--gold-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- Animated SVG Diagram --- */
.diagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-flow-svg {
    width: 100%;
    max-width: 560px;
    height: auto;
}

.auth-flow-svg .node-rect {
    fill: var(--bg-white);
    stroke: var(--border-color);
    stroke-width: 2;
    rx: 12;
    transition: stroke var(--transition-base);
}

.auth-flow-svg .node-rect--active {
    stroke: var(--gold);
}

.auth-flow-svg .node-icon {
    fill: var(--gold);
}

.auth-flow-svg .node-label {
    fill: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    text-anchor: middle;
    font-family: inherit;
}

.auth-flow-svg .node-sublabel {
    fill: var(--text-secondary);
    font-size: 10px;
    text-anchor: middle;
    font-family: inherit;
}

.auth-flow-svg .flow-path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2.5;
    stroke-linecap: round;
}

.auth-flow-svg .flow-arrow {
    fill: var(--gold);
}

/* Diagram animation states */
.auth-flow-svg .node-group {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.auth-flow-svg .flow-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 0.8s ease;
}

.auth-flow-svg.is-visible .node-group:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
}

.auth-flow-svg.is-visible .flow-path:nth-of-type(1) {
    stroke-dashoffset: 0;
    transition-delay: 0.4s;
}

.auth-flow-svg.is-visible .node-group:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.auth-flow-svg.is-visible .flow-path:nth-of-type(2) {
    stroke-dashoffset: 0;
    transition-delay: 1.3s;
}

.auth-flow-svg.is-visible .node-group:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.8s;
}

/* Continuous pulse after initial animation */
.auth-flow-svg.is-visible .flow-path {
    animation: pathPulse 2s ease-in-out 2.5s infinite alternate;
}

@keyframes pathPulse {
    0%   { stroke-opacity: 1; }
    100% { stroke-opacity: 0.5; }
}

/* --- How It Works --- */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-connector {
    display: none;
}

/* --- Feature Cards --- */
.feature-card {
    background: var(--bg-white);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.625rem;
    background-color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold-dark);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.925rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Pricing --- */
.pricing-toggle-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.pricing-toggle-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-base);
}

.pricing-toggle-label.active {
    color: var(--text-primary);
}

.pricing-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    background-color: var(--border-color);
    border-radius: 14px;
    cursor: pointer;
    transition: background-color var(--transition-base);
    border: none;
    padding: 0;
}

.pricing-toggle[aria-checked="true"] {
    background-color: var(--gold);
}

.pricing-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition-base);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.pricing-toggle[aria-checked="true"]::after {
    transform: translateX(24px);
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.pricing-card--featured {
    border-color: var(--gold);
    position: relative;
}

.pricing-card--featured .pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 0.25rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.price-display {
    margin-bottom: 1.75rem;
}

.price-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-amount .price-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.price-original {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    display: none;
    margin-top: 0.25rem;
}

.price-discount {
    display: none;
    background-color: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    margin-top: 0.5rem;
    width: fit-content;
}

/* Annual billing active states */
.billing-annual .price-original {
    display: block;
}

.billing-annual .price-discount {
    display: inline-block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.925rem;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-compare-link {
    text-align: center;
    margin-top: 2.5rem;
}

.pricing-compare-link a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pricing-compare-link a:hover {
    color: var(--gold-hover);
}

/* --- SCORM Cloud Comparison Placeholder --- */
.comparison-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-white);
    border: 2px dashed var(--border-color);
    border-radius: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-placeholder p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

/* --- FAQ Accordion --- */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-white);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bg-white);
    color: var(--gold-dark);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(192, 167, 100, 0.25);
    border-color: var(--gold);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c0a764'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-accordion .accordion-body strong {
    color: var(--text-primary);
}

.faq-accordion .accordion-body ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

.faq-accordion .accordion-body ul li {
    margin-bottom: 0.5rem;
}

/* --- Contact Form --- */
.contact-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    color: var(--text-light);
}

.contact-section .section-heading {
    color: var(--text-light);
}

.contact-section .section-subheading {
    color: rgba(255, 255, 255, 0.65);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.4rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    padding: 0.65rem 0.875rem;
    border-radius: 0.375rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(192, 167, 100, 0.25);
    color: var(--text-light);
}

.contact-form .form-select option {
    background-color: var(--dark);
    color: var(--text-light);
}

.contact-form .invalid-feedback {
    color: #fca5a5;
}

.contact-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}

.contact-success.show {
    display: block;
}

.contact-success svg {
    width: 64px;
    height: 64px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-success h3 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.contact-success p {
    color: rgba(255, 255, 255, 0.65);
}

/* --- Footer --- */
.footer-landing {
    background-color: #111111;
    color: rgba(255, 255, 255, 0.6);
    padding: 2rem 0;
    font-size: 0.875rem;
}

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

.footer-landing a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

/* --- Plan Comparison Table (plans.html) --- */
.comparison-table-wrapper {
    margin-bottom: 2rem;
    /* overflow-x only on small screens — overflow on ancestors breaks position:sticky */
}

@media (max-width: 767.98px) {
    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .comparison-table thead {
        position: static;
    }
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 650px;
}

.comparison-table thead {
    position: sticky;
    top: calc(var(--navbar-height) - 1px);
    z-index: 10;
}

.comparison-table thead.unstuck {
    position: static;
}

/* Add spacing between thead and first body row */
/* .comparison-table tbody tr:first-child td {
    padding-top: 1rem;
} */

.comparison-table thead th {
    background-color: var(--dark);
    color: var(--text-light);
    font-weight: 700;
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 1.05rem;
    border-bottom: 3px solid var(--gold);
}

.comparison-table thead th:first-child {
    text-align: left;
    border-top-left-radius: 0.5rem;
}

.comparison-table thead th:last-child {
    border-top-right-radius: 0.5rem;
}

.comparison-table thead th.plan-featured {
    background-color: var(--dark-secondary);
    position: relative;
}

.comparison-table tbody td {
    padding: 0.875rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.925rem;
    color: var(--text-secondary);
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    text-align: left;
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-table .section-header-row {
    cursor: pointer;
    user-select: none;
}

.comparison-table .section-header-row td {
    background-color: var(--bg-light);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table .section-header-row .section-header-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-chevron {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.section-header-row.collapsed .section-chevron {
    transform: rotate(-90deg);
}

.comparison-check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-dash {
    color: var(--border-color);
    font-size: 1.2rem;
}

.comparison-table .feature-tooltip {
    border-bottom: 1px dashed var(--text-secondary);
    cursor: help;
}

.comparison-table .price-row td {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.comparison-table .price-row .price-annual-note {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grids */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .hero-icon {
        animation: none !important;
    }

    .auth-flow-svg .node-group {
        opacity: 1;
        transform: none;
    }

    .auth-flow-svg .flow-path {
        stroke-dashoffset: 0;
        animation: none !important;
    }
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    :root {
        --section-spacing: 4rem;
    }

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

    .hero-tagline {
        font-size: 1.15rem;
    }

    .section-heading {
        font-size: 1.9rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-spacing: 3rem;
        --navbar-height: 60px;
    }

    .hero-section {
        min-height: auto;
        padding: 8rem 0 5rem;
    }

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

    .hero-logo {
        height: 44px;
    }

    .section-heading {
        font-size: 1.65rem;
    }

    .section-subheading {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }

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

    .step-connector {
        display: none;
    }
}

@media (min-width: 992px) {
    .step-connector {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 1.5rem;
        opacity: 0.5;
    }
}

/* --- Plans page specific --- */
.plans-hero {
    background: linear-gradient(135deg, #111111 0%, var(--dark-secondary) 100%);
    padding: calc(var(--navbar-height) + 3rem) 0 3rem;
    text-align: center;
}

.plans-hero h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.plans-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
}
