@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* ==== tokens ==== */
:root {
    --bg-main:    #1c231c;
    --bg-footer:  #000;
    --bg-alt:     #171c17;
    --bg-card:    #232b23;
    --gold:       #978f6b;
    --gold-deep:  #7a7356;
    --gold-hi:    #c0b377;
    --white:      #fff;
    --muted:      #bababa;
    --dim:        #686e68;
    --divider:    #1f1f1f;
}

/* ==== base ==== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
:root { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1,h2,h3,h4,h5,h6,p,figure { margin: 0; }

body {
    background: var(--bg-main);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.08em;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ==== header ==== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--bg-main);
    border-bottom: 1px solid rgba(151,143,107,0.15);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 32px;
    position: relative;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
    text-decoration: none;
}
.header-logo svg {
    width: 44px;
    height: 44px;
}
.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
}
.logo-text span { color: var(--gold); }

/* centered nav */
.main-nav {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 28px;
    align-items: center;
}
.main-nav a {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color .2s ease;
    white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.current { color: var(--white); }

/* CTA button in header */
.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid var(--gold);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.btn-header:hover {
    background: var(--gold);
    color: var(--bg-main);
}

/* mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px; height: 18px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 100%; height: 2px;
    background: var(--gold);
    transition: transform .3s, opacity .3s;
}

/* mobile drawer */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--bg-alt);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.mobile-nav.open {
    max-height: 400px;
}
.mobile-nav a {
    display: block;
    padding: 14px 24px;
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--divider);
    transition: color .2s, background .2s;
}
.mobile-nav a:hover { color: var(--white); background: rgba(151,143,107,0.08); }

/* ==== hero ==== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 0;
    width: 100%;
    position: relative;
}
.hero-image {
    width: 100%;
    aspect-ratio: 1.73 / 1;
    overflow: hidden;
    position: relative;
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 35, 28, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logo-box {
    border: 1px solid rgba(255,255,255,0.6);
    padding: 28px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-logo-box .tagline {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-logo-box h1 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
}
.hero-logo-box .sub {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ==== feature sections ==== */
.feature {
    width: 100%;
    padding: 80px 120px;
}
.feature-inner {
    display: flex;
    gap: 64px;
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;
}
.feature.reverse .feature-inner { flex-direction: row-reverse; }

.feature-img {
    flex: 1;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.feature-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.feature-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-self: stretch;
    justify-content: flex-start;
}
.feature-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.feature-num {
    display: flex;
    align-items: center;
    gap: 16px;
}
.feature-num h2 {
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 400;
}
.feature-num .rule {
    width: 80px; height: 1px;
    background: var(--gold);
    flex: none;
}
.feature-title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.feature-title h3 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.15;
}
.feature-desc {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.05em;
    color: var(--muted);
}
.feature-desc p + p { margin-top: 12px; }

/* corner CTA */
.corner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}
.corner-cta:hover { background: rgba(151,143,107,0.15); }
.corner-cta i {
    font-size: 18px;
    color: var(--white);
    transform: rotate(-45deg);
}

/* ==== price section ==== */
.price-section {
    padding: 80px 120px;
    width: 100%;
    background: var(--bg-alt);
}
.price-section-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.section-num {
    display: flex;
    align-items: center;
    gap: 16px;
}
.section-num h2 {
    font-size: 28px;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 400;
}
.section-num .rule {
    width: 80px; height: 1px;
    background: var(--gold);
    flex: none;
}
.section-header h3 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}
.section-header p {
    font-size: 15px;
    line-height: 24px;
    color: var(--muted);
    letter-spacing: 0.05em;
    max-width: 640px;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.price-card {
    background: var(--bg-card);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    border-top: 2px solid transparent;
    transition: border-color .2s;
}
.price-card:hover { border-top-color: var(--gold); }
.price-card.featured {
    background: #253025;
    border-top-color: var(--gold);
}
.price-card .badge {
    position: absolute;
    top: -1px; right: 16px;
    background: var(--gold);
    color: var(--bg-main);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
}
.price-card .course-level {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.price-card h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
}
.price-card .price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.price-tag .amount {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold);
    line-height: 1;
}
.price-tag .currency {
    font-size: 22px;
    color: var(--gold-deep);
    font-weight: 400;
}
.price-card .duration {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--dim);
    text-transform: uppercase;
}
.price-card ul.features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.features-list li i {
    color: var(--gold);
    font-size: 12px;
    margin-top: 4px;
    flex: none;
}
.price-card .btn-enroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid var(--gold);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background .2s, color .2s;
    text-decoration: none;
    width: 100%;
    text-align: center;
}
.price-card .btn-enroll:hover {
    background: var(--gold);
    color: var(--bg-main);
}

