/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* iOS Modern Colors */
    --primary: #007AFF;
    /* iOS Blue */
    --primary-gradient: linear-gradient(135deg, #007AFF 0%, #0056b3 100%);
    --secondary: #FF9500;
    --text-dark: #1D1D1F;
    --text-muted: #86868B;
    --background: #F5F5F7;
    --card-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --accent-mesh: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #FBFBFD;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg,
            rgba(0, 122, 255, 0.05),
            rgba(255, 149, 0, 0.05),
            rgba(52, 199, 89, 0.03),
            rgba(88, 86, 214, 0.05));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1D1D1F;
}

/* Utilities */
.text-primary-custom {
    color: var(--primary);
}

.text-secondary-custom {
    color: var(--secondary);
}

.fw-semibold {
    font-weight: 600;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.gradient-text {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-bg {
    background: rgba(0, 122, 255, 0.06);
    border-radius: 8px;
    padding: 2px 8px;
    color: var(--primary);
    font-weight: 600;
}

/* Buttons */
.btn-primary-glow {
    background: #007AFF;
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.25);
}

.btn-primary-glow:hover {
    background: #0062cc;
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.35);
    color: white;
}

/* Spacing Utilities */
.section-padding {
    padding: 50px 0;
}

.mb-huge {
    margin-bottom: 4rem !important;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1D1D1F;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.text-accent {
    color: #34C759;
}

/* Content Highlighting */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
}

h5 {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Navbar */
.navbar-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    padding: 50px 0 0;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero-content .fas,
.hero-content .fab {
    font-size: 1rem;
    vertical-align: middle;
}

/* Feature Cards (Why This Masterclass) */
.feature-card {
    padding: 40px 30px;
    height: 100%;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 59, 48, 0.12);
    color: #FF3B30;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.feature-icon i {
    display: block;
}

/* Curriculum Highlight Section */
.curriculum-highlight .container {
    position: relative;
    z-index: 1;
}

.badge-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Day Cards (Curriculum) */
.day-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #007AFF, #5856D6, #00C7BE);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.day-card:hover::before {
    opacity: 1;
}

.day-card:hover {
    box-shadow: 0 20px 50px rgba(0, 122, 255, 0.2);
    transform: translateY(-12px) scale(1.02);
}

.day-header {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 50%, #00C7BE 100%);
    padding: 28px 24px;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.day-header i {
    font-size: 1.3rem;
    vertical-align: middle;
    margin-right: 4px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.day-body {
    padding: 32px;
}

.day-body h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D1D1F;
}

.check-list {
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 36px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    margin-bottom: 12px;
    list-style: none;
    color: #1D1D1F;
    font-size: 1rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.03) 0%, rgba(88, 86, 214, 0.03) 100%);
    border-radius: 10px;
    border-left: 3px solid #007AFF;
    transition: all 0.3s ease;
}

.check-list li:hover {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(88, 86, 214, 0.08) 100%);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.1);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 2px 6px rgba(52, 199, 89, 0.3);
}

/* Value Stack Section */
.value-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 122, 255, 0.1);
    height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
}

.value-item.special-item {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.05) 0%, rgba(48, 209, 88, 0.05) 100%);
    border-color: rgba(52, 199, 89, 0.3);
}

.value-item.special-item:hover {
    border-color: #34C759;
    box-shadow: 0 10px 25px rgba(52, 199, 89, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.value-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1D1D1F;
    margin: 0;
}

.pricing-card {
    max-width: 900px;
    margin: 0 auto;
}

.price-comparison {
    padding: 20px;
}

.arrow-down {
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Form Styles */
.reg-tabs {
    background: rgba(118, 118, 128, 0.12);
    padding: 4px;
    border-radius: 50px;
    display: inline-flex;
    margin-bottom: 40px;
    position: relative;
}

.reg-tab-btn {
    background: transparent;
    color: #636366;
    border: none;
    padding: 10px 40px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reg-tab-btn.active {
    background: white;
    color: black;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.form-control-custom {
    background: #F2F2F7;
    border: 1px solid transparent;
    color: #1D1D1F;
    padding: 16px;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.form-control-custom:focus {
    background: white;
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15);
}

.form-control-custom::placeholder {
    color: #AEAEB2;
}

.form-container {
    max-width: 550px;
    margin: 0 auto;
}

/* Footer */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: white;
    padding: 60px 0;
}

.footer-logo {
    max-width: 280px;
    height: auto;
}

.footer-disclaimer {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.03) 0%, rgba(88, 86, 214, 0.03) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
}

.footer-disclaimer h6 {
    color: var(--primary);
    font-size: 0.95rem;
}

.footer-disclaimer p {
    line-height: 1.7;
}

/* Thank You Page Styles */
.success-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cross-checkmark {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e51111 0%, #f23030 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; color: #fff;
    box-shadow: 0 10px 30px rgba(52, 199, 89, 0.3);
    animation: scaleIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.success-checkmark {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(52, 199, 89, 0.3);
    animation: scaleIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.success-checkmark i {
    color: white;
    font-size: 3rem;
    animation: checkPop 0.6s 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    transform: scale(0);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.next-step-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    height: 100%;
    border: 2px solid rgba(0, 122, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.next-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.step-icon.bg-primary {
    background: linear-gradient(135deg, #007AFF 0%, #0056b3 100%);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.step-icon.bg-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.event-details-box {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    border: 2px dashed rgba(0, 122, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: center;
    }

    .navbar-brand {
        margin: 0 auto;
    }

    .glass-card {
        padding: 24px !important;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 40px 0;
    }

    .mb-huge {
        margin-bottom: 2.5rem !important;
    }

    .price-tag {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-section {
        padding-top: 20px;
    }
}