/* ===========================
   FONTS
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

/* ===========================
   GLOBAL STYLES & RESET
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   VARIABLES & COLORS (VSIPL brand)
   =========================== */

:root {
    --navy: #163a6e;
    --navy-deep: #0e2749;
    --navy-light: #1f4d8f;
    --orange: #ff8a3d;
    --orange-dark: #e8721f;
    --text-dark: #16213e;
    --text-light: #5c6b84;
    --bg-light: #f5f8fc;
    --bg-panel: #eef3fb;
    --border-color: #e1e8f2;
    --success-color: #16a34a;
    --danger-color: #e63946;
    --white: #ffffff;
    --font-display: 'Sora', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: 2.6rem; }

h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    text-align: center;
}

h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.section-eyebrow {
    display: block;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 45px;
    color: var(--text-light);
    font-size: 1.05rem;
}

p { color: var(--text-light); margin-bottom: 15px; }

a { color: var(--navy); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--orange-dark); }

::selection { background: var(--orange); color: var(--white); }

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 13px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
    transition: all 0.25s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 138, 61, 0.35);
}

.btn-primary:hover {
    background-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 138, 61, 0.45);
}

.btn-large { padding: 16px 40px; font-size: 1.05rem; }

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(14, 39, 73, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 42px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.logo h1 {
    color: var(--navy);
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.15;
}

.logo span {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--orange-dark);
    font-weight: 600;
    margin-top: 2px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 26px;
    align-items: center;
}

.nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav a:hover { color: var(--orange-dark); }

.nav .apply-btn {
    background-color: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav .apply-btn:hover {
    background-color: var(--orange);
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   URGENCY / TOP BANNER
   =========================== */

.top-banner {
    background: var(--navy-deep);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
}

.top-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.top-banner strong { color: var(--orange); }

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    padding: 60px 0 70px;
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 138, 61, 0.15);
    border: 1px solid rgba(255, 138, 61, 0.4);
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: var(--white);
}

.hero h1 span { color: var(--orange); }

