/* ================================================================
   KIT: NEO-BRUTALIST
   Жёсткий контрастный стиль с острыми углами и тяжёлыми рамками
   Вдохновлён: Gumroad, Figma community, Bloomberg Businessweek
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
   AI: Замени --accent-1 и --accent-2 на цвета из color_palette
---------------------------------------------------------------- */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f0f0f0;
    --bg-card: #ffffff;
    --bg-card-hover: #fffbe6;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #777777;
    --footer-dark-bg: #000000;
    --border-color: #000000;
    --border-light: #333333;

    --accent-1: #ff5722;
    --accent-2: #ffeb3b;
    --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --accent-glow: 4px 4px 0 var(--accent-1);

    --font-heading: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --fs-h1: 64px;
    --fs-h2: 48px;
    --fs-h3: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --fs-body: 16px;
    --fs-small: 14px;

    --fw-bold: 900;
    --fw-semibold: 700;
    --fw-medium: 600;
    --fw-regular: 400;
    --fw-light: 400;

    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --radius-pill: 0px;

    --transition: all 0.15s ease;
    --transition-slow: all 0.3s ease;

    --shadow-sm: 3px 3px 0 #000;
    --shadow-md: 5px 5px 0 #000;
    --shadow-lg: 8px 8px 0 #000;
    --shadow-xl: 12px 12px 0 #000;

    --section-padding: 80px 0;
    --container-width: 1200px;
}

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--accent-1);
    transition: var(--transition);
    font-weight: var(--fw-medium);
}

a:hover {
    color: var(--text-primary);
    text-decoration: underline 3px wavy var(--accent-1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background: var(--accent-1);
    color: #fff;
}

/* ----------------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--accent-1); }
.text-accent-2 { color: var(--accent-2); }
.text-dark { color: var(--text-primary); }
.text-muted-custom { color: var(--text-muted); }

/* ----------------------------------------------------------------
   UTILITIES
---------------------------------------------------------------- */
.section-padding { padding: var(--section-padding); position: relative; }
.section-padding-sm { padding: 50px 0; }
.section-padding-lg { padding: 120px 0; }
.section-padding > .container { position: relative; z-index: 1; }

.bg-primary-custom { background-color: var(--bg-primary); }
.bg-secondary-custom { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--accent-gradient); }
.bg-gradient-custom {
    color: #fff;
}
.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: #fff; }
.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; }
.bg-gradient-custom .counter-number { color: #fff; }
.bg-gradient-custom .counter-label { color: rgba(255,255,255,0.7); }

.bg-dark-section {
    background-color: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
}
.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: #fff; }
.bg-dark-section p, .bg-dark-section li, .bg-dark-section span:not(.badge) { color: rgba(255,255,255,0.8); }
.bg-dark-section a:not(.btn-custom) { color: rgba(255,255,255,0.85); }
.bg-dark-section a:not(.btn-custom):hover { color: #fff; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }
.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

/* ----------------------------------------------------------------
   PRELOADER
---------------------------------------------------------------- */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-inner { display: flex; gap: 8px; }
.preloader-dot {
    width: 16px; height: 16px;
    background: var(--text-primary);
    animation: preloaderBounce 1.4s ease-in-out infinite both;
}
.preloader-dot:nth-child(1) { animation-delay: -0.32s; }
.preloader-dot:nth-child(2) { animation-delay: -0.16s; background: var(--accent-1); }
.preloader-dot:nth-child(3) { animation-delay: 0; }

@keyframes preloaderBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ----------------------------------------------------------------
   BUTTONS — chunky, hard shadow, no border-radius
---------------------------------------------------------------- */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    border-radius: 0;
    transition: var(--transition);
    border: 3px solid var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.btn-primary-custom {
    background: var(--accent-1);
    color: #fff;
    box-shadow: var(--shadow-md);
    border-color: var(--text-primary);
}

.btn-primary-custom:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
    color: #fff;
}

.btn-outline-custom {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-outline-custom:hover {
    background: var(--accent-2);
    color: var(--text-primary);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--accent-1);
    padding: 0;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-link-custom:hover { color: var(--text-primary); }
.btn-link-custom i { transition: transform 0.2s ease; }
.btn-link-custom:hover i { transform: translateX(6px); }

/* ----------------------------------------------------------------
   HEADER & NAVIGATION — bold top bar
---------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: var(--bg-primary);
    border-bottom: 3px solid var(--text-primary);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 28px;
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}
.site-logo:hover { color: var(--text-primary); }
.site-logo span {
    background: var(--accent-1);
    color: #fff;
    padding: 0 6px;
    margin-left: 2px;
}

.main-nav { display: flex; align-items: center; gap: 28px; }

.main-nav .nav-link {
    color: var(--text-primary);
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    padding: 6px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 3px;
    background: var(--accent-1);
    transition: width 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--accent-1); }
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { width: 100%; }

.header-cta { margin-left: 16px; }

/* Centered logo variant: split nav groups */
.nav-group-left, .nav-group-right { display: flex; align-items: center; gap: 28px; }
.nav-group-left .nav-link, .nav-group-right .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-bold); padding: 8px 0; text-transform: uppercase;
}
.nav-group-left .nav-link:hover, .nav-group-right .nav-link:hover { color: var(--accent-1); }
.nav-group-left ~ .main-nav { display: none; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 3px solid var(--text-primary);
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.mobile-toggle .burger-line {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ----------------------------------------------------------------
   HERO SECTION — bold, in-your-face
---------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
    border-bottom: 4px solid var(--text-primary);
}

.hero-section .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.08;
    mix-blend-mode: multiply;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 50%, var(--bg-secondary) 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-tagline {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding: 6px 16px;
    background: var(--accent-2);
    border: 2px solid var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: var(--fs-h1);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: var(--fw-medium);
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image { position: relative; z-index: 2; }
.hero-image img {
    border: 4px solid var(--text-primary);
    box-shadow: var(--shadow-xl);
}

/* ----------------------------------------------------------------
   SECTION TITLE
---------------------------------------------------------------- */
.section-header { margin-bottom: 60px; }

.section-tagline {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding: 4px 14px;
    background: var(--accent-2);
    border: 2px solid var(--text-primary);
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}
.section-header.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------------
   ICON BOX / FEATURE CARD — hard edges, visible borders
---------------------------------------------------------------- */
.icon-box {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px 28px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-md);
}

.icon-box:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
    background: var(--bg-card-hover);
}

