/* ============================================================
   KIT-LUXURY  —  Rolex / Cartier / Bulgari high-end feel
   Deep black-gold palette, Didot-style serif headings,
   thin hairline borders, generous letter-spacing, subtle reveals
   ============================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
    /* backgrounds */
    --bg-primary:    #0b0b0b;
    --bg-secondary:  #141414;
    --bg-card:       #1a1a1a;
    --bg-dark:       #000000;
    --bg-dark-card:  #111111;

    /* accent palette — gold / champagne */
    --accent-1:      #c9a84c;
    --accent-2:      #e8d5a3;
    --accent-3:      #8b7434;

    --accent-gradient: linear-gradient(135deg, var(--accent-3), var(--accent-1), var(--accent-2));
    --accent-gradient-hover: linear-gradient(135deg, var(--accent-2), var(--accent-1), var(--accent-3));
    --accent-soft:   rgba(201,168,76,.10);

    /* text */
    --text-heading:  #f5f0e8;
    --text-primary:  #f5f0e8;
    --text-body:     #a8a099;
    --text-secondary: #a8a099;
    --text-muted:    #6d665d;
    --text-on-accent:#0b0b0b;
    --footer-dark-bg: #000000;

    /* typography */
    --font-heading:  'Playfair Display', 'Didot', 'Times New Roman', serif;
    --font-body:     'Cormorant Garamond', 'Garamond', serif;
    --font-mono:     'JetBrains Mono', monospace;

    /* borders */
    --border-color:  rgba(201,168,76,.15);
    --border-light:  rgba(255,255,255,.05);
    --radius-sm:     2px;
    --radius-md:     4px;
    --radius-lg:     6px;
    --radius-xl:     8px;
    --radius-full:   9999px;

    /* shadows */
    --shadow-sm:     0 1px 4px rgba(0,0,0,.30);
    --shadow-md:     0 6px 24px rgba(0,0,0,.40);
    --shadow-lg:     0 16px 48px rgba(0,0,0,.50);
    --shadow-accent: 0 8px 32px rgba(201,168,76,.12);

    /* transitions */
    --transition:    .45s cubic-bezier(.25,.46,.45,.94);
    --transition-slow: .7s cubic-bezier(.25,.46,.45,.94);

    /* layout */
    --section-padding: 120px 0;
    --header-height:   80px;
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-body);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--accent-1); transition: var(--transition); }
a:hover { color: var(--accent-2); }

::selection {
    background: var(--accent-1);
    color: var(--bg-primary);
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: .01em;
}

h1 { font-size: 66px; font-weight: 400; font-style: italic; }
h2 { font-size: 48px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 17px; font-weight: 600; }

p { margin-bottom: 1rem; }

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-stroke {
    -webkit-text-stroke: 1px var(--accent-1);
    -webkit-text-fill-color: transparent;
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
.section-padding { padding: var(--section-padding); }

.bg-primary-custom { background-color: var(--bg-primary) !important; }
.bg-secondary-custom { background-color: var(--bg-secondary) !important; }
.bg-dark-custom, .bg-dark-section { background-color: var(--bg-dark) !important; color: var(--text-heading); }
.bg-dark-custom h1, .bg-dark-custom h2, .bg-dark-custom h3,
.bg-dark-custom h4, .bg-dark-custom h5, .bg-dark-custom h6,
.bg-dark-section h1, .bg-dark-section h2, .bg-dark-section h3,
.bg-dark-section h4, .bg-dark-section h5, .bg-dark-section h6 { color: var(--text-heading); }
.bg-dark-custom p, .bg-dark-custom li,
.bg-dark-section p, .bg-dark-section li { color: var(--text-body); }
.bg-dark-section a:not(.btn-custom) { color: rgba(255,255,255,0.8); }
.bg-accent-custom, .bg-gradient-custom {
    background: var(--accent-gradient) !important;
    color: var(--text-on-accent);
}
.bg-accent-custom h1, .bg-accent-custom h2, .bg-accent-custom h3,
.bg-accent-custom h4, .bg-accent-custom h5, .bg-accent-custom h6,
.bg-gradient-custom h1, .bg-gradient-custom h2, .bg-gradient-custom h3,
.bg-gradient-custom h4, .bg-gradient-custom h5, .bg-gradient-custom h6 { color: var(--text-on-accent); }
.bg-gradient-custom p, .bg-gradient-custom li,
.bg-gradient-custom span { color: rgba(255,255,255,0.85); }
.bg-gradient-custom a:not(.btn-custom) { color: #fff; }

.mb-6 { margin-bottom: 4rem !important; }
.mt-6 { margin-top: 4rem !important; }
.pt-6 { padding-top: 4rem !important; }
.pb-6 { padding-bottom: 4rem !important; }
.gap-30 { gap: 30px; }
.gap-24 { gap: 24px; }

.serial-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent-1);
    opacity: .25;
    position: absolute;
    bottom: 20px; right: 20px;
}

