/* ================================================================
   KIT: SAAS LANDING
   Тёмный hero + белый body в стиле SaaS/POS продуктов
   Вдохновлён: Poze — зелёный акцент (#06b453), Inter font,
   centered hero text, gradient pricing section, scroll-sliders,
   icon-boxes с номерами, tabbed features, FAQ accordion
   Идеал: SaaS, POS-системы, b2b software, tech продукты
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
   AI: Замени --accent-1 и --accent-2 на цвета из color_palette
---------------------------------------------------------------- */
:root {
    --bg-primary:    #ffffff;
    --bg-secondary:  #f6fafa;
    --bg-card:       #ffffff;
    --bg-card-hover: #f0faf5;
    --bg-dark:       #0d0c17;
    --bg-gradient-dark: linear-gradient(150deg, #0f1a2e 0%, #0d1f14 100%);
    --text-primary:  #0d0c17;
    --text-secondary: #6b6b6b;
    --text-muted:    #a0a0a0;
    --footer-dark-bg: #0d0c17;
    --border-color:  #e8e8e8;
    --border-light:  rgba(13, 12, 23, 0.07);

    --accent-1: #06b453;
    --accent-2: #00d06b;
    --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --accent-glow: 0 8px 28px rgba(6, 180, 83, 0.25);

    --font-heading: 'Inter', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --fs-h1: 64px;
    --fs-h2: 44px;
    --fs-h3: 30px;
    --fs-h4: 24px;
    --fs-h5: 18px;
    --fs-body: 16px;
    --fs-small: 14px;

    --fw-bold:     700;
    --fw-semibold: 600;
    --fw-medium:   500;
    --fw-regular:  400;
    --fw-light:    300;

    --radius-sm:   6px;
    --radius-md:   10px;
    --radius-lg:   16px;
    --radius-xl:   22px;
    --radius-pill: 100px;

    --transition:      all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 14px 48px rgba(0, 0, 0, 0.14);
    --shadow-xl: 0 24px 72px rgba(0, 0, 0, 0.18);

    --section-padding: 100px 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;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: var(--accent-1); transition: var(--transition); }
a:hover { color: var(--accent-2); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; border: 0; }
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.25;
    margin-bottom: 20px;
}
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: 15px; }

