/*
Theme Name: My Theme
Author: You
Version: 1.0
*/

:root {
    --yellow: #FFD100;
    --black: #0D0D0D;
    --white: #FAFAFA;
    --gray: #1A1A1A;
    --mid: #2B2B2B;
    --accent: #FFD100;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 40px;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--yellow);
}
.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--yellow);
    letter-spacing: 0.08em;
    display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    padding: 120px 40px 80px;
    background: var(--black);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 20vw, 260px);
    color: rgba(255,209,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.04em;
    user-select: none;
}
.hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 2;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 24px;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}
.hero-title .hl { color: var(--yellow); }
.hero-title .strike {
    position: relative; display: inline-block;
    color: rgba(255,255,255,0.25);
}
.hero-title .strike::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 50%; height: 4px;
    background: var(--yellow);
    transform: rotate(-2deg);
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}
.hero-sub strong { color: var(--yellow); font-weight: 600; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 1rem; letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none; cursor: pointer; text-decoration: none;
    transition: transform 0.15s, background 0.2s;
}
.btn-primary:hover { background: #ffe540; transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1rem; letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-right {
    display: flex; flex-direction: column; gap: 16px;
}
.stat-card {
    background: var(--gray);
    border-left: 4px solid var(--yellow);
    padding: 20px 24px;
    display: flex; align-items: flex-start; gap: 16px;
    animation: slideIn 0.6s ease forwards;
    opacity: 0;
}
.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.25s; }
.stat-card:nth-child(3) { animation-delay: 0.4s; }
@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--yellow);
    line-height: 1;
    min-width: 80px;
}
.stat-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.stat-text strong { color: var(--white); display: block; font-size: 1rem; }

/* ─── SECTIONS COMMON ─── */
section { padding: 100px 40px; }
.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.section-label::before {
    content: '';
    display: block; width: 32px; height: 2px;
    background: var(--yellow);
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: 0.02em;
    line-height: 1.0;
    margin-bottom: 16px;
}
.section-title .hl { color: var(--yellow); }
.section-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 60px;
}
.container { max-width: 1200px; margin: 0 auto; }

/* ─── WHO ─── */
#audience { background: var(--gray); }
.aud-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 0;
}
.aud-card {
    background: var(--mid);
    padding: 32px 24px;
    border-top: 3px solid transparent;
    transition: border-color 0.2s, background 0.2s;
    cursor: default;
}
.aud-card:hover { border-top-color: var(--yellow); background: #222; }
.aud-icon { font-size: 2.2rem; margin-bottom: 14px; }
.aud-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1.15rem; letter-spacing: 0.05em;
    text-transform: uppercase; margin-bottom: 8px;
    color: var(--white);
}
.aud-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── SERVICES ─── */
#services { background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.svc-card {
    background: var(--gray);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}
.svc-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--yellow);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
}
.svc-card:hover { transform: translateY(-4px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(255,209,0,0.12);
    line-height: 1;
    margin-bottom: 8px;
}
.svc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
    color: var(--yellow);
}
.svc-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.svc-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255,209,0,0.1);
    color: var(--yellow);
    padding: 4px 10px;
    border: 1px solid rgba(255,209,0,0.2);
}
.price-block {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex; align-items: baseline; gap: 8px;
}
.price-from {
    font-size: 0.75rem; color: rgba(255,255,255,0.4);
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.price-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; color: var(--yellow);
}
.price-unit { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ─── WHY ─── */
#why { background: var(--yellow); color: var(--black); }
#why .section-label { color: var(--black); }
#why .section-label::before { background: var(--black); }
#why .section-title { color: var(--black); }
#why .section-sub { color: rgba(0,0,0,0.6); }
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: start;
}
.why-left {}
.why-statement {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 24px;
    border-left: 6px solid var(--black);
    padding-left: 20px;
}
.why-desc {
    font-size: 1rem;
    color: rgba(0,0,0,0.7);
    line-height: 1.75;
    margin-bottom: 32px;
}
.niches-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(0,0,0,0.5);
    margin-bottom: 12px;
}
.niches { display: flex; flex-wrap: wrap; gap: 10px; }
.niche-badge {
    background: var(--black);
    color: var(--yellow);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
}
.why-right { display: flex; flex-direction: column; gap: 16px; }
.why-point {
    background: var(--black);
    color: var(--white);
    padding: 24px;
    display: flex; align-items: flex-start; gap: 16px;
}
.why-icon {
    font-size: 1.6rem; flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--yellow);
    border-radius: 0;
}
.why-point-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1rem; letter-spacing: 0.05em;
    text-transform: uppercase; margin-bottom: 4px;
    color: var(--yellow);
}
.why-point-desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ─── CASES ─── */
#cases { background: var(--gray); }
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.case-card {
    background: var(--mid);
    aspect-ratio: 4/3;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px;
    border: 2px dashed rgba(255,209,0,0.2);
    transition: border-color 0.2s;
    cursor: default;
    padding: 24px;
    text-align: center;
}
.case-card:hover { border-color: var(--yellow); }
.case-placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.3;
}
.case-placeholder-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}
.case-hint {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.15);
    margin-top: 4px;
}