/* ─── LINE DIVIDERS ─────────────────────────────────────────── */
.line-divider {
    height: 1px;
    background: var(--border-color);
    border: none; margin: 0;
}
.line-divider.accent {
    height: 1px;
    background: var(--accent-gradient);
}

/* ─── PRELOADER ─────────────────────────────────────────────── */
.preloader {
    position: fixed; inset: 0;
    z-index: 99999;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s, visibility .7s;
}
.preloader.loaded { opacity: 0; visibility: hidden; }

.preloader-inner { display: flex; gap: 12px; }

.preloader-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-1);
    animation: luxPulse 1.2s ease-in-out infinite;
}
.preloader-dot:nth-child(2) { animation-delay: .2s; }
.preloader-dot:nth-child(3) { animation-delay: .4s; }

@keyframes luxPulse {
    0%, 100% { opacity: .2; transform: scale(.8); }
    50%      { opacity: 1;  transform: scale(1.2); }
}

/* ─── HEADER & NAVIGATION ──────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 0 56px;
    height: var(--header-height);
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(11,11,11,.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    width: 100%; max-width: 1280px;
    display: flex; align-items: center; justify-content: space-between;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 26px; font-weight: 400; font-style: italic;
    color: var(--text-heading);
    letter-spacing: .04em;
    display: flex; align-items: center; gap: 12px;
}
.site-logo img { height: 38px; width: auto; }
.site-logo:hover { color: var(--accent-1); }

.nav-group-left,
.nav-group-right { display: flex; align-items: center; }

.main-nav {
    display: flex; align-items: center; gap: 40px;
    list-style: none; margin: 0; padding: 0;
}
.nav-link {
    font-family: var(--font-body);
    font-size: 15px; font-weight: 500;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 6px 0;
    position: relative;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute; left: 50%; bottom: -3px;
    width: 0; height: 1px;
    background: var(--accent-1);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active { color: var(--accent-1); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.header-cta .btn-custom { padding: 10px 28px; font-size: 13px; }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px;
    position: relative;
    z-index: 1051;
}
.mobile-toggle span {
    display: block; width: 26px; height: 1px;
    background: var(--text-heading);
    position: absolute; left: 5px;
    transition: var(--transition);
}
.mobile-toggle span:nth-child(1) { top: 10px; }
.mobile-toggle span:nth-child(2) { top: 17px; width: 18px; }
.mobile-toggle span:nth-child(3) { top: 24px; }
.mobile-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); width: 26px; }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); width: 26px; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-custom {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 14px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}
.btn-custom i { font-size: 12px; }

.btn-primary-custom {
    background: var(--accent-1);
    color: var(--text-on-accent);
    border-color: var(--accent-1);
}
.btn-primary-custom:hover {
    background: transparent;
    color: var(--accent-1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline-custom {
    background: transparent;
    color: var(--accent-1);
    border-color: var(--accent-1);
}
.btn-outline-custom:hover {
    background: var(--accent-1);
    color: var(--text-on-accent);
    transform: translateY(-2px);
}

.btn-link-custom {
    background: none; border: none; padding: 0;
    color: var(--accent-1);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    gap: 8px;
}
.btn-link-custom:hover { gap: 14px; color: var(--accent-2); }
.btn-link-custom i { transition: var(--transition); }

/* ─── SECTION HEADER ────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}
.section-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--accent-1);
    margin-bottom: 20px;
}
.section-title {
    font-size: 48px; font-weight: 400;
    line-height: 1.12;
    margin-bottom: 20px;
}
.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ─── HERO SECTION ──────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(11,11,11,.85) 0%,
        rgba(11,11,11,.70) 50%,
        rgba(11,11,11,.92) 100%);
    z-index: 1;
}
.hero-section .container { position: relative; z-index: 2; }

.hero-tagline {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-body);
    font-size: 13px; font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--accent-1);
    margin-bottom: 30px;
}
.hero-tagline span {
    display: inline-block;
    width: 40px; height: 1px;
    background: var(--accent-1);
}

.hero-title {
    font-size: 72px; font-weight: 400;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: .01em;
    margin-bottom: 28px;
    max-width: 780px;
    color: var(--text-heading);
}
.hero-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 44px;
}
.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-image {
    position: relative;
    overflow: hidden;
}
.hero-image img {
    width: 100%; height: auto;
    display: block;
    filter: contrast(1.05) brightness(.95);
}

/* decorative shapes */
.hero-shape {
    position: absolute;
    pointer-events: none; z-index: 0;
}
.hero-shape.shape-1 {
    width: 1px; height: 200px;
    background: linear-gradient(to bottom, transparent, var(--accent-1), transparent);
    top: 10%; right: 10%;
    opacity: .3;
}
.hero-shape.shape-2 {
    width: 200px; height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-1), transparent);
    bottom: 20%; left: 5%;
    opacity: .3;
}

