/* ==========================================================================
   UNIPREP BRIDGE - PUBLIC PAGES STYLESHEET
   Modern, distinctive design with "Aspirational Momentum" aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
    /* Primary Palette - Deep Navy Trust */
    --navy-950: #0a0f1a;
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    --navy-600: #475569;
    --navy-500: #64748b;

    /* Accent Palette - Vibrant Coral Energy */
    --coral-500: #ff6b4a;
    --coral-400: #ff8066;
    --coral-300: #ffa094;
    --coral-glow: rgba(255, 107, 74, 0.4);

    /* Secondary - Warm Amber Achievement */
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-glow: rgba(245, 158, 11, 0.3);

    /* Success - Teal Growth */
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --teal-glow: rgba(20, 184, 166, 0.3);

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--navy-900) 0%, #1a1f35 50%, var(--navy-800) 100%);
    --gradient-coral: linear-gradient(135deg, var(--coral-500) 0%, #ff8855 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-card-hover: linear-gradient(180deg, rgba(255,107,74,0.08) 0%, rgba(255,107,74,0) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-glow-coral: 0 0 40px var(--coral-glow);
    --shadow-glow-teal: 0 0 30px var(--teal-glow);

    /* Spacing */
    --section-padding: 6rem;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

.public-page {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--navy-800);
    line-height: 1.6;
    overflow-x: hidden;
}

.public-page h1,
.public-page h2,
.public-page h3,
.public-page h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.display-hero {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

.display-section {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.text-gradient {
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted-light {
    color: var(--gray-400);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-500);
}

/* --------------------------------------------------------------------------
   LAYOUT BASE
   -------------------------------------------------------------------------- */
.public-page body {
    background: var(--gray-50);
    min-height: 100vh;
}

.public-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.public-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.public-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.public-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-coral);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-coral);
    transition: transform var(--transition-base);
}

.nav-brand:hover .nav-brand-icon {
    transform: scale(1.05) rotate(-3deg);
}

.nav-brand-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.nav-brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition-base);
}

.public-nav.scrolled .nav-brand-text {
    color: var(--navy-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-500);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.public-nav.scrolled .nav-links a {
    color: var(--navy-600);
}

.public-nav.scrolled .nav-links a:hover {
    color: var(--coral-500);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

.public-nav.scrolled .nav-toggle span {
    background: var(--navy-900);
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all var(--transition-base);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        color: var(--navy-800);
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links a:hover {
        color: var(--coral-500);
    }

    .nav-actions .btn-text {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary-coral {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-coral);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md), 0 4px 14px rgba(255, 107, 74, 0.3);
}

.btn-primary-coral:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 25px rgba(255, 107, 74, 0.4);
    color: var(--white);
}

.btn-primary-coral:active {
    transform: translateY(0);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    color: var(--navy-600);
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--coral-500);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 5rem;
}

/* Animated background elements */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--coral-500);
    top: -200px;
    right: -150px;
    opacity: 0.15;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--teal-500);
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
    animation-delay: -5s;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--amber-500);
    top: 50%;
    left: 50%;
    opacity: 0.08;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -10px) scale(1.02); }
}

/* Wave divider */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
}

.hero-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
}

.hero-wave path {
    fill: var(--gray-50);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--coral-300);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* Hero illustration/visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-dashboard-preview {
    position: relative;
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl), 0 0 80px rgba(0, 0, 0, 0.3);
}