/* ==== testimonials section ==== */
.testimonials-section {
    padding: 80px 120px;
    width: 100%;
}
.testimonials-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 2px solid var(--gold);
}
.testimonial-card .stars {
    display: flex;
    gap: 4px;
}
.testimonial-card .stars i { color: var(--gold); font-size: 14px; }
.testimonial-card .quote {
    font-size: 15px;
    line-height: 24px;
    color: var(--muted);
    letter-spacing: 0.04em;
    font-style: italic;
}
.testimonial-card .author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testimonial-card .author-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}
.testimonial-card .author-role {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--gold);
}

/* ==== contact / form section ==== */
.contact-section {
    padding: 80px 120px;
    width: 100%;
    background: var(--bg-alt);
}
.contact-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-info-item .label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.contact-info-item p,
.contact-info-item a {
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    letter-spacing: 0.06em;
    transition: color .2s;
}
.contact-info-item a:hover { color: var(--gold); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(151,143,107,0.3);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: 0.06em;
    padding: 12px 16px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-alt); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.full { grid-column: 1 / -1; }
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: 1px solid var(--gold);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background .2s, color .2s;
    align-self: flex-start;
}
.btn-submit:hover {
    background: var(--gold);
    color: var(--bg-main);
}

/* ==== page hero (inner pages) ==== */
.page-hero {
    padding: 120px 120px 64px;
    width: 100%;
    border-bottom: 1px solid var(--divider);
}
.page-hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.page-hero .page-num {
    display: flex;
    align-items: center;
    gap: 16px;
}
.page-hero .page-num span {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.page-hero .page-num .rule {
    width: 48px; height: 1px;
    background: var(--gold);
}
.page-hero h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
}
.page-hero p {
    font-size: 16px;
    line-height: 26px;
    color: var(--muted);
    letter-spacing: 0.05em;
    max-width: 640px;
}

/* ==== text sections (inner pages) ==== */
.text-section {
    padding: 64px 120px;
    width: 100%;
}
.text-section-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.text-section h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
}
.text-section h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 8px;
}
.text-section p {
    font-size: 15px;
    line-height: 26px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.text-section p + p { margin-top: 12px; }
.text-section ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.text-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 24px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.text-section ul li::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 0;
    margin-top: 9px;
    flex: none;
}

/* ==== about page grid ==== */
.about-grid {
    padding: 64px 120px;
    width: 100%;
    background: var(--bg-alt);
}
.about-grid-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-grid-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.about-grid-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-grid-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-grid-text h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.15;
}
.about-grid-text p {
    font-size: 15px;
    line-height: 26px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.about-grid-text p + p { margin-top: 10px; }

/* ==== team section ==== */
.team-section {
    padding: 64px 120px;
    width: 100%;
}
.team-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.team-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.team-card .team-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-card);
}
.team-card .team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.team-card .team-info { display: flex; flex-direction: column; gap: 4px; }
.team-card .team-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}
.team-card .team-role {
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
}

/* ==== why section ==== */
.why-section {
    padding: 80px 120px;
    background: var(--bg-alt);
    width: 100%;
}
.why-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}
.why-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}
.why-left h3 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
}
.why-left p {
    font-size: 15px;
    line-height: 24px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.why-item {
    background: var(--bg-card);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.why-item i {
    font-size: 24px;
    color: var(--gold);
}
.why-item h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}
.why-item p {
    font-size: 14px;
    line-height: 22px;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* ==== footer ==== */
.site-footer {
    background: var(--bg-footer);
    width: 100%;
}
.footer-container {
    max-width: 1568px;
    margin: 0 auto;
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.footer-grid {
    display: flex;
    width: 100%;
    gap: 0;
    align-items: flex-start;
}
.footer-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    gap: 32px;
}
.footer-logo-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo svg { width: 48px; height: 48px; }
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}
.footer-brand span {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}
.footer-address p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.06em;
    color: var(--muted);
}
.footer-address a { color: var(--gold); }
.footer-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid var(--gold);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background .2s, color .2s;
    text-decoration: none;
}
.btn-footer:hover {
    background: var(--gold);
    color: var(--bg-main);
}