/* ─── ICON BOX / FEATURE CARD ───────────────────────────────── */
.icon-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 44px 34px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.icon-box::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 1px;
    background: var(--accent-1);
    transition: var(--transition);
}
.icon-box:hover {
    border-color: var(--accent-1);
}
.icon-box:hover::before { width: 100%; }

.icon-wrap {
    width: 60px; height: 60px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 22px;
    color: var(--accent-1);
    transition: var(--transition);
}
.icon-box:hover .icon-wrap {
    background: var(--accent-1);
    color: var(--text-on-accent);
    border-color: var(--accent-1);
}
.icon-title {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-heading);
}
.icon-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.icon-box-horizontal {
    display: flex; gap: 24px;
    text-align: left;
}
.icon-box-horizontal .icon-wrap { margin: 0; flex-shrink: 0; }

/* ─── ABOUT SECTION ─────────────────────────────────────────── */
.about-image {
    position: relative;
    overflow: hidden;
}
.about-image img {
    width: 100%; display: block;
    filter: contrast(1.05) brightness(.93);
}

.experience-badge {
    position: absolute; bottom: 28px; left: 28px;
    background: rgba(11,11,11,.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 22px 28px;
    display: flex; align-items: center; gap: 16px;
}
.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 48px; font-weight: 400;
    color: var(--accent-1);
    line-height: 1;
}
.experience-badge .label {
    font-size: 13px; font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.about-list {
    list-style: none; padding: 0; margin: 28px 0 0;
}
.about-list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-color);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i {
    color: var(--accent-1);
    font-size: 14px;
    margin-top: 5px;
}

/* ─── COUNTER / STATS ───────────────────────────────────────── */
.counter-section {
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.counter-item {
    text-align: center;
    padding: 36px 20px;
    position: relative;
}
.counter-item:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 25%; height: 50%;
    width: 1px;
    background: var(--border-color);
}
.counter-number {
    font-family: var(--font-heading);
    font-size: 56px; font-weight: 400;
    color: var(--accent-1);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: .02em;
}
.counter-label {
    font-size: 13px; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .18em;
}

/* ─── SERVICES / COURSE CARDS ───────────────────────────────── */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.service-card:hover {
    border-color: var(--accent-1);
}
.service-card .card-image {
    height: 240px; overflow: hidden;
}
.service-card .card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.3) contrast(1.05);
    transition: var(--transition-slow);
}
.service-card:hover .card-image img {
    filter: grayscale(0) contrast(1.05);
    transform: scale(1.04);
}

.card-tag {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--accent-1);
    border: 1px solid var(--accent-1);
    padding: 4px 14px;
    margin-bottom: 14px;
}
.service-card .card-body {
    padding: 32px; flex: 1;
    display: flex; flex-direction: column;
}
.service-card .card-title {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-heading);
}
.service-card .card-text {
    font-size: 16px; color: var(--text-muted);
    line-height: 1.7; flex: 1;
}
.card-footer-custom {
    padding: 20px 32px;
    border-top: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: space-between;
}
.card-price {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 400;
    color: var(--accent-1);
}