.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: 60px 0; }
.section-padding-lg { padding: 130px 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-dark-section    { background-color: var(--bg-dark); }
.bg-gradient-custom { background: var(--accent-gradient); color: #fff; }
.bg-gradient-section { background: var(--bg-gradient-dark); }

.bg-dark-section h1, .bg-dark-section h2, .bg-dark-section h3,
.bg-dark-section h4, .bg-dark-section h5, .bg-dark-section h6,
.bg-gradient-section h1, .bg-gradient-section h2,
.bg-gradient-section h3, .bg-gradient-section h4 { color: #fff; }
.bg-dark-section p, .bg-dark-section li, .bg-dark-section span:not(.badge),
.bg-gradient-section p, .bg-gradient-section li { color: rgba(255,255,255,0.75); }
.bg-dark-section a:not(.btn-custom),
.bg-gradient-section a:not(.btn-custom) { color: rgba(255,255,255,0.85); }
.bg-dark-section .counter-number,
.bg-gradient-section .counter-number { color: #fff; }
.bg-dark-section .counter-label,
.bg-gradient-section .counter-label { color: rgba(255,255,255,0.55); }

.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 { color: rgba(255,255,255,0.85); }
.bg-gradient-custom .counter-number { color: #fff; }
.bg-gradient-custom .counter-label  { color: rgba(255,255,255,0.7); }

.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}
.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 — dot-bounce (matches Poze .cs_perloader style)
---------------------------------------------------------------- */
.preloader {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-inner  { display: flex; gap: 8px; flex-direction: column; align-items: center; }
.preloader-dots   { display: flex; gap: 8px; }
.preloader-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent-1);
    animation: preloadBounce 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; }
.preloader-dot:nth-child(3) { animation-delay: 0; }
.preloader-dot:nth-child(4) { animation-delay: 0.16s; }
.preloader-text { color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 2px; margin-top: 14px; }

@keyframes preloadBounce {
    0%, 80%, 100% { transform: scale(0); }
    40%           { transform: scale(1); }
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn-custom {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 30px;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary-custom {
    background: var(--accent-1);
    color: #fff; border-color: var(--accent-1);
    box-shadow: var(--accent-glow);
}
.btn-primary-custom:hover {
    background: #049944; border-color: #049944; color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(6,180,83,0.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-primary); border-color: var(--border-color);
}
.btn-outline-custom:hover {
    background: var(--accent-1); color: #fff; border-color: var(--accent-1);
    transform: translateY(-2px);
}

.btn-white-custom {
    background: #fff; color: var(--text-primary); border-color: #fff;
}
.btn-white-custom:hover {
    background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-link-custom {
    background: none; border: none;
    color: var(--accent-1); padding: 0;
    font-weight: var(--fw-semibold);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-link-custom:hover { color: var(--accent-2); }
.btn-link-custom i { transition: transform 0.2s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

/* ----------------------------------------------------------------
   HEADER — fixed, transparent → white on scroll
---------------------------------------------------------------- */
.site-header {
    position: fixed; top: 0; left: 0;
    width: 100%; z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: var(--fw-bold); color: var(--text-primary);
}
.site-logo:hover { color: var(--text-primary); }
.site-logo img { height: 40px; width: auto; }

/* white mode when on dark hero */
.site-header.hero-mode .site-logo { color: #fff; }
.site-header.hero-mode .main-nav .nav-link { color: rgba(255,255,255,0.85); }
.site-header.hero-mode .main-nav .nav-link:hover { color: var(--accent-1); }
.site-header.hero-mode .mobile-toggle .burger-line { background: #fff; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-medium); padding: 6px 0; position: relative;
}
.main-nav .nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--accent-1);
    transition: width 0.3s 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 { display: flex; align-items: center; gap: 10px; }

.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-medium); padding: 6px 0;
}
.nav-group-left .nav-link:hover, .nav-group-right .nav-link:hover { color: var(--accent-1); }

.mobile-toggle {
    display: none; flex-direction: column;
    justify-content: center; align-items: center;
    width: 40px; height: 40px;
    background: none; border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md); cursor: pointer; padding: 0; gap: 5px;
}
.mobile-toggle .burger-line {
    display: block; width: 20px; height: 2px;
    background: var(--text-primary); border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   HERO — centered text, dark bg with shapes (Poze style)
---------------------------------------------------------------- */
.hero-section {
    min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 110px; padding-bottom: 80px;
    background: var(--bg-dark);
    text-align: center;
}

.hero-section .hero-shape1 {
    position: absolute; top: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6,180,83,0.15), transparent 70%);
    border-radius: 50%; z-index: 0;
}
.hero-section .hero-shape2 {
    position: absolute; bottom: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(6,180,83,0.08), transparent 70%);
    border-radius: 50%; z-index: 0;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-image   { position: relative; z-index: 2; margin-top: 60px; }
.hero-image img {
    border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
    max-width: 100%; margin: 0 auto;
}

.hero-tagline {
    display: inline-block;
    background: rgba(6,180,83,0.12);
    color: var(--accent-2);
    font-size: 13px; font-weight: var(--fw-semibold);
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 22px;
    border: 1px solid rgba(6,180,83,0.2);
}

.hero-title {
    font-size: var(--fs-h1); font-weight: var(--fw-bold);
    color: #fff; line-height: 1.15; margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px; color: rgba(255,255,255,0.65);
    margin-bottom: 38px; line-height: 1.7;
    max-width: 600px; margin-left: auto; margin-right: auto;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ----------------------------------------------------------------
   SECTION HEADER
---------------------------------------------------------------- */
.section-header { margin-bottom: 56px; }
.section-header.text-center { text-align: center; }
.section-header.text-center .section-desc { max-width: 580px; margin: 0 auto; }

.section-tagline {
    display: inline-block; font-size: 13px;
    font-weight: var(--fw-semibold); color: var(--accent-1);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.section-title {
    font-size: var(--fs-h2); font-weight: var(--fw-bold);
    color: var(--text-primary); line-height: 1.2; margin-bottom: 14px;
}
.section-desc { font-size: var(--fs-body); color: var(--text-secondary); line-height: 1.7; }

/* ----------------------------------------------------------------
   ICON BOXES — numbered style (01, 02 badges, from Poze)
---------------------------------------------------------------- */
.icon-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.icon-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: rgba(6,180,83,0.3);
}

.icon-wrap {
    width: 60px; height: 60px;
    background: rgba(6,180,83,0.08);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; transition: var(--transition);
}
.icon-wrap i, .icon-wrap svg { color: var(--accent-1); font-size: 26px; }
.icon-box:hover .icon-wrap { background: var(--accent-1); }
.icon-box:hover .icon-wrap i, .icon-box:hover .icon-wrap svg { color: #fff; }

/* Numbered badge variant */
.icon-number-box {
    background: var(--accent-1); color: #fff;
    font-size: 14px; font-weight: var(--fw-bold);
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}

.icon-title { font-size: 18px; font-weight: var(--fw-semibold); margin-bottom: 8px; }
.icon-text  { font-size: 14px; color: var(--text-secondary); }

.icon-box-horizontal {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 22px; background: var(--bg-card);
    border-radius: var(--radius-md); border-left: 3px solid var(--accent-1);
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.icon-box-horizontal:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.icon-box-horizontal .icon-wrap { flex-shrink: 0; margin-bottom: 0; }

/* ----------------------------------------------------------------
   ABOUT / FEATURES SPLIT
---------------------------------------------------------------- */
.about-section { position: relative; }
.about-image   { position: relative; }
.about-image .img-main  { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-image .img-small {
    position: absolute; bottom: 24px; left: -24px;
    width: 44%; border-radius: var(--radius-md);
    box-shadow: var(--shadow-md); border: 4px solid #fff;
}
.experience-badge {
    position: absolute; bottom: 20px; right: -16px;
    background: var(--accent-1); color: #fff;
    padding: 20px 24px; border-radius: var(--radius-md);
    text-align: center; box-shadow: var(--shadow-md); z-index: 2;
}
.experience-badge .badge-number {
    font-size: 40px; font-weight: var(--fw-bold); line-height: 1; display: block;
}
.experience-badge .badge-text { font-size: 13px; opacity: 0.9; }

.about-list { list-style: none; padding: 0; }
.about-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 9px 0; border-bottom: 1px solid var(--border-light);
    font-size: var(--fs-body); color: var(--text-secondary);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--accent-1); margin-top: 2px; flex-shrink: 0; }

/* ----------------------------------------------------------------
   SERVICE / PRODUCT CARDS
---------------------------------------------------------------- */
.service-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%;
    border: 1px solid var(--border-light);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: rgba(6,180,83,0.25); }
.service-card .card-image { height: 220px; overflow: hidden; position: relative; }
.service-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .card-image img { transform: scale(1.06); }
.service-card .card-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent-1); color: #fff;
    font-size: 11px; font-weight: var(--fw-semibold);
    padding: 4px 12px; border-radius: var(--radius-pill);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.service-card .card-body  { padding: 24px; }
.service-card .card-title { font-size: 18px; font-weight: var(--fw-semibold); margin-bottom: 8px; }
.service-card .card-text  { font-size: var(--fs-small); color: var(--text-secondary); margin-bottom: 16px; }
.service-card .card-footer-custom { padding: 0 24px 24px; }

/* ----------------------------------------------------------------
   COUNTER SECTION
---------------------------------------------------------------- */
.counter-section { background: var(--bg-dark); padding: var(--section-padding); }
.counter-item { text-align: center; }
.counter-item .counter-icon { font-size: 46px; color: var(--accent-1); margin-bottom: 12px; display: block; }
.counter-number {
    font-size: 52px; font-weight: var(--fw-bold); color: #fff;
    line-height: 1; display: block; margin-bottom: 8px;
}
.counter-label { font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); }

/* ----------------------------------------------------------------
   PRICING TABLE — 3-column with gradient section bg (Poze style)
---------------------------------------------------------------- */
.pricing-section { position: relative; overflow: hidden; }
.pricing-section-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-gradient-dark);
    z-index: 0;
}
.pricing-section-bg + .container { position: relative; z-index: 1; }

.pricing-card {
    background: #16213a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition); position: relative;
    overflow: hidden; height: 100%;
    color: rgba(255,255,255,0.8);
}
.pricing-card .plan-name    { color: rgba(255,255,255,0.5); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.pricing-card .plan-price   { font-size: 48px; font-weight: var(--fw-bold); color: #fff; line-height: 1; }
.pricing-card .plan-period  { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 26px; }
.pricing-card.featured {
    background: var(--bg-card);
    border-color: var(--accent-1);
    box-shadow: 0 0 40px rgba(6,180,83,0.15);
    color: var(--text-secondary);
}
.pricing-card.featured .plan-name   { color: var(--text-muted); }
.pricing-card.featured .plan-price  { color: var(--text-primary); }
.pricing-card.featured .plan-period { color: var(--text-muted); }
.pricing-card:hover { transform: translateY(-6px); }

.plan-features { list-style: none; padding: 0; margin: 0 0 28px; }
.plan-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing-card.featured .plan-features li { border-bottom-color: var(--border-light); color: var(--text-secondary); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--accent-1); font-size: 13px; flex-shrink: 0; }
.plan-features li.disabled { opacity: 0.4; }
.plan-features li.disabled i { color: currentColor; }
.pricing-badge {
    position: absolute; top: -1px; right: 24px;
    background: var(--accent-1); color: #fff;
    font-size: 11px; font-weight: var(--fw-semibold);
    padding: 6px 14px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* ----------------------------------------------------------------
   TESTIMONIALS — horizontal scroll slider
---------------------------------------------------------------- */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 34px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition); min-width: 320px;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.quote-icon   { color: var(--accent-1); font-size: 32px; margin-bottom: 16px; display: block; }
.quote-text   { font-style: italic; color: var(--text-secondary); line-height: 1.7; margin-bottom: 22px; font-size: 15px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border-light); }
.author-image { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-name  { font-weight: var(--fw-semibold); color: var(--text-primary); font-size: 15px; }
.author-role  { font-size: 12px; color: var(--text-muted); }
.star-rating  {
    display: flex; gap: 4px; margin-bottom: 0; margin-top: 4px;
}
.star-rating i { color: #ffc107; font-size: 13px; }

/* CSS-based star fill via custom property */
.cs_rating { display: flex; gap: 3px; margin-top: 6px; }
.cs_rating i { color: #ffc107; font-size: 13px; }

/* ----------------------------------------------------------------
   PROCESS STEPS
---------------------------------------------------------------- */
.process-item {
    background: var(--bg-card); border-radius: var(--radius-md);
    padding: 28px 24px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition); height: 100%; position: relative;
}
.process-item:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.step-number {
    font-size: 60px; font-weight: var(--fw-bold); color: var(--accent-1);
    opacity: 0.12; position: absolute; top: 10px; right: 16px; line-height: 1;
}
.step-icon  { font-size: 38px; color: var(--accent-1); margin-bottom: 14px; display: block; }
.step-title { font-size: 18px; font-weight: var(--fw-semibold); margin-bottom: 8px; }
.step-text  { font-size: var(--fs-small); color: var(--text-secondary); }

/* ----------------------------------------------------------------
   TEAM / BLOG / PORTFOLIO
---------------------------------------------------------------- */
.team-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.team-card .team-image { position: relative; overflow: hidden; height: 260px; }
.team-card .team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-image img { transform: scale(1.05); }
.team-card .team-body { padding: 20px; }
.team-name { font-size: 17px; font-weight: var(--fw-semibold); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--accent-1); margin-bottom: 12px; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a {
    width: 34px; height: 34px; background: var(--bg-secondary);
    color: var(--text-secondary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; transition: var(--transition);
}
.team-social a:hover { background: var(--accent-1); color: #fff; }

.portfolio-item { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.portfolio-item img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,180,83,0.85), transparent);
    opacity: 0; transition: opacity 0.35s ease;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat   { font-size: 12px; color: rgba(200,255,200,0.8); text-transform: uppercase; letter-spacing: 1px; }
.portfolio-title { font-size: 17px; color: #fff; font-weight: var(--fw-semibold); }

.blog-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%;
    border: 1px solid var(--border-light);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.blog-card .card-image { height: 210px; overflow: hidden; }
.blog-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .card-image img { transform: scale(1.06); }
.blog-card .card-body  { padding: 24px; }
.card-meta  { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.blog-card .card-title { font-size: 17px; font-weight: var(--fw-semibold); margin-bottom: 8px; line-height: 1.4; }
.blog-card .card-text  { font-size: var(--fs-small); color: var(--text-secondary); }

/* ----------------------------------------------------------------
   FAQ ACCORDION
---------------------------------------------------------------- */
.faq-section .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 10px; overflow: hidden;
}
.faq-section .accordion-button {
    font-family: var(--font-heading); font-weight: var(--fw-semibold);
    color: var(--text-primary); background: var(--bg-card); font-size: 16px;
}
.faq-section .accordion-button:not(.collapsed) {
    color: var(--accent-1); background: #f0faf5; box-shadow: none;
}
.faq-section .accordion-body { background: #f0faf5; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ----------------------------------------------------------------
   CTA — centered with gradient bg
---------------------------------------------------------------- */
.cta-section {
    background: var(--accent-gradient);
    padding: var(--section-padding);
    position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
    content: ''; position: absolute; top: -80px; left: -80px;
    width: 360px; height: 360px;
    background: rgba(255,255,255,0.06); border-radius: 50%;
}
.cta-section::after {
    content: ''; position: absolute; bottom: -60px; right: -60px;
    width: 280px; height: 280px;
    background: rgba(0,0,0,0.08); border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: var(--fs-h2); font-weight: var(--fw-bold); color: #fff; margin-bottom: 14px; }
.cta-text  { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 34px; }

/* ----------------------------------------------------------------
   NEWSLETTER / FORM / FOOTER / SCROLL-TOP / MARQUEE
---------------------------------------------------------------- */
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
    flex: 1; min-width: 200px;
    padding: 12px 20px; border: 1.5px solid var(--border-color);
    border-radius: var(--radius-pill); font-family: var(--font-body);
    font-size: var(--fs-body); background: var(--bg-primary);
    color: var(--text-primary); transition: border-color 0.3s ease;
}
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--accent-1); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }

.form-custom .form-control {
    border: 1.5px solid var(--border-color); border-radius: var(--radius-md);
    padding: 12px 18px; font-family: var(--font-body); font-size: var(--fs-body);
    color: var(--text-primary); background: var(--bg-primary); transition: border-color 0.3s ease;
}
.form-custom .form-control:focus { outline: none; box-shadow: none; border-color: var(--accent-1); }
.form-custom label { font-weight: var(--fw-medium); color: var(--text-primary); margin-bottom: 6px; font-size: 15px; }
.form-custom .form-control::placeholder { color: var(--text-muted); }

.site-footer { background: var(--footer-dark-bg); color: rgba(255,255,255,0.65); padding: 80px 0 0; }
.footer-widget { margin-bottom: 40px; }
.widget-title {
    font-size: 16px; font-weight: var(--fw-semibold); color: #fff;
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-1); width: max-content;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6); font-size: var(--fs-small);
    transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--accent-1); padding-left: 4px; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    color: rgba(255,255,255,0.6); font-size: var(--fs-small); margin-bottom: 12px;
}
.footer-contact li i { color: var(--accent-1); margin-top: 2px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55); font-size: 15px; transition: var(--transition);
}
.footer-social a:hover { background: var(--accent-1); border-color: var(--accent-1); color: #fff; }
.footer-bottom {
    margin-top: 40px; padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    text-align: center; font-size: 13px; color: rgba(255,255,255,0.4);
}

.scroll-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px; background: var(--accent-1); color: #fff;
    border: none; border-radius: var(--radius-pill);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; visibility: hidden;
    transition: var(--transition); box-shadow: var(--accent-glow); z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent-2); transform: translateY(-3px); }

