:root {
    --primary: #c9a84c;
    --primary-dark: #a8852e;
    --primary-light: #e8c97a;
    --navy: #0d1b2a;
    --navy-mid: #162032;
    --navy-light: #1e2d3d;
    --navy-card: #1a2840;
    --accent: #4a90d9;
    --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #f0d070 50%, #c9a84c 100%);
    --bg-dark: #0b1520;
    --bg-card: #111e2e;
    --bg-light: #f4f1eb;
    --bg-white: #ffffff;
    --text-dark: #0d1b2a;
    --text-gray: #8a9bb5;
    --text-light: #b8c8d8;
    --border: rgba(201, 168, 76, 0.2);
    --border-dark: rgba(255,255,255,0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);
    --radius: 4px;
    --radius-md: 8px;
    --radius-full: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #eef2f7;
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.25;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── HEADER ─────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(11, 21, 32, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-white {
    color: #fff;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.dropdown-icon {
    transition: transform 0.3s;
    opacity: 0.7;
}

.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-icon { transform: rotate(180deg); }

.dropdown-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-card);
    min-width: 680px;
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nav-dropdown:hover .dropdown-menu {
    display: grid;
    animation: fadeDown 0.25s ease;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-section h5 {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
}

.dropdown-section a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    padding: 7px 10px;
    margin: 0 -10px;
    border-radius: var(--radius);
    transition: all 0.2s;
    border-left: 2px solid transparent;
}

.dropdown-section a:hover {
    background: rgba(201,168,76,0.08);
    color: var(--primary-light);
    border-left-color: var(--primary);
    padding-left: 14px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.header-phone:hover { color: var(--primary); }
.phone-icon { font-size: 14px; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(201,168,76,0.1);
    color: var(--primary-light);
}

.btn-header {
    background: var(--gold-gradient);
    color: var(--navy);
    padding: 10px 22px;
    font-size: 13px;
}

.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-white {
    background: #fff;
    color: var(--navy);
    font-weight: 700;
}

.btn-white:hover { background: var(--primary-light); }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-card {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 9px 20px;
    font-size: 13px;
}

.btn-card:hover {
    background: var(--gold-gradient);
    color: var(--navy);
    border-color: transparent;
}

.btn-full { width: 100%; justify-content: center; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 0% 50%, rgba(74,144,217,0.04) 0%, transparent 70%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-content { position: relative; }

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.label-diamond {
    width: 6px; height: 6px;
    background: var(--primary);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-dark);
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-text {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
}

.hero-card-wrap {
    position: relative;
}

.hero-badge-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-badge-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-gradient);
}

.badge-icon-wrap {
    font-size: 48px;
    margin-bottom: 16px;
}

.badge-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.badge-subtitle {
    color: var(--text-gray);
    font-size: 14px;
}

.floating-tag {
    position: absolute;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    box-shadow: var(--shadow);
}

.floating-tag-1 { top: -20px; right: -30px; }
.floating-tag-2 { bottom: -20px; left: -30px; }

.ftag-icon { font-size: 20px; }
.ftag-text { font-size: 13px; color: #fff; font-weight: 600; }
.ftag-sub  { font-size: 11px; color: var(--text-gray); }

/* ─── TRUST BAR ──────────────────────────────────────── */
.trust-bar {
    background: var(--navy-card);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 24px 0;
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.trust-item {
    text-align: center;
    padding: 0 20px;
}

.trust-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-sep {
    width: 1px;
    height: 40px;
    background: var(--border-dark);
}

/* ─── SECTIONS ───────────────────────────────────────── */
.section-head {
    margin-bottom: 56px;
}

.section-head.center {
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--primary);
    opacity: 0.6;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    color: #fff;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 560px;
}

.section-head.center .section-subtitle {
    margin: 0 auto;
}

/* ─── CATALOG ────────────────────────────────────────── */
.catalog {
    padding: 100px 0;
    background: var(--bg-dark);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.catalog-card {
    background: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.35s;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.card-emoji {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--navy-light);
}

.card-webp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.catalog-card:hover .card-webp {
    transform: scale(1.04);
}

.catalog-card h3 {
    font-size: 15px;
    color: #fff;
    padding: 18px 20px 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.card-list {
    list-style: none;
    padding: 0 20px 16px;
    flex: 1;
}

.card-list li {
    font-size: 13px;
    color: var(--text-gray);
    padding: 3px 0;
}

.card-list li::before {
    content: none;
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid var(--border-dark);
    margin-top: auto;
}

.card-price {
    font-size: 14px;
    color: var(--text-gray);
}

.card-price strong {
    color: var(--primary);
    font-size: 18px;
    font-family: 'Playfair Display', serif;
}

/* ─── UNIVERSITIES ───────────────────────────────────── */
.universities-section {
    padding: 100px 0;
    background: var(--navy);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-bottom: 32px;
    max-width: 480px;
    transition: border-color 0.3s;
}

.search-box:focus-within {
    border-color: var(--primary);
}

.search-icon { font-size: 16px; opacity: 0.5; }

.search-box input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    flex: 1;
}

.search-box input::placeholder { color: var(--text-gray); }

.universities-table-wrap {
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
}

.universities-table {
    width: 100%;
    border-collapse: collapse;
}

.universities-table thead {
    background: var(--navy-card);
}

.universities-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.universities-table tbody tr {
    border-top: 1px solid var(--border-dark);
    transition: background 0.2s;
}

.universities-table tbody tr:hover {
    background: rgba(201,168,76,0.04);
}

.universities-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-light);
}

.price-cell {
    color: var(--primary) !important;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 15px !important;
}

.btn-mini {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.btn-mini:hover {
    background: var(--gold-gradient);
    color: var(--navy);
    border-color: transparent;
}

.hidden-row { display: none; }

.table-actions {
    text-align: center;
    margin-bottom: 40px;
}

.not-found-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 32px;
}

.banner-icon { font-size: 40px; flex-shrink: 0; }

.banner-content h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
}