/* ─── TEAM SECTION ──────────────────────────────────────────── */
.team-card {
    text-align: center;
    transition: var(--transition);
}
.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 0;
}
.team-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.4);
    transition: var(--transition-slow);
}
.team-card:hover .team-image img {
    filter: grayscale(0);
    transform: scale(1.03);
}

.team-social {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
    display: flex; align-items: center; justify-content: center; gap: 14px;
    padding: 30px 20px 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}
.team-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}
.team-social a:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
    color: var(--text-on-accent);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 20px; font-weight: 400;
    margin: 22px 0 4px;
    color: var(--text-heading);
}
.team-role {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    padding-bottom: 20px;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonial-card {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 44px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    border-color: var(--accent-1);
}

.quote-icon {
    font-size: 32px;
    color: var(--accent-1);
    opacity: .3;
    margin-bottom: 20px;
}
.quote-text {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-heading);
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 28px;
}
.stars {
    color: var(--accent-1);
    font-size: 13px;
    margin-bottom: 18px;
    display: flex; gap: 4px;
}
.author {
    display: flex; align-items: center; gap: 16px;
}
.author-image {
    width: 50px; height: 50px;
    border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    border: 1px solid var(--border-color);
}
.author-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); }
.author-name {
    font-family: var(--font-heading);
    font-size: 16px; font-weight: 400;
    color: var(--text-heading);
}
.author-role {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* ─── PORTFOLIO / GALLERY ───────────────────────────────────── */
.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.4) contrast(1.05);
    transition: var(--transition-slow);
}
.portfolio-item:hover img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.80) 0%, transparent 50%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--accent-1);
    margin-bottom: 8px;
}
.portfolio-title {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 400;
    color: #fff;
    font-style: italic;
}

/* ─── FAQ / ACCORDION ───────────────────────────────────────── */
.faq-section .accordion-item {
    background: transparent;
    border: none !important;
    border-bottom: 1px solid var(--border-color) !important;
    border-radius: 0 !important;
}
.faq-section .accordion-button {
    font-family: var(--font-heading);
    font-size: 20px; font-weight: 400;
    color: var(--text-heading);
    background: transparent;
    padding: 26px 0;
    box-shadow: none !important;
    border-radius: 0;
}
.faq-section .accordion-button:not(.collapsed) {
    color: var(--accent-1);
    background: transparent;
}
.faq-section .accordion-button::after {
    background-image: none;
    content: '+';
    font-family: var(--font-heading);
    font-size: 28px; font-weight: 300;
    color: var(--accent-1);
    transition: var(--transition);
    line-height: 1;
}
.faq-section .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}
.faq-section .accordion-body {
    padding: 0 0 28px;
    font-size: 16px; color: var(--text-muted);
    line-height: 1.8;
}

/* ─── PRICING ───────────────────────────────────────────────── */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 48px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.pricing-card:hover {
    border-color: var(--accent-1);
}
.pricing-card.featured {
    border-color: var(--accent-1);
}
.pricing-card.featured::before {
    content: 'Популярный';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
    background: var(--accent-1);
    color: var(--text-on-accent);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    padding: 6px 22px;
}
.plan-name {
    font-family: var(--font-heading);
    font-size: 20px; font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 10px;
}
.plan-price {
    font-family: var(--font-heading);
    font-size: 58px; font-weight: 400;
    color: var(--accent-1);
    line-height: 1.1;
}
.plan-period {
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.plan-features {
    list-style: none; padding: 0;
    margin-bottom: 36px;
    text-align: left;
}
.plan-features li {
    padding: 12px 0;
    font-size: 15px;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-body);
}
.plan-features li i {
    color: var(--accent-1);
    font-size: 14px;
}