.icon-box .icon-wrap {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-1);
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    border: 3px solid var(--text-primary);
    box-shadow: 3px 3px 0 #000;
}

.icon-box:hover .icon-wrap {
    background: var(--accent-2);
    color: var(--text-primary);
}

.icon-box .icon-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-bold);
    margin-bottom: 10px;
    color: var(--text-primary);
}

.icon-box .icon-text {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.icon-box-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.icon-box-horizontal:hover {
    box-shadow: var(--shadow-md);
    transform: translate(-2px, -2px);
}
.icon-box-horizontal .icon-wrap {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-1);
    color: #fff;
    font-size: 22px;
    border: 2px solid var(--text-primary);
}

/* ----------------------------------------------------------------
   ABOUT SECTION
---------------------------------------------------------------- */
.about-section .about-image {
    position: relative;
    overflow: hidden;
    border: 4px solid var(--text-primary);
    box-shadow: var(--shadow-lg);
}
.about-section .about-image img { width: 100%; }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--accent-2);
    color: var(--text-primary);
    padding: 16px 20px;
    text-align: center;
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-sm);
}
.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--fw-bold);
    line-height: 1;
}
.experience-badge .badge-text { font-size: var(--fs-small); }

.about-list { margin-top: 20px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 2px dashed var(--border-color);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--accent-1); font-size: 16px; }

