/* ===== EXOLIX ACADEMY - Professional Web Development Training ===== */
/* Teal & Coral Modern Design */

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --accent: #f97316;
    --accent-light: #fb923c;
    --purple: #8b5cf6;
    --navy: #1e1b4b;
    --navy-mid: #312e81;
    --navy-light: #4338ca;
    --slate: #475569;
    --slate-light: #94a3b8;
    --cream: #fef7ed;
    --white: #ffffff;
    --green: #10b981;
    --main-gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --dark-gradient: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    --box-shadow: 0 12px 40px rgba(13, 148, 136, 0.15);
    --box-shadow-lg: 0 24px 60px rgba(13, 148, 136, 0.22);
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--smooth);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    color: var(--slate);
    font-size: 1.0625rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--smooth);
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--main-gradient);
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-3px);
}

/* === SECTIONS === */
section {
    padding: 100px 0;
}

.section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--primary);
    padding: 10px 22px;
    border-radius: var(--border-radius);
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-intro h2 {
    margin-bottom: 16px;
}

/* === NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: var(--smooth);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-icon {
    width: 46px;
    height: 46px;
    background: var(--main-gradient);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.25rem;
}

.brand-name {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--slate);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--main-gradient);
    border-radius: 2px;
    transition: var(--smooth);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--smooth);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(170deg, var(--cream) 0%, var(--white) 60%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
}

.bg-shape-1 {
    top: 5%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
}

.bg-shape-2 {
    bottom: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 580px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid var(--cream);
    padding: 12px 22px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.hero-tag i {
    color: var(--accent);
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-text h1 .accent {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p {
    font-size: 1.1875rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-numbers {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 2px solid rgba(13, 148, 136, 0.1);
}

.number-box h3 {
    font-size: 2.5rem;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.number-box p {
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero-illustration {
    position: relative;
}

.hero-card-main {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 28px;
    box-shadow: var(--box-shadow-lg);
}

.card-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.toolbar-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.toolbar-dot.red { background: #ef4444; }
.toolbar-dot.yellow { background: #fbbf24; }
.toolbar-dot.green { background: #22c55e; }

.card-toolbar span {
    margin-left: auto;
    font-size: 0.8125rem;
    color: var(--slate-light);
}

.code-preview {
    background: var(--navy);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 0.875rem;
    line-height: 1.9;
}

.code-preview .tag { color: #f472b6; }
.code-preview .attr { color: #fbbf24; }
.code-preview .value { color: #4ade80; }
.code-preview .text { color: #e2e8f0; }

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 22px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card-1 {
    top: -10px;
    right: -20px;
    animation: bounce 3.5s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 30px;
    left: -30px;
    animation: bounce 3.5s ease-in-out infinite 0.7s;
}

.floating-card i {
    width: 40px;
    height: 40px;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.floating-card span {
    font-weight: 600;
    font-size: 0.875rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* === ADVANTAGES === */
.advantages {
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.advantage-box {
    background: var(--cream);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    transition: var(--smooth);
    position: relative;
    overflow: hidden;
}

.advantage-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--main-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--smooth);
}

.advantage-box:hover {
    background: var(--white);
    box-shadow: var(--box-shadow);
    transform: translateY(-6px);
}

.advantage-box:hover::after {
    transform: scaleX(1);
}

.advantage-icon {
    width: 68px;
    height: 68px;
    background: var(--main-gradient);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.advantage-icon i {
    font-size: 1.625rem;
    color: var(--white);
}

.advantage-box h3 {
    margin-bottom: 12px;
}

.advantage-box p {
    font-size: 1rem;
    line-height: 1.7;
}

/* === PROGRAM === */
.program {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.program-details h2 {
    margin-bottom: 20px;
}

.program-details > p {
    margin-bottom: 32px;
}

.program-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 16px;
}

.perk i {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
}

.perk span {
    font-weight: 600;
    color: var(--navy);
}

.program-modules {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.module-item {
    background: var(--white);
    border: 2px solid var(--cream);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--smooth);
}

.module-item:hover,
.module-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--box-shadow);
}

.module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
}

.module-header h4 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.0625rem;
}

.module-badge {
    width: 34px;
    height: 34px;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
}

.module-header span {
    color: var(--slate-light);
    font-size: 0.875rem;
}

.module-topics {
    display: none;
    padding: 0 24px 24px;
}

.module-item.active .module-topics {
    display: block;
}

.module-topics ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--cream);
}

.module-topics li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate);
    font-size: 0.9375rem;
}

.module-topics li i {
    color: var(--green);
    font-size: 0.8125rem;
}

/* === REVIEWS === */
.reviews {
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2314b8a6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reviews .section-label {
    background: rgba(20, 184, 166, 0.2);
    color: var(--primary-light);
}

.reviews .section-intro h2,
.reviews .section-intro p {
    color: var(--white);
}

.reviews-slider {
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 16px 0;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
    flex: 0 0 calc(33.333% - 19px);
    min-width: 340px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    padding: 36px;
    border-radius: var(--border-radius);
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--smooth);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--accent);
    font-size: 1rem;
}