/* ─── BLOG CARDS ────────────────────────────────────────────── */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    border-color: var(--accent-1);
}
.blog-card .card-image {
    height: 240px; overflow: hidden;
}
.blog-card .card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.3);
    transition: var(--transition-slow);
}
.blog-card:hover .card-image img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.blog-card .card-body { padding: 30px; }
.blog-card .card-meta {
    display: flex; gap: 18px;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
}
.blog-card .card-meta i { margin-right: 6px; color: var(--accent-1); }
.blog-card .card-title {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 400;
    line-height: 1.3;
    color: var(--text-heading);
}
.blog-card .card-title:hover { color: var(--accent-1); }

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
    position: relative;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    padding: 100px 40px;
    text-align: center;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-title {
    font-family: var(--font-heading);
    font-size: 44px; font-weight: 400;
    color: var(--text-heading);
    font-style: italic;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 18px; color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px; margin-left: auto; margin-right: auto;
}

.cta-shape {
    position: absolute;
    pointer-events: none;
}
.cta-shape.shape-1 {
    width: 300px; height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-1), transparent);
    top: 40%; right: 0;
    opacity: .15;
}
.cta-shape.shape-2 {
    width: 1px; height: 200px;
    background: linear-gradient(to bottom, transparent, var(--accent-1), transparent);
    bottom: 0; left: 20%;
    opacity: .15;
}

/* ─── PROCESS / STEPS ───────────────────────────────────────── */
.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.step-number {
    width: 56px; height: 56px;
    border: 1px solid var(--accent-1);
    border-radius: 50%;
    color: var(--accent-1);
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 400;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    position: relative; z-index: 2;
    transition: var(--transition);
}
.process-item:hover .step-number {
    background: var(--accent-1);
    color: var(--text-on-accent);
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute; top: 28px;
    left: calc(50% + 36px); right: calc(-50% + 36px);
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 20px; font-weight: 400;
    margin-bottom: 10px;
    color: var(--text-heading);
}
.step-text {
    font-size: 15px; color: var(--text-muted);
    line-height: 1.7;
}

/* ─── NEWSLETTER ────────────────────────────────────────────── */
.newsletter-form {
    display: flex; gap: 14px;
    max-width: 480px;
}
.newsletter-form .form-control {
    flex: 1;
    padding: 14px 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    background: var(--bg-card);
    color: var(--text-body);
    transition: var(--transition);
    font-family: var(--font-body);
}
.newsletter-form .form-control:focus {
    border-color: var(--accent-1);
    box-shadow: none;
    outline: none;
}

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.form-custom .form-control,
.form-custom .form-select {
    padding: 14px 22px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    background: var(--bg-card);
    color: var(--text-body);
    transition: var(--transition);
    font-family: var(--font-body);
}
.form-custom .form-control:focus,
.form-custom .form-select:focus {
    border-color: var(--accent-1);
    box-shadow: none;
    outline: none;
}
.form-custom textarea.form-control { min-height: 150px; resize: vertical; }
.form-custom .form-label {
    font-size: 12px; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 8px;
}

/* ─── MARQUEE / TEXT SLIDER ─────────────────────────────────── */
.marquee-section {
    overflow: hidden;
    padding: 44px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.marquee-track {
    display: flex; align-items: center;
    gap: 56px;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    font-family: var(--font-heading);
    font-size: 64px; font-weight: 400;
    font-style: italic;
    color: var(--text-heading);
    white-space: nowrap;
    opacity: .08;
}
.marquee-item.stroke {
    -webkit-text-stroke: 1px var(--accent-1);
    -webkit-text-fill-color: transparent;
    opacity: .15;
}
.marquee-item .separator {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    margin: 0 28px;
    vertical-align: middle;
    opacity: .4;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 90px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-widget { margin-bottom: 40px; }
.widget-title {
    font-family: var(--font-heading);
    font-size: 20px; font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 16px;
}
.widget-title::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 30px; height: 1px;
    background: var(--accent-1);
}
.footer-about {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-muted);
}
.footer-links {
    list-style: none; padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 14px; }
.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition);
    letter-spacing: .04em;
}
.footer-links a:hover {
    color: var(--accent-1);
}
.footer-contact li {
    display: flex; gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
}
.footer-contact i {
    color: var(--accent-1);
    font-size: 14px;
    margin-top: 5px;
}