/* ----------------------------------------------------------------
   COUNTER / STATS — big bold numbers
---------------------------------------------------------------- */
.counter-section {
    background: var(--text-primary);
    color: #fff;
    border-top: 4px solid var(--accent-1);
    border-bottom: 4px solid var(--accent-1);
}
.counter-item { text-align: center; padding: 20px; }
.counter-number {
    font-size: 56px;
    font-weight: var(--fw-bold);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.counter-number .counter-suffix { color: var(--accent-1); }
.counter-label {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ----------------------------------------------------------------
   SERVICE CARDS
---------------------------------------------------------------- */
.service-card {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-md);
}
.service-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
}
.service-card .card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-bottom: 3px solid var(--text-primary);
}
.service-card .card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}
.service-card:hover .card-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.service-card .card-image .card-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--accent-2);
    color: var(--text-primary);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    border: 2px solid var(--text-primary);
}
.service-card .card-body { padding: 24px; }
.service-card .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-bold);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.service-card .card-title a { color: var(--text-primary); }
.service-card .card-title a:hover { color: var(--accent-1); }
.service-card .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.service-card .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px dashed var(--text-primary);
}
.service-card .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--fw-bold);
    color: var(--accent-1);
}

/* ----------------------------------------------------------------
   TEAM SECTION
---------------------------------------------------------------- */
.team-card { text-align: center; transition: var(--transition); }
.team-card:hover { transform: translate(-3px, -3px); }
.team-card .team-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-md);
}
.team-card .team-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(50%);
    transition: filter 0.3s ease, transform 0.4s ease;
}
.team-card:hover .team-image img { filter: grayscale(0%); transform: scale(1.03); }
.team-card .team-social {
    position: absolute;
    bottom: -60px; left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    transition: bottom 0.3s ease;
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-1);
    color: #fff;
    font-size: 14px;
    border: 2px solid #fff;
    transition: var(--transition);
}
.team-social a:hover { background: var(--accent-2); color: var(--text-primary); }
.team-card .team-name {
    font-size: var(--fs-h5);
    font-weight: var(--fw-bold);
    margin-bottom: 4px;
    color: var(--text-primary);
}
.team-card .team-role {
    font-size: var(--fs-small);
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ----------------------------------------------------------------
   TESTIMONIALS — quote blocks
---------------------------------------------------------------- */
.testimonial-card {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
}
.testimonial-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--accent-1);
}
.testimonial-card .quote-icon {
    font-size: 36px;
    color: var(--accent-1);
    margin-bottom: 16px;
}
.testimonial-card .quote-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: var(--fw-medium);
    border-left: none;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-card .author-image {
    width: 56px; height: 56px;
    object-fit: cover;
    border: 3px solid var(--text-primary);
}
.testimonial-card .author-name {
    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.testimonial-card .author-role {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
.testimonial-card .stars {
    color: var(--accent-1);
    margin-bottom: 14px;
}

/* ----------------------------------------------------------------
   PORTFOLIO / GALLERY
---------------------------------------------------------------- */
.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-md);
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(30%);
}
.portfolio-item:hover img { transform: scale(1.08); filter: grayscale(0%); }
.portfolio-item .portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #ffffff70;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: var(--fw-bold);
    margin-bottom: 6px;
}
.portfolio-overlay .portfolio-title {
    font-size: var(--fs-h5);
    color: #fff;
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
   FAQ / ACCORDION
---------------------------------------------------------------- */
.faq-section .accordion-item {
    background: var(--bg-card);
    border: 3px solid var(--text-primary) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: var(--fw-bold);
    padding: 18px 24px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.faq-section .accordion-button:not(.collapsed) {
    background: var(--accent-2);
    color: var(--text-primary);
}
.faq-section .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ----------------------------------------------------------------
   PRICING — stamp-like cards
---------------------------------------------------------------- */
.pricing-card {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-md);
}
.pricing-card.featured {
    background: var(--accent-2);
    border-color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
    content: '★ BEST';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--accent-1);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--fw-bold);
    letter-spacing: 2px;
    border: 2px solid var(--text-primary);
    border-top: none;
}
.pricing-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
}
.pricing-card .plan-name {
    font-size: var(--fs-h5);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: var(--fw-bold);
}
.pricing-card .plan-price {
    font-size: 60px;
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.pricing-card .plan-price .currency {
    font-size: 28px;
    vertical-align: top;
    color: var(--accent-1);
}
.pricing-card .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 28px;
}
.pricing-card .plan-features {
    text-align: left;
    margin-bottom: 28px;
}
.pricing-card .plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 2px dashed var(--text-primary);
    color: var(--text-secondary);
    font-size: var(--fs-small);
}
.pricing-card .plan-features li:last-child { border-bottom: none; }
.pricing-card .plan-features li i { color: var(--accent-1); }
.pricing-card .plan-features li.disabled {
    opacity: 0.35;
    text-decoration: line-through;
}