.review-card > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.75;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 52px;
    height: 52px;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.reviewer-info h4 {
    color: var(--white);
    font-size: 1rem;
}

.reviewer-info span {
    color: var(--slate-light);
    font-size: 0.875rem;
}

/* === INVESTMENT === */
.investment {
    background: var(--white);
}

.investment-card {
    max-width: 520px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    border-radius: var(--border-radius);
    padding: 52px;
    text-align: center;
    box-shadow: var(--box-shadow-lg);
    border: 2px solid var(--primary-light);
    position: relative;
}

.investment-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-gradient);
    color: var(--white);
    padding: 8px 24px;
    border-radius: var(--border-radius);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.investment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: 8px;
}

.investment-card > p {
    margin-bottom: 32px;
}

.price-display {
    margin-bottom: 32px;
}

.price-display .amount {
    font-size: 4rem;
    font-weight: 800;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-display .type {
    color: var(--slate);
    font-size: 1rem;
    display: block;
    margin-top: 6px;
}

.investment-features {
    text-align: left;
    margin-bottom: 40px;
}

.investment-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
    color: var(--navy);
}

.investment-features li:last-child {
    border-bottom: none;
}

.investment-features i {
    color: var(--green);
    font-size: 1.0625rem;
}

.investment-card .btn {
    width: 100%;
    padding: 18px;
}

.investment-guarantee {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--slate);
    font-size: 0.9375rem;
}

.investment-guarantee i {
    color: var(--green);
}

/* === QUESTIONS === */
.questions {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.questions-list {
    max-width: 800px;
    margin: 0 auto;
}

.question-item {
    background: var(--white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--smooth);
}

.question-item:hover,
.question-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--box-shadow);
}

.question-btn {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.question-btn h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    padding-right: 16px;
}

.question-btn i {
    color: var(--primary);
    transition: var(--smooth);
}

.question-item.active .question-btn i {
    transform: rotate(180deg);
}

.question-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.question-item.active .question-answer {
    max-height: 320px;
}

.question-answer p {
    padding: 0 28px 24px;
    line-height: 1.75;
}

/* === ACTION === */
.action {
    background: var(--main-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-5.523 4.477-10 10-10V0C19.523 0 10 9.477 10 20h10zm0 0c0 5.523-4.477 10-10 10v10c10.477 0 20-9.477 20-20H20z'/%3E%3C/g%3E%3C/svg%3E");
}

.action .container {
    position: relative;
    z-index: 1;
}

.action h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.action p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1875rem;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* === FOOTER === */
.footer {
    background: var(--navy);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}

.footer-about .brand {
    margin-bottom: 20px;
}

.footer-about .brand-icon {
    background: var(--main-gradient);
}

.footer-about .brand-name {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.footer-about p {
    color: var(--slate-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--navy-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-light);
    transition: var(--smooth);
}

.social-links a:hover {
    background: var(--main-gradient);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: 22px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--slate-light);
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-base {
    padding-top: 32px;
    border-top: 1px solid var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-base p {
    color: var(--slate);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: var(--slate);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* === LEGAL PAGES === */
.legal-page {
    padding-top: 120px;
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.legal-wrapper h1 {
    margin-bottom: 10px;
}

.legal-wrapper .updated {
    color: var(--slate);
    font-size: 0.9375rem;
    margin-bottom: 40px;
}

.legal-wrapper h2 {
    font-size: 1.5rem;
    margin: 44px 0 16px;
}

.legal-wrapper h3 {
    font-size: 1.25rem;
    margin: 32px 0 12px;
}

.legal-wrapper p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-wrapper ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-wrapper li {
    color: var(--slate);
    margin-bottom: 8px;
    list-style: disc;
    line-height: 1.7;
}

.legal-wrapper a {
    color: var(--primary);
}

.legal-wrapper a:hover {
    text-decoration: underline;
}

/* === CONTACT PAGE === */
.contact-page {
    padding-top: 120px;
    min-height: 100vh;
    background: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-details h1 {
    margin-bottom: 20px;
}

.contact-details > p {
    margin-bottom: 40px;
}

.contact-boxes {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 26px;
    border-radius: var(--border-radius-sm);
    transition: var(--smooth);
}

.contact-box:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-3px);
}

.contact-box i {
    width: 52px;
    height: 52px;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-box h4 {
    font-size: 1.0625rem;
    margin-bottom: 4px;
}

.contact-box p,
.contact-box a {
    color: var(--slate);
}

.contact-box a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: var(--white);
    padding: 52px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--cream);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--smooth);
    background: var(--white);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-numbers { justify-content: center; }
    .hero-illustration { display: none; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .program-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 32px;
        gap: 20px;
        box-shadow: var(--box-shadow);
    }
    .nav-menu.active { display: flex; }
    .nav-actions { display: none; }
    .hamburger { display: flex; }
    section { padding: 72px 0; }
    .advantages-grid, .footer-grid { grid-template-columns: 1fr; }
    .review-card { flex: 0 0 calc(100% - 20px); min-width: 280px; }
    .footer-base { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .investment-card, .contact-form-card { padding: 32px; }
}

@media (max-width: 480px) {
    .hero-numbers { flex-direction: column; gap: 20px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
}