.hero-dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hero-dashboard-dot:nth-child(1) { background: #ff5f57; }
.hero-dashboard-dot:nth-child(2) { background: #febc2e; }
.hero-dashboard-dot:nth-child(3) { background: #28c840; }

.hero-dashboard-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    min-height: 300px;
}

.hero-score-ring {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    position: relative;
}

.hero-score-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.hero-score-ring circle {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
}

.hero-score-ring .bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.hero-score-ring .progress {
    stroke: var(--coral-500);
    stroke-dasharray: 408;
    stroke-dashoffset: 122;
    animation: scoreProgress 2s ease 1s forwards;
}

@keyframes scoreProgress {
    from { stroke-dashoffset: 408; }
    to { stroke-dashoffset: 122; }
}

.hero-score-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-score-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.hero-score-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-progress-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-progress-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-progress-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    width: 80px;
}

.hero-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.hero-progress-fill {
    height: 100%;
    border-radius: var(--radius-full);
    animation: progressFill 1.5s ease forwards;
    animation-delay: 1.2s;
    transform-origin: left;
    transform: scaleX(0);
}

.hero-progress-fill.math { background: var(--coral-500); --progress: 0.85; }
.hero-progress-fill.science { background: var(--teal-500); --progress: 0.72; }
.hero-progress-fill.english { background: var(--amber-500); --progress: 0.90; }

@keyframes progressFill {
    to { transform: scaleX(var(--progress)); }
}

/* Floating elements */
.hero-floating {
    position: absolute;
    animation: floatBadge 6s ease-in-out infinite;
}

.hero-floating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-800);
}

.hero-floating-badge svg {
    width: 20px;
    height: 20px;
}

.hero-floating-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-floating-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: -2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --------------------------------------------------------------------------
   FEATURES SECTION
   -------------------------------------------------------------------------- */
.features-section {
    background: var(--gray-50);
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-full);
    color: var(--coral-500);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--navy-900);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--gray-500);
    font-size: 1.125rem;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card-hover);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--coral-300);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-icon.coral {
    background: rgba(255, 107, 74, 0.1);
    color: var(--coral-500);
}

.feature-icon.teal {
    background: rgba(20, 184, 166, 0.1);
    color: var(--teal-500);
}

.feature-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--amber-500);
}

.feature-icon.navy {
    background: rgba(30, 41, 59, 0.1);
    color: var(--navy-700);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
    position: relative;
}

.feature-card p {
    color: var(--gray-500);
    margin: 0;
    position: relative;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   SUBJECTS SECTION
   -------------------------------------------------------------------------- */
.subjects-section {
    background: var(--white);
    padding: var(--section-padding) 0;
    position: relative;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 767px) {
    .subjects-grid {
        grid-template-columns: 1fr;
    }
}

.subject-card {
    position: relative;
    background: var(--gradient-glass);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-base);
    overflow: hidden;
}

.subject-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--subject-color);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.subject-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.subject-card:hover::before {
    transform: scaleX(1);
}

.subject-card.math { --subject-color: var(--coral-500); }
.subject-card.science { --subject-color: var(--teal-500); }
.subject-card.english { --subject-color: var(--amber-500); }

.subject-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--subject-color), rgba(var(--subject-color), 0.7));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-base);
}

.subject-card:hover .subject-icon {
    transform: rotate(-5deg) scale(1.05);
}

.subject-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.subject-card h3 {
    font-size: 1.5rem;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
}

.subject-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.subject-topic {
    padding: 0.375rem 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.subject-card:hover .subject-topic {
    background: rgba(255, 107, 74, 0.1);
    color: var(--coral-500);
}

/* --------------------------------------------------------------------------
   PRICING SECTION
   -------------------------------------------------------------------------- */
.pricing-section {
    background: var(--gray-50);
    padding: var(--section-padding) 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle-label {
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.pricing-toggle-label.active {
    color: var(--navy-900);
}

.pricing-toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition-base);
}

.pricing-toggle-switch.active {
    background: var(--coral-500);
}

.pricing-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base);
}

.pricing-toggle-switch.active::after {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 1199px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--coral-500);
    transform: scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow-coral);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gradient-coral);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.pricing-tagline {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.pricing-price {
    margin: 1.5rem 0;
}

.pricing-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 0.125rem;
}

.pricing-period {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-50);
    font-size: 0.9375rem;
    color: var(--navy-700);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-500);
}

.pricing-features .check svg {
    width: 12px;
    height: 12px;
}

.pricing-features .unavailable {
    color: var(--gray-400);
}