.hero .tagline {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 34px;
    font-weight: 500;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 0 0 40px;
    text-align: left;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.highlight i {
    color: var(--orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight span {
    font-weight: 500;
    color: var(--white);
    font-size: 0.92rem;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.hero-note {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}

/* ===========================
   PRICING PANEL (signature element)
   =========================== */

.price-panel {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 70px 0;
}

.price-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(14, 39, 73, 0.1);
    overflow: hidden;
}

.price-card-header {
    background: var(--navy-deep);
    color: var(--white);
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.price-card-header .tier-tag {
    background: var(--orange);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.price-card-body {
    padding: 34px 28px 30px;
    text-align: center;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--navy);
}

.price-amount sup {
    font-size: 1.4rem;
    top: -1.3em;
}

.price-amount .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.price-strike {
    font-family: var(--font-mono);
    color: var(--text-light);
    margin-top: 6px;
    font-size: 0.95rem;
}

.price-strike span {
    text-decoration: line-through;
    color: var(--danger-color);
}

.seat-meter {
    margin: 26px 0 22px;
    text-align: left;
}

.seat-meter-labels {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.seat-meter-track {
    width: 100%;
    height: 10px;
    background: var(--bg-panel);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    gap: 2px;
    padding: 2px;
}

.seat-meter-track .segment {
    flex: 1;
    background: var(--border-color);
    border-radius: 2px;
}

.seat-meter-track .segment.filled {
    background: var(--orange);
}

.price-card-footer {
    background: var(--bg-panel);
    padding: 18px 28px;
    font-size: 0.88rem;
    color: var(--text-light);
    text-align: center;
    border-top: 1px dashed var(--border-color);
}

.price-card-footer strong { color: var(--navy); }

/* ===========================
   WHY JOIN SECTION
   =========================== */

.why-join { padding: 70px 0; background-color: var(--bg-light); }

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 22px;
}

.why-card {
    background-color: var(--white);
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(14, 39, 73, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(14, 39, 73, 0.1);
    border-bottom-color: var(--orange);
}

.why-card i { font-size: 2.2rem; color: var(--navy); margin-bottom: 14px; }
.why-card h3 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0; }

/* ===========================
   BENEFITS SECTION
   =========================== */

.benefits { padding: 70px 0; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 14px;
    border-left: 4px solid var(--orange);
    box-shadow: 0 2px 10px rgba(14, 39, 73, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 10px 28px rgba(14, 39, 73, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bg-panel);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.benefit-card h3 { color: var(--text-dark); margin-bottom: 10px; }
.benefit-card p { margin-bottom: 12px; }

.benefit-feature {
    background-color: var(--bg-light);
    padding: 14px 16px;
    border-radius: 8px;
    margin-top: 16px;
}

.benefit-feature p { margin-bottom: 6px; font-size: 0.92rem; }
.benefit-feature p:last-child { margin-bottom: 0; }

.benefit-tag {
    display: inline-block;
    background: var(--bg-panel);
    color: var(--navy);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-top: 10px;
}

.benefit-list {
    list-style: none;
    margin-top: 14px;
}

.benefit-list li {
    padding: 7px 0;
    padding-left: 26px;
    position: relative;
    color: var(--text-light);
    font-size: 0.93rem;
}

.benefit-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 0.8rem;
}

/* ===========================
   INTERNSHIP SPOTLIGHT
   =========================== */

.internship-spotlight {
    padding: 70px 0;
    background: var(--navy-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.internship-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.internship-copy h2 { color: var(--white); text-align: left; }
.internship-copy .section-eyebrow { text-align: left; }
.internship-copy p { color: rgba(255,255,255,0.75); }

.internship-copy ul {
    list-style: none;
    margin: 22px 0 0;
}

.internship-copy ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.internship-copy ul li:last-child { border-bottom: none; }

.internship-copy ul li:before {
    content: "\f0e7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--orange);
}

.internship-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 34px;
    text-align: center;
}

.internship-card .duration-display {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}

.internship-card .duration-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 22px;
}

.internship-card .one-time-badge {
    display: inline-block;
    background: rgba(255,138,61,0.15);
    border: 1px solid rgba(255,138,61,0.4);
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

/* ===========================
   HOW IT WORKS SECTION
   =========================== */

.how-it-works { padding: 70px 0; background-color: var(--bg-light); }

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0;
    max-width: 950px;
    margin: 0 auto;
}

.step {
    background-color: var(--white);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    width: 140px;
    box-shadow: 0 2px 10px rgba(14,39,73,0.06);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0 auto 12px;
}

.step p {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.step-arrow {
    font-size: 1.3rem;
    color: var(--orange);
    font-weight: bold;
    align-self: center;
    padding: 0 8px;
}

/* ===========================
   COURSES SECTION
   =========================== */

.courses { padding: 70px 0; }

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.course-card {
    background-color: var(--white);
    padding: 26px 22px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(14, 39, 73, 0.06);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    position: relative;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(14, 39, 73, 0.1);
    border-top-color: var(--orange);
}

.course-card i {
    font-size: 1.8rem;
    color: var(--white);
    background: var(--navy);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.course-card h4 { color: var(--text-dark); margin: 0 0 6px; }

.course-card .course-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--orange-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.course-card p { font-size: 0.88rem; margin: 8px 0 0; }

/* ===========================
   FAQ SECTION
   =========================== */

.faq { padding: 70px 0; background-color: var(--bg-light); }

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(14, 39, 73, 0.06);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.98rem;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: left;
    gap: 12px;
}

.faq-question:hover { background-color: var(--bg-panel); }

.faq-question i { transition: transform 0.3s ease; color: var(--orange-dark); flex-shrink: 0; }

.faq-item.active .faq-question { background-color: var(--navy); color: var(--white); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--orange); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: var(--white);
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p { padding: 18px 20px; color: var(--text-light); margin: 0; font-size: 0.93rem; }

/* ===========================
   REGISTRATION SECTION
   =========================== */

.registration {
    padding: 70px 0;
    background: linear-gradient(160deg, var(--navy-deep), var(--navy));
    color: var(--white);
}

.registration h2 { color: var(--white); }
.registration .section-subtitle { color: rgba(255,255,255,0.75); }

.registration-form {
    max-width: 620px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.15);
}

.registration-form .btn {
    width: 100%;
    background-color: var(--orange);
    color: var(--white);
    margin-top: 8px;
}

.registration-form .btn:hover { background-color: var(--orange-dark); }
.registration-form .btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-disclaimer {
    background: var(--bg-light);
    border: 1px dashed var(--border-color);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 22px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-disclaimer i { color: var(--orange-dark); margin-right: 6px; }

.form-note {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.92rem;
}

/* ===========================
   FOOTER
   =========================== */

.footer { background-color: var(--navy-deep); color: rgba(255, 255, 255, 0.8); padding: 55px 0 20px; }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 36px;
    margin-bottom: 36px;
}

.footer-section h4 { color: var(--white); margin-bottom: 18px; }
.footer-section p { color: rgba(255, 255, 255, 0.65); line-height: 1.8; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-section ul li i { color: var(--orange); width: 16px; }
.footer-section ul li a { color: rgba(255, 255, 255, 0.7); transition: color 0.3s ease; }
.footer-section ul li a:hover { color: var(--orange); }

.social-links { display: flex; gap: 14px; }

.social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover { background-color: var(--orange); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

/* ===========================
   SCROLL TO TOP
   =========================== */

.scroll-to-top { font-family: var(--font-display); }

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 900px) {
    .internship-grid { grid-template-columns: 1fr; gap: 34px; }
    .internship-copy h2, .internship-copy .section-eyebrow { text-align: center; }
    .internship-copy ul li { text-align: left; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 8px 20px rgba(14,39,73,0.12);
        padding: 10px 0;
    }

    .nav ul { flex-direction: column; gap: 0; align-items: stretch; }
    .nav li { border-bottom: 1px solid var(--border-color); }
    .nav li:last-child { border-bottom: none; }
    .nav a { display: block; padding: 14px 24px; }
    .nav .apply-btn { margin: 10px 24px; text-align: center; display: block; }

    .hero { padding: 44px 0 50px; }
    .hero h1 { font-size: 1.9rem; }
    .hero .tagline { font-size: 1rem; }

    h2 { font-size: 1.5rem; }

    .hero-highlights { grid-template-columns: 1fr; text-align: left; }

    .steps-container { gap: 14px; }
    .step { width: 100px; padding: 16px 10px; }
    .step-number { width: 36px; height: 36px; font-size: 1rem; }
    .step p { font-size: 0.78rem; }
    .step-arrow { display: none; }

    .registration-form { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .price-amount { font-size: 2.5rem; }
    .price-card-body { padding: 28px 20px 24px; }
    .price-card-header { padding: 14px 20px; font-size: 0.72rem; flex-wrap: wrap; gap: 6px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }

    .logo-img { height: 32px; }
    .logo h1 { font-size: 1rem; }
    .logo span { font-size: 0.6rem; }

    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.3rem; margin-bottom: 10px; }

    .hero h1 { font-size: 1.55rem; }
    .hero .tagline { font-size: 0.95rem; }
    .hero-cta-row { flex-direction: column; width: 100%; }
    .hero-cta-row .btn { width: 100%; }

    .top-banner .container { font-size: 0.75rem; }

    .price-panel { padding: 50px 0; }
    .price-amount { font-size: 2.1rem; }

    .btn { padding: 11px 22px; font-size: 0.9rem; }
    .btn-large { padding: 13px 28px; font-size: 0.95rem; }

    .why-join-grid, .courses-grid { grid-template-columns: 1fr; }

    .internship-card .duration-display { font-size: 2.4rem; }

    .footer-content { grid-template-columns: 1fr; gap: 28px; }
}