/* ----------------------------------------------------------------
   BLOG CARDS
---------------------------------------------------------------- */
.blog-card {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-md);
}
.blog-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}
.blog-card .card-image { height: 200px; overflow: hidden; border-bottom: 3px solid var(--text-primary); }
.blog-card .card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .card-image img { transform: scale(1.05); }
.blog-card .card-body { padding: 24px; }
.blog-card .card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-card .card-meta i { margin-right: 4px; color: var(--accent-1); }
.blog-card .card-title {
    font-size: 18px;
    font-weight: var(--fw-bold);
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
}
.blog-card .card-title a { color: var(--text-primary); }
.blog-card .card-title a:hover { color: var(--accent-1); }

/* ----------------------------------------------------------------
   CTA SECTION
---------------------------------------------------------------- */
.cta-section {
    background: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-top: 6px solid var(--accent-1);
    border-bottom: 6px solid var(--accent-1);
}
.cta-section .cta-content { position: relative; z-index: 2; }
.cta-section .cta-title { font-size: var(--fs-h2); color: #fff; }
.cta-section .cta-text { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; }
.cta-section p, .cta-section li { color: rgba(255,255,255,0.7); }
.cta-section .btn-custom {
    background: var(--accent-1);
    color: #fff;
    border-color: #fff;
}
.cta-section .btn-custom:hover {
    background: var(--accent-2);
    color: var(--text-primary);
    transform: translate(-3px, -3px);
}
.cta-section .cta-shape { display: none; }

/* ----------------------------------------------------------------
   NEWSLETTER
---------------------------------------------------------------- */
.newsletter-form {
    display: flex; gap: 0; max-width: 500px;
}
.newsletter-form input {
    flex: 1;
    background: var(--bg-primary);
    border: 3px solid var(--text-primary);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--accent-1); }

/* ----------------------------------------------------------------
   PROCESS / STEPS
---------------------------------------------------------------- */
.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.process-item .step-number {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-1);
    color: #fff;
    font-size: 28px;
    font-weight: var(--fw-bold);
    margin: 0 auto 20px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-sm);
}
.process-item .step-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-bold);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.process-item .step-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
}
.process-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 28px; right: -18px;
    font-size: 28px;
    font-weight: var(--fw-bold);
    color: var(--accent-1);
}

/* ----------------------------------------------------------------
   MARQUEE / TEXT SLIDER
---------------------------------------------------------------- */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.marquee-track .marquee-item {
    font-size: 64px;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    color: var(--text-primary);
}

.marquee-track .marquee-item.stroke {
    -webkit-text-stroke: 1px var(--text-primary);
    -webkit-text-fill-color: transparent;
}

.marquee-track .marquee-item.italic {
    font-style: italic;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer {
    background: var(--text-primary);
    color: rgba(255,255,255,0.7);
    border-top: 6px solid var(--accent-1);
}
.site-footer h1, .site-footer h2, .site-footer h3,
.site-footer h4, .site-footer h5 { color: #fff; }

.footer-widget .widget-title {
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--accent-1);
}
.footer-widget p { color: rgba(255,255,255,0.6); font-size: var(--fs-small); }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent-1);
    text-decoration: none;
    padding-left: 8px;
}
.footer-links li { margin-bottom: 10px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-small);
}
.footer-contact li i { color: var(--accent-1); margin-top: 4px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-1);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent-2);
    color: var(--text-primary);
}
.footer-bottom {
    border-top: 2px dashed rgba(255,255,255,0.15);
    padding: 24px 0;
    margin-top: 60px;
}
.footer-bottom p { margin: 0; font-size: var(--fs-small); color: rgba(255,255,255,0.4); }