.pricing-features .unavailable .check {
    background: var(--gray-100);
    color: var(--gray-400);
}

.pricing-cta {
    width: 100%;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
    position: relative;
    background: var(--gradient-hero);
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--coral-500);
    top: -250px;
    right: -100px;
    opacity: 0.15;
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--teal-500);
    bottom: -200px;
    left: -100px;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   FAQ / HELP SECTION
   -------------------------------------------------------------------------- */
.help-hero {
    background: var(--gradient-hero);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.help-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--gray-50));
}

.help-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.help-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
}

.help-search {
    position: relative;
    max-width: 500px;
    margin: 2rem auto 0;
}

.help-search input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    transition: box-shadow var(--transition-base);
}

.help-search input:focus {
    outline: none;
    box-shadow: var(--shadow-xl), 0 0 0 4px rgba(255, 107, 74, 0.2);
}

.help-search svg {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gray-400);
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 767px) {
    .help-categories {
        grid-template-columns: 1fr;
    }
}

.help-category {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.help-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral-300);
}

.help-category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    transition: transform var(--transition-base);
}

.help-category:hover .help-category-icon {
    transform: scale(1.1);
}

.help-category-icon svg {
    width: 28px;
    height: 28px;
}

.help-category h3 {
    font-size: 1.125rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.help-category p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

/* FAQ Accordion */
.faq-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.faq-header h2 {
    font-size: 1.5rem;
    color: var(--navy-900);
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-100);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-800);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--coral-500);
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--coral-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 0 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.public-footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-coral);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--coral-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

@media (max-width: 575px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--coral-500);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* --------------------------------------------------------------------------
   UTILITY CLASSES
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }

/* Responsive visibility */
@media (max-width: 991px) {
    .hide-md { display: none !important; }
}

@media (max-width: 767px) {
    .hide-sm { display: none !important; }
}

/* ==========================================================================
   IDENTITY / ACCOUNT PAGES
   ========================================================================== */

.identity-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.identity-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.identity-bg-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.identity-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 74, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 40%);
}

.identity-floating-shapes {
    position: absolute;
    inset: 0;
}

.identity-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: identityFloat 20s ease-in-out infinite;
}

.identity-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--coral-500);
    top: -100px;
    right: -100px;
    opacity: 0.12;
    animation-delay: 0s;
}

.identity-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--teal-500);
    bottom: -50px;
    left: -50px;
    opacity: 0.1;
    animation-delay: -5s;
}

.identity-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--amber-500);
    top: 40%;
    left: 20%;
    opacity: 0.08;
    animation-delay: -10s;
}

@keyframes identityFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(0, 20px) scale(0.95); }
    75% { transform: translate(-20px, -10px) scale(1.02); }
}

/* Header */
.identity-header {
    position: relative;
    z-index: 100;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
}

.identity-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.identity-brand:hover {
    transform: scale(1.02);
}

.identity-brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-coral);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.4);
}

.identity-brand-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.identity-brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

/* Main Content */
.identity-main {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.identity-container {
    width: 100%;
    max-width: 460px;
}

/* Card Styles */
.identity-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.identity-card-header {
    text-align: center;
    padding: 2.5rem 2.5rem 0;
}

.identity-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-600) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
    animation: scaleIn 0.5s ease-out 0.2s both;
}

.identity-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.identity-icon.teal {
    background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.identity-icon.amber {
    background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-600) 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.identity-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.identity-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.identity-subtitle {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin: 0;
}

/* Form Styles */
.identity-card-body {
    padding: 2rem 2.5rem 2.5rem;
}

.identity-form-group {
    margin-bottom: 1.25rem;
}

.identity-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .identity-form-row {
        grid-template-columns: 1fr;
    }
}

.identity-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-700);
    margin-bottom: 0.5rem;
}

.identity-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    color: var(--navy-900);
    transition: all var(--transition-fast);
}

.identity-input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--coral-500);
    box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.1);
}

.identity-input::placeholder {
    color: var(--gray-400);
}

