/* =====================================================
   CCNA Landing Page - V3 Unique Sections
   Inspired by moodboard patterns
   ===================================================== */

:root {
    /* Section Colors */
    --bg-white: #ffffff;
    --bg-cream: #faf8f5;
    --bg-mint: #e6f7f4;
    --bg-light-blue: #f0f7ff;
    --bg-dark-teal: #0c4a4a;
    --bg-navy: #0f1729;
    --bg-gradient-hero: linear-gradient(135deg, #e6f7f4 0%, #ffffff 50%);

    /* Primary */
    --primary: #0d9488;
    --primary-light: #14b8a6;
    --primary-dark: #0f766e;

    /* Accents */
    --accent-orange: #f97316;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;

    /* Text */
    --text-dark: #1a202c;
    --text-body: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;

    /* Font */
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-sans);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: 1.25rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

.btn--dark {
    background: var(--text-dark);
    color: #fff;
}

.btn--dark:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn--outline:hover {
    background: var(--text-dark);
    color: #fff;
}

.btn--white {
    background: #fff;
    color: var(--text-dark);
}

.btn--white:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.nav__logo span {
    color: var(--primary);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--primary);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
}

/* ============================================
   HERO - Split layout with floating elements
   ============================================ */
.hero {
    padding: 100px 0 60px;
    background: var(--bg-gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 45%;
    height: 120%;
    background: var(--primary);
    transform: translateY(-50%) skewX(-8deg);
    transform-origin: top right;
    z-index: 0;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero__title {
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.hero__feature-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero__feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__image-main {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.hero__floating-card {
    position: absolute;
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero__price-card {
    bottom: 30px;
    left: -30px;
    text-align: center;
}

.hero__price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.hero__price-new {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.hero__price-label {
    font-size: 12px;
    color: var(--text-muted);
}

.hero__stat-card {
    top: 40px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__stat-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__stat-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.hero__stat-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.hero__stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   TRUST - Logo strip + Testimonial carousel style
   ============================================ */
.trust {
    background: var(--bg-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 60px 0;
}

.trust__header {
    text-align: center;
    margin-bottom: 40px;
}

.trust__header p {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust__carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.trust__carousel::-webkit-scrollbar {
    display: none;
}

.trust__card {
    flex: 0 0 360px;
    background: var(--bg-cream);
    padding: 32px;
    border-radius: var(--radius-xl);
    scroll-snap-align: start;
    position: relative;
}

.trust__card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 64px;
    color: var(--primary);
    opacity: 0.15;
    font-family: serif;
    line-height: 1;
}

.trust__text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.trust__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.trust__name {
    font-weight: 600;
    color: var(--text-dark);
}

.trust__location {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   INSTRUCTOR - Card with photo on side (like moodboard 3)
   ============================================ */
.instructor {
    background: var(--bg-mint);
}

.instructor__wrapper {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.instructor__content {
    flex: 1;
    padding: 40px 0;
}

.instructor__eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.instructor__bio {
    font-size: 17px;
    margin: 20px 0 24px;
}

.instructor__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.instructor__tag {
    padding: 6px 14px;
    background: rgba(13, 148, 136, 0.15);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
}

.instructor__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.instructor__stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
}

.instructor__stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.instructor__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.instructor__contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-body);
    font-size: 14px;
    transition: color 0.2s;
}

.instructor__contact a:hover {
    color: var(--primary);
}

.instructor__contact svg {
    width: 18px;
    height: 18px;
}

.instructor__image-wrapper {
    flex: 0 0 400px;
    position: relative;
}

.instructor__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

/* ============================================
   PROCESS - Timeline/Flow style (like moodboard 2)
   ============================================ */
.process {
    background: var(--bg-white);
}

.process__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.process__header p {
    margin-top: 12px;
    color: var(--text-muted);
}

.process__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent-blue), var(--accent-purple));
    transform: translateX(-50%);
}

.process__item {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    align-items: center;
}

/* Default: content on LEFT (steps 1, 3) */
.process__item .process__content {
    text-align: left;
    order: 1;
}

.process__item .process__number {
    order: 2;
}

.process__item .process__placeholder {
    order: 3;
}

/* Step 2: content on RIGHT */
.process__item:nth-child(2) .process__content {
    order: 3;
    text-align: left;
}

.process__item:nth-child(2) .process__number {
    order: 2;
}

.process__item:nth-child(2) .process__placeholder {
    order: 1;
}

.process__number {
    width: 56px;
    height: 56px;
    background: var(--bg-white);
    border: 3px solid var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    z-index: 1;
    justify-self: center;
}

.process__content {
    padding: 0;
}

.process__title {
    margin-bottom: 8px;
}

.process__desc {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 320px;
}

/* Steps 1 & 3: content aligned left */
.process__item .process__content .process__desc {
    margin-right: auto;
}

/* Step 2: content aligned left on right side */
.process__item:nth-child(2) .process__content .process__desc {
    margin-right: auto;
    margin-left: 0;
}

.process__placeholder {
    min-height: 1px;
}

/* ============================================
   CURRICULUM - Browser mockup style (like moodboard 4)
   ============================================ */
.curriculum {
    background: var(--bg-cream);
}

.curriculum__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.curriculum__header p {
    margin-top: 12px;
    color: var(--text-muted);
}

.curriculum__browser {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.browser__toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: #f7fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.browser__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser__dot--red {
    background: #fc5753;
}

.browser__dot--yellow {
    background: #fdbc40;
}

.browser__dot--green {
    background: #33c748;
}

.browser__url {
    flex: 1;
    margin-left: 16px;
    padding: 8px 16px;
    background: #fff;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-muted);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.browser__content {
    padding: 32px;
}

.curriculum__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.curriculum__module {
    padding: 24px;
    background: var(--bg-light-blue);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.curriculum__module-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.curriculum__module-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.curriculum__module-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.curriculum__topics {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.curriculum__topic {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-body);
}

.curriculum__topic svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* ============================================
   INCLUDED - Checklist with image (like moodboard 5)
   ============================================ */
.included {
    background: var(--bg-dark-teal);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.included__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.included__content {
    position: relative;
    z-index: 1;
}

.included__eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.included h2 {
    color: #fff;
    margin-bottom: 32px;
}

.included__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.included__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.included__check {
    width: 28px;
    height: 28px;
    background: rgba(45, 212, 191, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included__check svg {
    width: 16px;
    height: 16px;
    color: #2dd4bf;
}

.included__text {
    font-size: 15px;
    line-height: 1.6;
}

.included__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.included__img {
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.included__img:first-child {
    grid-column: span 2;
}

/* ============================================
   SCHEDULE - Cards in a row
   ============================================ */
.schedule {
    background: var(--bg-white);
}

.schedule__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.schedule__header p {
    margin-top: 12px;
    color: var(--text-muted);
}

.schedule__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.schedule__card {
    background: var(--bg-light-blue);
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.schedule__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.schedule__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule__icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.schedule__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.schedule__value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================================
   PRICING - Centered card with gradient top
   ============================================ */
.pricing {
    background: var(--bg-cream);
}

.pricing__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.pricing__header p {
    margin-top: 12px;
    color: var(--text-muted);
}

.pricing__card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing__top {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 40px;
    text-align: center;
    color: #fff;
    position: relative;
}

.pricing__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing__old {
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing__amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.pricing__period {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 8px;
}

.pricing__body {
    padding: 40px;
}

.pricing__features {
    margin-bottom: 24px;
}

.pricing__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
}

.pricing__feature:last-child {
    border-bottom: none;
}

.pricing__feature svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.pricing__installment {
    background: var(--bg-mint);
    padding: 16px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.pricing__installment strong {
    color: var(--primary-dark);
    font-size: 18px;
}

.pricing__cta .btn {
    width: 100%;
    margin-bottom: 12px;
}

.pricing__cta .btn:last-child {
    margin-bottom: 0;
}

/* ============================================
   FAQ - Bordered cards (like moodboard 3)
   ============================================ */
.faq {
    background: var(--bg-light-blue);
}

.faq__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: var(--primary);
}

.faq__item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.15);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq__icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer-inner {
    padding: 0 24px 24px;
    color: var(--text-body);
    line-height: 1.8;
}

/* ============================================
   FINAL CTA - Dark with gradient accent
   ============================================ */
.final-cta {
    background: var(--bg-navy);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.final-cta__content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta__eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 16px;
}

.final-cta__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.final-cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.final-cta__contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta__contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.2s;
}

.final-cta__contact a:hover {
    color: #fff;
}

.final-cta__contact svg {
    width: 18px;
    height: 18px;
}

/* Footer */
.footer {
    background: #060d1a;
    padding: 32px 0;
    text-align: center;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer__logo span {
    color: var(--primary);
}

.footer__copy {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero::before {
        display: none;
    }

    .hero {
        background: var(--bg-mint);
        padding: 180px 0 60px;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        display: none;
    }

    .hero__floating-card {
        display: none;
    }

    .instructor__wrapper {
        flex-direction: column;
    }

    .instructor__image-wrapper {
        flex: none;
        height: 600px;
    }

    .instructor__image {
        border-radius: var(--radius-xl);
        object-position: top center;
    }

    .included__grid {
        grid-template-columns: 1fr;
    }

    .included__images {
        display: none;
    }

    .curriculum__grid {
        grid-template-columns: 1fr;
    }

    /* Process - Stackable Cards on Tablet */
    .process__timeline::before {
        display: none;
    }

    .process__item,
    .process__item:nth-child(even) {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 32px;
        background: #fff;
        border-radius: var(--radius-xl);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
        margin-bottom: 32px;
    }

    .process__item .process__number,
    .process__item .process__content,
    .process__item .process__placeholder {
        order: 0;
    }

    .process__item .process__number {
        position: relative;
        margin-bottom: 24px;
        left: auto;
        transform: none;
        order: -1;
    }

    .process__desc {
        max-width: none;
        margin: 0 auto;
    }

    .process__placeholder {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .nav__links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav__links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__toggle {
        display: flex;
    }

    .instructor__image-wrapper {
        height: 300px;
    }

    /* Handled by 1024px cards layout */
    .process__item,
    .process__item:nth-child(even) {
        padding: 32px 24px;
    }

    .schedule__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust__card {
        flex: 0 0 300px;
    }
}

@media (max-width: 480px) {
    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .schedule__grid {
        grid-template-columns: 1fr;
    }

    .final-cta__buttons {
        flex-direction: column;
    }

    .final-cta__buttons .btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .btn {
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}