.footer-policy { margin-top: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.footer-policy a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-policy a:hover { color: var(--accent-1); }

/* ----------------------------------------------------------------
   POLICY PAGES
---------------------------------------------------------------- */
.policy-content h1 { font-size: var(--fs-h2); margin-bottom: 24px; }
.policy-content h2 { font-size: var(--fs-h4); margin-top: 32px; margin-bottom: 16px; }
.policy-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.policy-content ul, .policy-content ol { color: var(--text-secondary); padding-left: 24px; margin-bottom: 16px; }
.policy-content li { margin-bottom: 8px; line-height: 1.7; }
.policy-content a { color: var(--accent-1); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

/* ----------------------------------------------------------------
   SCROLL TO TOP
---------------------------------------------------------------- */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--accent-1);
    color: #fff;
    border: 3px solid var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-sm);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-md); }

/* ----------------------------------------------------------------
   FORMS
---------------------------------------------------------------- */
.form-custom .form-control {
    background: var(--bg-primary);
    border: 3px solid var(--text-primary);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--fs-body);
}
.form-custom .form-control:focus {
    border-color: var(--accent-1);
    box-shadow: 4px 4px 0 var(--accent-1);
    background: var(--bg-primary);
    color: var(--text-primary);
}
.form-custom .form-control::placeholder { color: var(--text-muted); }
.form-custom textarea.form-control { min-height: 150px; resize: vertical; }

/* ----------------------------------------------------------------
   SWIPER OVERRIDES
---------------------------------------------------------------- */
.swiper-pagination-bullet { background: var(--text-primary); opacity: 0.3; width: 12px; height: 12px; }
.swiper-pagination-bullet-active { background: var(--accent-1); opacity: 1; width: 12px; }
.swiper-button-prev,
.swiper-button-next {
    width: 48px; height: 48px;
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--accent-1);
    color: #fff;
}

/* ----------------------------------------------------------------
   WOW.JS / ANIMATION HELPERS
---------------------------------------------------------------- */
.wow { visibility: hidden; }
.animated { visibility: visible; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float-anim { animation: floatUpDown 2.5s ease-in-out infinite; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1200px) { :root { --fs-h1: 52px; --fs-h2: 40px; } }

@media (max-width: 992px) {
    :root { --fs-h1: 42px; --fs-h2: 34px; --fs-h3: 26px; --section-padding: 70px 0; }
    .main-nav {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-primary);
        border-left: 3px solid var(--text-primary);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.25s ease;
        overflow-y: auto;
    }
    .main-nav.active { right: 0; }
    .main-nav .nav-link {
        display: block !important;
        font-size: 18px !important; padding: 14px 0 !important;
        border-bottom: 2px solid var(--text-primary); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    .main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--accent-1) !important; }
    .main-nav .nav-link::after { display: none; }
    .header-cta { display: none !important; }
    .mobile-toggle {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    .mobile-overlay {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .mobile-overlay.active { opacity: 1; visibility: visible; }
    .hero-title { font-size: var(--fs-h1); }
    .process-item:not(:last-child)::after { display: none; }
    .counter-number { font-size: 40px; }
}

@media (max-width: 768px) {
    :root { --fs-h1: 36px; --fs-h2: 28px; --fs-h3: 22px; --fs-h4: 20px; --section-padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .hero-section { min-height: auto; padding: 140px 0 80px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .pricing-card .plan-price { font-size: 44px; }
    .footer-bottom { text-align: center; }
}

@media (max-width: 576px) {
    :root { --fs-h1: 30px; --fs-h2: 24px; --fs-h3: 20px; --section-padding: 50px 0; }
    .testimonial-card { padding: 24px; }
    .pricing-card { padding: 24px; }
    .icon-box { padding: 24px 18px; }
}