.marquee-section { overflow: hidden; padding: 20px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.marquee-track {
    display: flex; gap: 48px; align-items: center;
    animation: marqueeScroll 30s linear infinite; width: max-content;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    display: flex; align-items: center; gap: 10px;
    font-size: var(--fs-body); font-weight: var(--fw-semibold);
    color: var(--text-muted); white-space: nowrap;
}
.marquee-item i { color: var(--accent-1); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.line-divider { width: 50px; height: 3px; background: var(--accent-gradient); border-radius: 2px; margin: 14px auto; }
.line-divider.left { margin-left: 0; }
.serial-badge {
    font-size: 80px; font-weight: var(--fw-bold); color: transparent;
    -webkit-text-stroke: 2px var(--accent-1); line-height: 1; opacity: 0.1;
}
.text-stroke { color: transparent; -webkit-text-stroke: 1.5px var(--text-primary); }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1199px) {
    :root { --fs-h1: 52px; --fs-h2: 38px; --fs-h3: 26px; }
}
@media (max-width: 991px) {
    :root { --fs-h1: 42px; --fs-h2: 32px; --section-padding: 80px 0; }
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .about-image .img-small { display: none; }
    .experience-badge { right: 0; }
}
@media (max-width: 767px) {
    :root { --fs-h1: 34px; --fs-h2: 26px; --section-padding: 60px 0; }
    .hero-title { font-size: 32px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn-custom { width: 100%; max-width: 300px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { width: 100%; }
    .counter-number { font-size: 44px; }
    .pricing-card { min-width: unset; }
}

/* [PATCH] bg-dark-section gaps */
.bg-dark-section .hero-tagline { color: #fff; }
.bg-dark-section .section-tagline { color: var(--accent-1); }
.bg-dark-section .text-muted-custom { color: rgba(255,255,255,0.55); }
.bg-dark-section .footer-links a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.bg-dark-section .footer-links a:hover { color: #fff; }

/* [PATCH] text-force-light utilities */
/* Utility classes replacing inline color:#fff / color:rgba(255,255,255,...) */
.text-force-light { color: #fff !important; }
.text-force-light-muted { color: rgba(255,255,255,0.7) !important; }
.text-force-light-soft { color: rgba(255,255,255,0.55) !important; }
.text-force-accent { color: var(--accent-1) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