.identity-input.is-invalid {
    border-color: #ef4444;
}

/* Input Group for Password Toggle */
.identity-input-group {
    position: relative;
    display: flex;
}

.identity-input-group .identity-input {
    padding-right: 3rem;
}

.identity-toggle-password {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.identity-toggle-password:hover {
    color: var(--coral-500);
}

.identity-toggle-password svg {
    width: 20px;
    height: 20px;
}

/* Validation */
.identity-validation {
    font-size: 0.8125rem;
    color: #ef4444;
    margin-top: 0.375rem;
}

.identity-help-text {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
}

/* Checkbox */
.identity-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.identity-checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--coral-500);
    cursor: pointer;
}

.identity-checkbox-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    cursor: pointer;
}

.identity-checkbox-label a {
    color: var(--coral-500);
    text-decoration: none;
    font-weight: 500;
}

.identity-checkbox-label a:hover {
    text-decoration: underline;
}

/* Remember Me & Forgot Password */
.identity-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.identity-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--coral-500);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.identity-link:hover {
    color: var(--coral-600);
    text-decoration: underline;
}

/* Submit Button */
.identity-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-coral);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.identity-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 74, 0.4);
}

.identity-submit:active {
    transform: translateY(0);
}

.identity-submit svg {
    width: 20px;
    height: 20px;
}

.identity-submit.teal {
    background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.identity-submit.teal:hover {
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

.identity-submit.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.identity-submit.purple:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Divider */
.identity-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.identity-divider::before,
.identity-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.identity-divider span {
    font-size: 0.8125rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* SSO Button */
.identity-sso {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--white);
    color: var(--navy-700);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.identity-sso:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--navy-900);
}

.identity-sso svg {
    width: 20px;
    height: 20px;
    color: var(--gray-500);
}

.identity-sso-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 0.75rem;
}

/* Card Footer */
.identity-card-footer {
    text-align: center;
    padding: 1.5rem 2.5rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.identity-card-footer p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.identity-card-footer a {
    color: var(--coral-500);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.identity-card-footer a:hover {
    color: var(--coral-600);
    text-decoration: underline;
}

/* Alert Messages */
.identity-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.identity-alert svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
}

.identity-alert-success {
    background: rgba(20, 184, 166, 0.1);
    color: var(--teal-600);
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.identity-alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.identity-alert-error ul {
    margin: 0;
    padding-left: 1rem;
}

/* Footer */
.identity-footer {
    position: relative;
    z-index: 10;
    padding: 1.5rem 2rem;
    text-align: center;
}

.identity-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.identity-footer-sep {
    margin: 0 0.25rem;
}

.identity-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.identity-footer a:hover {
    color: var(--coral-400);
}

/* Parent Registration Variant */
.identity-card.parent-variant .identity-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Animation for staggered form groups */
.identity-card-body .identity-form-group:nth-child(1) { animation: fadeInUp 0.4s ease-out 0.1s both; }
.identity-card-body .identity-form-group:nth-child(2) { animation: fadeInUp 0.4s ease-out 0.15s both; }
.identity-card-body .identity-form-group:nth-child(3) { animation: fadeInUp 0.4s ease-out 0.2s both; }
.identity-card-body .identity-form-group:nth-child(4) { animation: fadeInUp 0.4s ease-out 0.25s both; }
.identity-card-body .identity-form-group:nth-child(5) { animation: fadeInUp 0.4s ease-out 0.3s both; }
.identity-card-body .identity-options { animation: fadeInUp 0.4s ease-out 0.35s both; }
.identity-card-body .identity-submit { animation: fadeInUp 0.4s ease-out 0.4s both; }

/* Responsive adjustments */
@media (max-width: 480px) {
    .identity-container {
        max-width: 100%;
    }

    .identity-card-header,
    .identity-card-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .identity-card-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .identity-title {
        font-size: 1.5rem;
    }

    .identity-icon {
        width: 60px;
        height: 60px;
    }

    .identity-icon svg {
        width: 28px;
        height: 28px;
    }
}