/* ─── TESTIMONIALS ─── */
#reviews { background: var(--black); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.review-card {
    background: var(--gray);
    aspect-ratio: 5/4;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px;
    border: 2px dashed rgba(255,209,0,0.15);
    transition: border-color 0.2s;
    cursor: default;
    padding: 24px;
    text-align: center;
}
.review-card:hover { border-color: var(--yellow); }
.review-placeholder-icon { font-size: 2rem; opacity: 0.25; }
.review-placeholder-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

/* ─── CONTACT ─── */
#contact { background: var(--gray); }
.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-left {}
.contact-left .section-sub { margin-bottom: 32px; }
.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-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.form-input, .form-select, .form-textarea {
    background: var(--mid);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--yellow);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--mid); }
.form-submit {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem; letter-spacing: 0.08em;
    padding: 18px 40px;
    border: none; cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: #ffe540; transform: translateY(-2px); }
.contact-right {}
.contact-info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem; letter-spacing: 0.04em;
    color: var(--yellow);
    margin-bottom: 28px;
}
.social-cards { display: flex; flex-direction: column; gap: 12px; }
.social-card {
    background: var(--mid);
    display: flex; align-items: center; gap: 20px;
    padding: 20px 24px;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: border-color 0.2s, background 0.2s;
}
.social-card:hover { border-left-color: var(--yellow); background: #252525; }
.social-logo { font-size: 1.8rem; }
.social-info {}
.social-platform {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 0.8rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--yellow);
    margin-bottom: 2px;
}
.social-handle {
    font-size: 1rem; color: var(--white); font-weight: 500;
}
.social-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

.promise-block {
    margin-top: 32px;
    background: var(--yellow);
    padding: 24px;
    color: var(--black);
}
.promise-block p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 600;
    line-height: 1.6;
}

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    border-top: 2px solid rgba(255,209,0,0.15);
    padding: 32px 40px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
}
.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem; color: var(--yellow); letter-spacing: 0.08em;
}
.footer-copy {
    font-size: 0.8rem; color: rgba(255,255,255,0.3);
    font-family: 'Barlow Condensed', sans-serif;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.3); text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }

/* ─── DIVIDER ─── */
.ticker-bar {
    background: var(--yellow);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-inner {
    display: inline-block;
    animation: ticker 30s linear infinite;
}
.ticker-item {
    display: inline-flex; align-items: center; gap: 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem; letter-spacing: 0.1em;
    color: var(--black);
    padding: 0 32px;
}
.ticker-dot { width: 6px; height: 6px; background: var(--black); border-radius: 50%; }
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    section { padding: 70px 20px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-right { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; align-items: flex-start; }
}

/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── STAR ICON ─── */
.star-icon::before { content: "✦"; }

/* ─── OFFER ─── */
#offer { background: var(--black); }
.offer-inner {
    background: var(--gray);
    border: 2px solid var(--yellow);
    max-width: 820px;
    padding: 56px 60px;
    position: relative;
    overflow: hidden;
}
.offer-inner::before {
    content: 'DEAL';
    position: absolute;
    right: -20px; top: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: rgba(255,209,0,0.05);
    pointer-events: none;
}
.offer-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 24px;
}
.offer-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4.5vw, 60px);
    line-height: 1.0;
    margin-bottom: 8px;
    color: var(--white);
}
.offer-headline .hl { color: var(--yellow); }
.offer-price-row {
    display: flex; align-items: baseline; gap: 20px;
    margin: 28px 0 32px;
}
.offer-price-new {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 9vw, 100px);
    color: var(--yellow);
    line-height: 1;
}
.offer-price-old {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    color: rgba(255,255,255,0.2);
    text-decoration: line-through;
    line-height: 1;
}
.offer-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 0; }
.offer-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.92rem; color: rgba(255,255,255,0.7);
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    line-height: 1.5;
}
.offer-list li::before {
    content: '→';
    color: var(--yellow);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
@media (max-width: 900px) {
    .offer-inner { padding: 36px 24px; }
}

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