.banner-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.not-found-banner .btn { margin-left: auto; flex-shrink: 0; }

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(201,168,76,0.1) 100%);
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--gold-gradient);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.step-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ─── PRICING ────────────────────────────────────────── */
.pricing-section {
    padding: 100px 0;
    background: var(--navy);
}

.pricing-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    padding: 4px;
    margin-bottom: 32px;
    width: fit-content;
}

.tab {
    padding: 10px 24px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab.active {
    background: var(--gold-gradient);
    color: var(--navy);
}

.tab:hover:not(.active) { color: var(--primary); }

.pricing-panel {
    display: none;
    background: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pricing-panel.active { display: block; }

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-bottom: 1px solid var(--border-dark);
    transition: background 0.2s;
    gap: 24px;
}

.price-item:last-child { border-bottom: none; }
.price-item:hover { background: rgba(201,168,76,0.04); }

.price-item span:first-child {
    font-size: 14px;
    color: var(--text-light);
}

.price-item.featured span:first-child {
    color: #fff;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--primary);
    white-space: nowrap;
    font-weight: 700;
}

/* ─── BENEFITS ───────────────────────────────────────── */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.35s;
    transform-origin: left;
}

.benefit-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.benefit-card:hover::after { transform: scaleX(1); }

.benefit-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ─── REVIEWS ────────────────────────────────────────── */
.reviews-section {
    padding: 100px 0;
    background: var(--navy);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: border-color 0.3s;
}

.review-card:hover { border-color: var(--border); }

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 44px; height: 44px;
    background: var(--gold-gradient);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.review-date {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 2px;
}

.review-rating {
    margin-left: auto;
    font-size: 13px;
}

.review-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-dark);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: none;
    border: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-style: normal;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0 0 22px;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ─── CTA ────────────────────────────────────────────── */
.cta-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 52px);
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── PAGE HEADER ────────────────────────────────────── */
.page-header {
    padding: 140px 0 80px;
    background: var(--navy);
    border-bottom: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.page-title {
    font-size: clamp(32px, 4vw, 52px);
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    position: relative;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
    background: var(--navy-card);
    border-top: 1px solid var(--border-dark);
    padding: 72px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 16px 0 24px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s;
}

.social-link:hover {
    background: rgba(201,168,76,0.12);
    border-color: var(--border);
    color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.25s;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--primary); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border-dark);
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
}

/* ─── INNER PAGE SECTIONS ────────────────────────────── */
.inner-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.inner-section.alt {
    background: var(--navy);
}

.prose-block {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.85;
}

.prose-block h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.prose-block p { margin-bottom: 20px; }
.prose-block p:last-child { margin-bottom: 0; }

/* ─── INFO TOGGLE ────────────────────────────────────── */
.info-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 28px;
}

.info-wrapper h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.toggle-btn {
    padding: 12px 28px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.toggle-btn:hover {
    background: rgba(201,168,76,0.1);
}

.info-content {
    display: none;
    margin-top: 32px;
}

.info-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.info-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0 0 20px;
}

.hide-btn { margin-top: 24px; }

/* ─── FORM STYLES ────────────────────────────────────── */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #fff;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-gray); }

.form-group select option {
    background: var(--navy);
    color: #fff;
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-form-wrap {
    max-width: 640px;
    margin: 0 auto;
    background: var(--navy-card);
    padding: 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
}

/* ─── MOBILE MENU ────────────────────────────────────── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    padding: 80px 28px 40px;
    overflow-y: auto;
}

.mobile-nav.open { display: flex; flex-direction: column; }

.mobile-nav-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-dark);
    display: block;
}

.mobile-nav a:hover { color: var(--primary); }
.mobile-nav h5 {
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 24px 0 8px;
    font-family: 'DM Sans', sans-serif;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .header-phone { display: none; }
    .burger { display: flex; }
    .hero { padding: 100px 0 60px; }
    .hero-stats { gap: 24px; }
    .trust-grid { flex-wrap: wrap; gap: 20px; }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .steps-grid::before { display: none; }
    .pricing-tabs { flex-wrap: wrap; }
    .benefits-grid { grid-template-columns: 1fr; }
    .not-found-banner { flex-direction: column; text-align: center; }
    .not-found-banner .btn { margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
}