.footer-social {
    display: flex; gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
    color: var(--text-on-accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    padding: 28px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { margin: 0; font-size: 13px; color: var(--text-muted); letter-spacing: .06em; }
.footer-policy {
    display: flex; gap: 24px; flex-wrap: wrap;
}
.footer-policy a {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: .06em;
}
.footer-policy a:hover { color: var(--accent-1); }

/* ─── POLICY PAGES ──────────────────────────────────────────── */
.policy-content {
    padding: 130px 0 90px;
}
.policy-content h1 {
    font-size: 44px; font-weight: 400;
    font-style: italic;
    margin-bottom: 14px;
    color: var(--text-heading);
}
.policy-content h2 {
    font-size: 26px; font-weight: 400;
    margin-top: 44px;
    margin-bottom: 16px;
    color: var(--text-heading);
}
.policy-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 18px;
}
.policy-content ul {
    padding-left: 22px;
    margin-bottom: 18px;
}
.policy-content ul li {
    margin-bottom: 10px;
    color: var(--text-body);
    line-height: 1.8;
}
.policy-content a {
    color: var(--accent-1);
    text-decoration: underline;
}
.policy-content strong { color: var(--text-heading); }

/* ─── SCROLL TO TOP ─────────────────────────────────────────── */
.scroll-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 46px; height: 46px;
    border: 1px solid var(--accent-1);
    background: transparent;
    color: var(--accent-1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
}
.scroll-top.visible {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--accent-1);
    color: var(--text-on-accent);
}

/* ─── BOOTSTRAP NAV PILLS OVERRIDE ──────────────────────────── */
.nav-pills .nav-link {
    border-radius: 0;
    color: var(--text-muted);
    font-weight: 600;
    padding: 10px 28px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .14em;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: transparent;
    color: var(--accent-1);
    border-bottom-color: var(--accent-1);
}

/* ─── SWIPER OVERRIDES ──────────────────────────────────────── */
.swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: var(--text-muted);
    opacity: .3;
    border-radius: 0;
    transition: var(--transition);
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-1);
    width: 24px;
}
.swiper-button-prev,
.swiper-button-next {
    width: 48px; height: 48px;
    border: 1px solid var(--border-color);
    background: transparent;
    transition: var(--transition);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    color: var(--text-heading);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    border-color: var(--accent-1);
    background: var(--accent-1);
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after { color: var(--text-on-accent); }

/* ─── WOW.JS / ANIMATION HELPERS ───────────────────────────── */
.wow { visibility: hidden; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }
.delay-6 { animation-delay: .6s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes floatLeftRight {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(12px); }
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1200px) {
    h1, .hero-title { font-size: 52px; }
    h2, .section-title { font-size: 38px; }
}

@media (max-width: 992px) {
    .mobile-toggle { display: flex; align-items: center; justify-content: center; }

    .main-nav {
        position: fixed; top: 0; right: -100%;
        width: min(320px, 85vw); height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 110px 36px 40px;
        gap: 0;
        border-left: 1px solid var(--border-color);
        transition: right .5s cubic-bezier(.25,.46,.45,.94);
        z-index: 1050;
        overflow-y: auto;
    }
    .main-nav.open { right: 0; }
    .main-nav.active { right: 0; }
    .main-nav .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-group-left, .nav-group-right {
        flex-direction: column; width: 100%;
    }

    .mobile-overlay {
        display: none;
        position: fixed; inset: 0;
        background: rgba(0,0,0,.65);
        z-index: 1049;
    }
    .mobile-overlay.active { display: block; }

    .header-cta { display: none; }
    .site-header { padding: 0 24px; }
}

@media (max-width: 768px) {
    h1, .hero-title { font-size: 40px; }
    h2, .section-title { font-size: 30px; }
    .section-padding { padding: 80px 0; }
    .hero-section { min-height: auto; padding: 130px 0 80px; }
    .cta-section { padding: 70px 24px; }
    .cta-title { font-size: 32px; }
    .counter-number { font-size: 42px; }
    .counter-item:not(:last-child)::after { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    h1, .hero-title { font-size: 32px; }
    h2, .section-title { font-size: 26px; }
    .section-padding { padding: 64px 0; }
    .hero-buttons { flex-direction: column; }
    .btn-custom { width: 100%; justify-content: center; }
    .plan-price { font-size: 42px; }
    .marquee-item { font-size: 44px; }
}