/* schedule box (gold border) */
.schedule-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--gold-deep);
    align-self: stretch;
    min-width: 200px;
}
.schedule-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}
.schedule-row .day {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.schedule-row .time {
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--white);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    flex: 1;
}
.footer-secondary {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer-secondary .col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 140px;
}
.footer-secondary .col-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.footer-secondary .col a,
.footer-secondary .col p {
    font-size: 14px;
    line-height: 22px;
    color: var(--muted);
    letter-spacing: 0.06em;
    transition: color .2s;
}
.footer-secondary .col a:hover { color: var(--white); }

.footer-socials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid var(--gold-deep);
    color: var(--muted);
    font-size: 16px;
    transition: color .2s, border-color .2s;
}
.footer-socials a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* divider + copyright */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.footer-bottom hr {
    width: 100%; height: 1px;
    background: var(--divider);
    border: 0; margin: 0;
}
.footer-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-copyright-row p,
.footer-copyright-row a,
.footer-copyright-row span {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.08em;
    color: var(--dim);
}
.footer-copyright-row a:hover { color: var(--muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ==== cookie bar ==== */
.cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(0,0,0,0.96);
    border-top: 1px solid var(--gold-deep);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform .4s ease;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p {
    font-size: 13px;
    line-height: 20px;
    color: var(--muted);
    letter-spacing: 0.04em;
    flex: 1;
    min-width: 260px;
}
.cookie-bar p a { color: var(--gold); text-decoration: underline; }
.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-cookie {
    padding: 10px 20px;
    border: 1px solid var(--gold);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.btn-cookie.accept {
    background: var(--gold);
    color: var(--bg-main);
}
.btn-cookie:hover { background: var(--gold); color: var(--bg-main); }

/* ==== what-clients-say page ==== */
.reviews-section {
    padding: 64px 120px;
    width: 100%;
}
.reviews-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--bg-card);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 2px solid var(--gold);
}
.review-card .stars { display: flex; gap: 4px; }
.review-card .stars i { color: var(--gold); font-size: 14px; }
.review-card .review-text {
    font-size: 15px;
    line-height: 26px;
    color: var(--muted);
    letter-spacing: 0.04em;
    font-style: italic;
    flex: 1;
}
.review-card .reviewer { display: flex; flex-direction: column; gap: 2px; }
.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}
.reviewer-company {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--gold);
}

/* ==== stats bar ==== */
.stats-bar {
    padding: 48px 120px;
    width: 100%;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}
.stats-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-number {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ==== responsive ==== */
@media (max-width: 1199.98px) {
    .hero { padding: 76px 0 0; }
    .feature, .price-section, .contact-section, .testimonials-section,
    .why-section, .page-hero, .text-section, .about-grid, .team-section,
    .reviews-section, .stats-bar { padding-left: 32px; padding-right: 32px; }
    .feature { padding-top: 64px; padding-bottom: 64px; }
    .feature-inner { gap: 40px; }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .why-inner { grid-template-columns: 1fr; }
    .why-left { position: static; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-container { padding: 48px; }
}

@media (max-width: 809.98px) {
    .site-header .main-nav { display: none; }
    .site-header .btn-header { display: none; }
    .nav-toggle { display: flex; }
    .mobile-nav { display: flex; }

    .hero { padding: 72px 0 0; }
    .hero-image { aspect-ratio: auto; height: 280px; }
    .hero-logo-box { padding: 20px 24px; }
    .hero-logo-box h1 { font-size: 28px; }

    .feature, .price-section, .contact-section, .testimonials-section,
    .why-section, .page-hero, .text-section, .about-grid, .team-section,
    .reviews-section, .stats-bar { padding-left: 16px; padding-right: 16px; }
    .feature { padding-top: 48px; padding-bottom: 48px; }
    .feature-inner { flex-direction: column; }
    .feature.reverse .feature-inner { flex-direction: column; }
    .feature-img { width: 100%; aspect-ratio: 16/10; flex: none; order: 1; }
    .feature-body { order: 0; width: 100%; }

    .price-grid { grid-template-columns: 1fr; }
    .testimonials-grid, .reviews-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .about-grid-inner { grid-template-columns: 1fr; gap: 32px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }

    .footer-container { padding: 40px 16px; }
    .footer-grid { flex-direction: column; gap: 32px; }
    .footer-main, .footer-right { width: 100%; align-items: flex-start; }
    .footer-secondary { gap: 24px; justify-content: flex-start; }
    .footer-copyright-row { flex-direction: column; align-items: flex-start; }

    .page-hero { padding-top: 100px; padding-bottom: 40px; }
    .page-hero h1 { font-size: 36px; }

    .cookie-bar { flex-direction: column; align-items: flex-start; padding: 20px 16px; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .footer-links { gap: 12px; }
}
