/* ==========================================================================
   RAFTAL TECHNOLOGIES - MAIN UNIFIED STYLESHEET
   Complete design system supporting all 8 pages:
   1. Homepage (/)
   2. Products Catalog (/products/)
   3. Zubolt Product Detail (/products/zubolt/)
   4. Solar CRM Product Detail (/products/solar-crm/)
   5. About Us (/about/)
   6. Contact (/contact/)
   7. Privacy Policy (/privacy-policy/)
   8. Terms of Service (/terms-of-service/)
   ========================================================================== */

/* --- CSS Reset & Global Tokens --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #080B12;
    --bg-dark-card: #0A0E1A;
    --bg-light: #FFFFFF;
    --bg-light-alt: #F8FAFC;
    
    --text-white: #FFFFFF;
    --text-slate-light: #94A3B8;
    --text-slate-dark: #64748B;
    --text-black: #0F172A;

    --brand-purple: #6366F1;
    --brand-violet: #8B5CF6;
    --brand-purple-grad: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --brand-glow: rgba(99, 102, 241, 0.4);

    --border-dark: #1E293B;
    --border-light: #E2E8F0;

    --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout width */
    --container-max-width: 1440px;
    --container-padding: clamp(20px, 4vw, 64px);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-black);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    background-color: #080B12;
    width: 100%;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo-icon {
    display: flex;
    align-items: center;
}

.brand-text {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #FFFFFF;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-purple-grad);
    border-radius: 2px;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    background: var(--brand-purple-grad);
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
    transition: all 0.2s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.5);
    color: #FFFFFF;
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-hero-primary {
    background: var(--brand-purple-grad);
    color: #FFFFFF;
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.45);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.6);
    color: #FFFFFF;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-amber-primary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
}

.btn-amber-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.6);
    color: #FFFFFF;
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
    background-color: var(--bg-dark);
    position: relative;
    padding: clamp(60px, 6vw, 110px) 0 clamp(70px, 7vw, 130px) 0;
    overflow: hidden;
    color: #FFFFFF;
    width: 100%;
}

.hero-glow {
    position: absolute;
    top: -100px;
    right: 12%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(99, 102, 241, 0.08) 50%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-waves-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1.15fr 1.05fr;
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    max-width: 640px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-tag .tag-icon {
    color: #818CF8;
    font-size: 0.95rem;
}

.hero-tag .tag-text {
    color: #818CF8;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero-heading {
    font-size: clamp(2.5rem, 4.2vw, 3.85rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 22px;
}

.gradient-purple {
    background: linear-gradient(135deg, #818CF8 0%, #A78BFA 50%, #C084FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtext {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* 3D Dashboard Mockup */
.hero-right {
    display: flex;
    justify-content: center;
    width: 100%;
}

.dashboard-mockup-wrapper {
    perspective: 1200px;
    width: 100%;
    max-width: 580px;
}

.dashboard-mockup-card {
    width: 100%;
    background: #0B0F1C;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 
        0 25px 60px -15px rgba(0, 0, 0, 0.75),
        0 0 35px rgba(99, 102, 241, 0.2);
    transform: rotateY(-6deg) rotateX(4deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.dashboard-mockup-card:hover {
    transform: rotateY(0deg) rotateX(0deg);
    box-shadow: 
        0 30px 70px -15px rgba(0, 0, 0, 0.85),
        0 0 45px rgba(99, 102, 241, 0.3);
}

.dash-header {
    background: #080B14;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dash-dot.red { background: #EF4444; }
.dash-dot.yellow { background: #F59E0B; }
.dash-dot.green { background: #10B981; }

.dash-layout {
    display: grid;
    grid-template-columns: 95px 1fr;
    min-height: 290px;
}

.dash-sidebar {
    background: #070910;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-logo .mini-r {
    width: 24px;
    height: 24px;
    background: var(--brand-purple-grad);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.side-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.68rem;
    color: #64748B;
}

.side-item.active {
    background: rgba(99, 102, 241, 0.18);
    color: #A5B4FC;
}

.dash-main {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dash-stat-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
}

.dash-cards-container {
    display: flex;
    gap: 10px;
}

.dash-mini-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 4px 8px;
    display: flex;
    flex-direction: column;
}

.dm-title {
    font-size: 0.6rem;
    color: #64748B;
}

.dm-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
}

.dm-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #10B981;
}

.dash-chart-box {
    width: 100%;
    height: 90px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px;
}

.dash-chart-svg {
    width: 100%;
    height: 100%;
}

.dash-widgets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dash-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 8px;
}

.dw-title {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 6px;
}

.dw-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dw-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.64rem;
    color: #CBD5E1;
}

.dw-circle {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #64748B;
    display: inline-block;
    margin-right: 4px;
}

.dw-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.dw-dot.g { background: #10B981; }
.dw-dot.o { background: #F59E0B; }
.dw-dot.r { background: #EF4444; }
.dw-dot.b { background: #3B82F6; }

.dw-val {
    font-weight: 600;
    color: #94A3B8;
}

/* ==========================================================================
   OUR PRODUCTS (HOME SECTION)
   ========================================================================== */
.products-section {
    background-color: #FFFFFF;
    padding: clamp(70px, 7vw, 100px) 0 clamp(50px, 5vw, 70px) 0;
    width: 100%;
}

.section-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.products-header {
    text-align: center;
    margin-bottom: clamp(40px, 4vw, 60px);
}

.pill-tag {
    color: var(--brand-purple);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.products-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--text-black);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.products-sub {
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    color: var(--text-slate-dark);
    line-height: 1.6;
}

/* 2 Product Cards */
.products-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 36px);
    margin-bottom: clamp(40px, 4vw, 60px);
}

.product-box {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: clamp(28px, 3vw, 40px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(20px, 2.5vw, 32px);
    align-items: center;
    transition: all 0.3s ease;
}

.product-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(99, 102, 241, 0.1);
    border-color: #CBD5E1;
}

.product-header-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.product-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zubolt-bg {
    background: var(--brand-purple-grad);
}

.solar-bg {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.product-heading {
    font-size: clamp(1.4rem, 1.8vw, 1.75rem);
    font-weight: 700;
    color: var(--text-black);
}

.product-description {
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    color: var(--text-slate-dark);
    line-height: 1.55;
    margin-bottom: 24px;
    min-height: 65px;
}

.btn-zubolt {
    background: var(--brand-purple-grad);
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    gap: 8px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
    transition: all 0.2s ease;
}

.btn-zubolt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.45);
    color: #FFFFFF;
}

.btn-zubolt .arrow-up-right {
    font-size: 1.1rem;
    line-height: 1;
}

.badge-coming-soon-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    color: #D97706;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Product Preview Cards */
.mockup-sub-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.mock-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mock-dots {
    display: flex;
    gap: 4px;
}

.mock-dots span {
    width: 6px;
    height: 6px;
    background: #CBD5E1;
    border-radius: 50%;
}

.mock-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #6366F1;
    background: #EEF2FF;
    padding: 2px 7px;
    border-radius: 4px;
}

.mock-tag.orange {
    color: #D97706;
    background: #FEF3C7;
}

.mock-chart-line {
    width: 100%;
    height: 32px;
    margin-bottom: 10px;
}

.mock-chart-line svg {
    width: 100%;
    height: 100%;
}

.mock-table {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mt-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    font-size: 0.68rem;
    color: #334155;
    align-items: center;
}

.mt-row.header {
    font-weight: 700;
    color: #94A3B8;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 4px;
}

.mt-row .price {
    font-weight: 600;
}

.mt-row .badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    width: fit-content;
}

.badge.in-stock { background: #D1FAE5; color: #059669; }
.badge.low-stock { background: #FEF3C7; color: #D97706; }

/* Solar Kanban */
.mock-kanban {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}

.mk-col {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mk-head {
    font-size: 0.62rem;
    font-weight: 700;
    border-bottom: 2px solid;
    padding-bottom: 3px;
}

.mk-head.blue { border-color: #3B82F6; color: #1D4ED8; }
.mk-head.orange { border-color: #F59E0B; color: #B45309; }
.mk-head.green { border-color: #10B981; color: #047857; }

.mk-card {
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    border-radius: 4px;
    padding: 4px;
}

.mk-title { font-size: 0.62rem; font-weight: 600; color: #0F172A; }
.mk-sub { font-size: 0.55rem; color: #64748B; }

/* ==========================================================================
   4-PILLARS STRIP
   ========================================================================== */
.features-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 28px);
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: clamp(24px, 2.5vw, 36px) clamp(24px, 3vw, 40px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-circle-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.f-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 4px;
}

.f-desc {
    font-size: 0.85rem;
    color: var(--text-slate-dark);
    line-height: 1.45;
}

/* ==========================================================================
   OUR APPROACH SECTION
   ========================================================================== */
.approach-section {
    background-color: #FFFFFF;
    padding: 10px 0 clamp(60px, 6vw, 90px) 0;
    width: 100%;
}

.approach-box {
    background: #090D17;
    border: 1px solid #1E293B;
    border-radius: 22px;
    padding: clamp(36px, 4vw, 56px);
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(32px, 4vw, 60px);
    align-items: center;
    color: #FFFFFF;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    margin-bottom: clamp(32px, 3.5vw, 48px);
}

.approach-subtitle {
    color: #818CF8;
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.approach-headline {
    font-size: clamp(1.8rem, 2.4vw, 2.35rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.approach-paragraph {
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-approach {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
    padding: 11px 24px;
    font-size: 0.875rem;
    border-radius: 8px;
    text-decoration: none;
}

.btn-approach:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.approach-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.approach-steps-container::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #6366F1, #8B5CF6, #EC4899);
    opacity: 0.35;
    z-index: 1;
}

.approach-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon-wrap {
    width: 44px;
    height: 44px;
    background: #111625;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.approach-step:hover .step-icon-wrap {
    border-color: #818CF8;
    transform: translateY(-2px);
}

.step-dot {
    width: 7px;
    height: 7px;
    background: #A78BFA;
    border-radius: 50%;
    box-shadow: 0 0 8px #A78BFA;
    margin-bottom: 12px;
}

.s-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.s-desc {
    font-size: 0.75rem;
    color: #94A3B8;
    line-height: 1.4;
}

/* ==========================================================================
   BOTTOM CTA BANNER
   ========================================================================== */
.bottom-cta-banner {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 20px;
    padding: clamp(32px, 3vw, 44px) clamp(36px, 4vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 36px rgba(99, 102, 241, 0.28);
}

.cta-small {
    color: #E0E7FF;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 500;
    margin-bottom: 4px;
}

.cta-big {
    color: #FFFFFF;
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    font-weight: 800;
}

.btn-cta-dark {
    background: #151138;
    color: #FFFFFF;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.btn-cta-dark:hover {
    background: #0E0B28;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
}

/* ==========================================================================
   PRODUCTS PAGE SPECIFIC STYLES (/products/)
   ========================================================================== */
.page-header-section {
    background-color: var(--bg-dark);
    position: relative;
    padding: clamp(50px, 6vw, 90px) 0 clamp(60px, 7vw, 100px) 0;
    color: #FFFFFF;
    overflow: hidden;
    width: 100%;
}

.page-header-glow {
    position: absolute;
    top: -50px;
    right: 10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.page-header-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-main-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.page-main-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #94A3B8;
    line-height: 1.6;
}

.products-showcase-section {
    background-color: #FFFFFF;
    padding: clamp(60px, 6vw, 90px) 0 clamp(70px, 7vw, 110px) 0;
    width: 100%;
}

/* Big Product Feature Card */
.product-feature-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: clamp(32px, 3.5vw, 54px);
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: clamp(40px, 4vw, 60px);
    transition: all 0.3s ease;
}

.product-feature-card:hover {
    box-shadow: 0 16px 45px rgba(99, 102, 241, 0.08);
    border-color: #CBD5E1;
}

.pfc-brand-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.pfc-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zubolt-box {
    background: var(--brand-purple-grad);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.solar-box {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.pfc-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pfc-name {
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    font-weight: 800;
    color: var(--text-black);
}

.status-pill {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.pill-live {
    background: #DCFCE7;
    color: #16A34A;
    border: 1px solid #BBF7D0;
}

.pill-coming-soon {
    background: #FEF3C7;
    color: #D97706;
    border: 1px solid #FDE68A;
}

.pfc-tagline {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: var(--text-slate-dark);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pfc-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pfc-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    font-weight: 500;
    color: #334155;
}

.feat-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.purple-bullet {
    background: #EEF2FF;
}

.orange-bullet {
    background: #FEF3C7;
}

.btn-zubolt-lg {
    background: var(--brand-purple-grad);
    color: #FFFFFF;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
    text-decoration: none;
}

.btn-zubolt-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(99, 102, 241, 0.5);
    color: #FFFFFF;
}

.btn-zubolt-lg .arrow-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.btn-solar-lg {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
    text-decoration: none;
}

.btn-solar-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245, 158, 11, 0.5);
    color: #FFFFFF;
}

/* Large Mockup Windows */
.large-mockup-wrapper {
    width: 100%;
}

.large-mockup-frame {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.lmf-topbar {
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lmf-dots {
    display: flex;
    gap: 5px;
}

.lmf-dots span {
    width: 7px;
    height: 7px;
    background: #CBD5E1;
    border-radius: 50%;
}

.lmf-url {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    padding: 3px 12px;
    font-size: 0.68rem;
    color: #64748B;
    width: 70%;
}

.lmf-body {
    padding: 18px 20px;
}

/* Zubolt Mockup Internals */
.lmf-chart-section {
    margin-bottom: 16px;
}

.lmf-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.lmf-chart-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0F172A;
}

.lmf-badge-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #10B981;
    background: #DCFCE7;
    padding: 2px 8px;
    border-radius: 4px;
}

.lmf-chart-svg {
    width: 100%;
    height: 65px;
}

.lmf-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lmf-tr {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 1fr 1.1fr;
    align-items: center;
    font-size: 0.72rem;
    padding: 4px 0;
    color: #334155;
}

.lmf-tr.head {
    font-weight: 700;
    color: #94A3B8;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 6px;
}

.prod-sku {
    color: #6366F1;
    font-weight: 700;
    font-size: 0.65rem;
    margin-right: 4px;
}

.trend-val.down { color: #10B981; font-weight: 600; }
.trend-val.up { color: #EF4444; font-weight: 600; }
.trend-val.stable { color: #64748B; font-weight: 600; }

.status-tag {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 600;
    width: fit-content;
}

.status-tag.in-stock { background: #DCFCE7; color: #16A34A; }
.status-tag.low-stock { background: #FEF3C7; color: #D97706; }

/* Solar CRM Mockup Internals */
.crm-pipeline-grid, .solar-kanban-full-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.crm-col, .sk-col {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crm-col-header, .sk-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 2px solid;
}

.crm-col-header.c-blue, .sk-head.head-blue { border-color: #3B82F6; color: #1D4ED8; }
.crm-col-header.c-orange, .sk-head.head-orange { border-color: #F59E0B; color: #B45309; }
.crm-col-header.c-green, .sk-head.head-green { border-color: #10B981; color: #047857; }

.crm-count {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    font-size: 0.65rem;
    padding: 1px 6px;
    border-radius: 10px;
}

.crm-card, .sk-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.crm-card-title, .sk-card-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.crm-card-tags, .sk-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.tag-capacity, .t-kw {
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
}

.tag-price, .t-val {
    background: #F1F5F9;
    color: #475569;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
}

.crm-card-footer, .sk-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    color: #64748B;
}

.dot-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.dot-live.blue { background: #3B82F6; }
.dot-live.orange { background: #F59E0B; }
.dot-live.green { background: #10B981; }

.avatar-init {
    width: 16px;
    height: 16px;
    background: var(--brand-purple-grad);
    color: #FFFFFF;
    font-size: 0.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* More Products Banner */
.more-products-banner {
    background: #F8FAFC;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: clamp(28px, 3vw, 40px);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.mp-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mp-title {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 4px;
}

.mp-desc {
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    color: var(--text-slate-dark);
}

/* ==========================================================================
   PRODUCT DETAIL PAGES (/products/zubolt/ & /products/solar-crm/)
   ========================================================================== */
.product-hero-section {
    background-color: var(--bg-dark);
    position: relative;
    padding: 30px 0 clamp(60px, 7vw, 100px) 0;
    overflow: hidden;
    color: #FFFFFF;
    width: 100%;
}

.product-hero-glow {
    position: absolute;
    top: -80px;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.product-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Breadcrumbs */
.breadcrumbs-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 0.875rem;
}

.breadcrumbs-row a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs-row a:hover {
    color: #FFFFFF;
}

.bc-sep {
    color: #64748B;
}

.bc-current {
    color: #FFFFFF;
    font-weight: 600;
}

/* Product Hero Grid */
.product-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-hero-left {
    max-width: 600px;
}

.product-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.product-hero-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.badge-dark-live {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10B981;
    color: #34D399;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.badge-dark-coming {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid #F59E0B;
    color: #FBBF24;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-hero-tagline {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    font-weight: 600;
    color: #E2E8F0;
    line-height: 1.5;
    margin-bottom: 18px;
}

.product-hero-description {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: #94A3B8;
    line-height: 1.65;
    margin-bottom: 32px;
}

.product-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   KEY CAPABILITIES (3x2 GRID)
   ========================================================================== */
.capabilities-section {
    background-color: #FFFFFF;
    padding: clamp(70px, 7vw, 100px) 0 clamp(60px, 6vw, 90px) 0;
    width: 100%;
}

.section-header-center {
    text-align: center;
    margin-bottom: clamp(40px, 4vw, 60px);
}

.section-headline {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text-black);
    letter-spacing: -0.02em;
}

.capabilities-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 36px);
    margin-bottom: clamp(50px, 5vw, 70px);
}

.cap-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: clamp(24px, 2.5vw, 36px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.cap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.09);
    border-color: #CBD5E1;
}

.cap-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.cap-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 8px;
}

.cap-text {
    font-size: 0.875rem;
    color: var(--text-slate-dark);
    line-height: 1.5;
}

/* Detail Dark CTA Card */
.detail-cta-card {
    background: #090D17;
    border: 1px solid #1E293B;
    border-radius: 20px;
    padding: clamp(32px, 3.5vw, 48px) clamp(36px, 4vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.dcc-left {
    max-width: 650px;
}

.dcc-title {
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.dcc-desc {
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    color: #94A3B8;
    line-height: 1.55;
}

.btn-purple-cta {
    background: var(--brand-purple-grad);
    color: #FFFFFF;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
    white-space: nowrap;
    text-decoration: none;
}

.btn-purple-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.55);
    color: #FFFFFF;
}

/* ==========================================================================
   PLATFORM WORKFLOW (SOLAR CRM 8-STEP PROCESS)
   ========================================================================== */
.workflow-section {
    background-color: #FFFFFF;
    padding: clamp(70px, 7vw, 100px) 0 40px 0;
    width: 100%;
}

.workflow-steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8FAFC;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: clamp(24px, 2.5vw, 36px) clamp(20px, 2vw, 32px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow-x: auto;
}

.workflow-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 85px;
}

.wf-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.wf-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-black);
    white-space: nowrap;
}

.wf-arrow {
    color: #CBD5E1;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 4px;
}

/* ==========================================================================
   WHAT TO EXPECT (SOLAR CRM 2-COL LIST & HIGHLIGHT BOX)
   ========================================================================== */
.what-to-expect-section {
    background-color: #FFFFFF;
    padding: 30px 0 clamp(70px, 7vw, 100px) 0;
    width: 100%;
}

.expectations-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: clamp(50px, 5vw, 70px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.expect-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expect-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-target {
    color: #6366F1;
    font-size: 1.15rem;
    line-height: 1;
}

.expect-text {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 600;
    color: #1E293B;
}

/* Amber Highlight Box */
.solar-interest-box {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 20px;
    padding: clamp(32px, 3.5vw, 48px);
    text-align: center;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.08);
}

.sib-content {
    max-width: 720px;
    margin: 0 auto;
}

.sib-title {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    color: #78350F;
    line-height: 1.35;
    margin-bottom: 12px;
}

.sib-sub {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: #92400E;
    margin-bottom: 24px;
}

.btn-sib {
    display: inline-flex;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
}

/* ==========================================================================
   ABOUT US PAGE (/about/)
   ========================================================================== */
.about-hero-section {
    background-color: var(--bg-dark);
    position: relative;
    padding: clamp(60px, 6vw, 90px) 0 clamp(60px, 6vw, 90px) 0;
    color: #FFFFFF;
    overflow: hidden;
    width: 100%;
}

.about-hero-glow {
    position: absolute;
    top: -60px;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-main-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.about-main-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #94A3B8;
    line-height: 1.6;
}

.about-office-image-wrapper {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-preview-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-content-section {
    background-color: #FFFFFF;
    padding: clamp(60px, 6vw, 90px) 0 clamp(70px, 7vw, 110px) 0;
    width: 100%;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    margin-bottom: clamp(50px, 5vw, 70px);
}

.story-card {
    display: flex;
    flex-direction: column;
}

.story-title {
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 12px;
}

.story-text {
    font-size: clamp(0.925rem, 1.05vw, 1.025rem);
    color: var(--text-slate-dark);
    line-height: 1.65;
}

/* 4 Values Dark Strip */
.about-values-strip {
    background: #090D17;
    border: 1px solid #1E293B;
    border-radius: 20px;
    padding: clamp(24px, 2.5vw, 36px) clamp(24px, 3vw, 44px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 32px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.av-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.av-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #121829;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.av-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.av-desc {
    font-size: 0.78rem;
    color: #94A3B8;
}

/* ==========================================================================
   CONTACT PAGE (/contact/) & CAPTCHA STYLING
   ========================================================================== */
.contact-page-section {
    background-color: var(--bg-dark);
    position: relative;
    padding: clamp(60px, 7vw, 100px) 0 clamp(70px, 8vw, 120px) 0;
    color: #FFFFFF;
    overflow: hidden;
    width: 100%;
}

.contact-glow {
    position: absolute;
    top: -100px;
    right: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-heading {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.contact-subtext {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 36px;
}

.contact-methods-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ci-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #111625;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94A3B8;
}

.ci-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* Contact Form Card */
.contact-form-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: clamp(28px, 3.5vw, 44px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Form Alerts */
.form-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

.alert-icon {
    font-weight: 800;
    font-size: 1.15rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: #0F172A;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #6366F1;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 105px;
}

/* CAPTCHA Widget Box */
.captcha-container {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.captcha-label-row {
    margin-bottom: 10px;
}

.captcha-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.captcha-box-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-badge {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
    border: 1px solid #4338CA;
    border-radius: 8px;
    padding: 10px 18px;
    color: #A5B4FC;
    font-family: 'Plus Jakarta Sans', monospace;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
    user-select: none;
    white-space: nowrap;
}

.captcha-input {
    flex: 1;
    background: #FFFFFF !important;
}

.btn-contact-submit {
    width: 100%;
    background: var(--brand-purple-grad);
    color: #FFFFFF;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.55);
}

/* ==========================================================================
   LEGAL PAGES: PRIVACY POLICY & TERMS (/privacy-policy/ & /terms-of-service/)
   ========================================================================== */
.legal-doc-section {
    background-color: #FFFFFF;
    padding: clamp(60px, 6vw, 90px) 0 clamp(80px, 8vw, 120px) 0;
    width: 100%;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.legal-title {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-black);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 24px;
}

.legal-intro {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 32px;
}

.legal-block {
    margin-bottom: 28px;
}

.legal-section-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.legal-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
}

.legal-bullet-list {
    list-style: disc;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    color: #475569;
}

.legal-email-link {
    color: #6366F1;
    text-decoration: none;
    font-weight: 600;
}

.legal-email-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.site-footer {
    background-color: #080B12;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: clamp(50px, 5vw, 70px) 0 30px 0;
    color: #FFFFFF;
    width: 100%;
}

.footer-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 60px);
    margin-bottom: clamp(40px, 4vw, 60px);
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.6;
    max-width: 320px;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #FFFFFF;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text {
    font-size: 0.8125rem;
    color: #64748B;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

.social-icon:hover {
    color: #818CF8;
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container, .product-hero-grid, .about-hero-grid, .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left, .product-hero-left, .about-hero-left, .contact-info-col {
        max-width: 100%;
    }
    .hero-subtext, .product-hero-description, .contact-subtext {
        margin: 0 auto 30px auto;
    }
    .hero-btn-group, .product-hero-actions {
        justify-content: center;
    }
    .product-title-row {
        justify-content: center;
    }
    .contact-methods-list {
        align-items: center;
    }
    .products-cards-grid, .product-feature-card, .about-story-grid {
        grid-template-columns: 1fr;
    }
    .capabilities-grid-3x2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-strip, .about-values-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .approach-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .approach-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-cta-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 860px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0B0F1C;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 18px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
        width: 100%;
        padding: 8px 0;
    }

    .nav-links a.active::after {
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .product-box {
        grid-template-columns: 1fr;
    }
    .capabilities-grid-3x2 {
        grid-template-columns: 1fr;
    }
    .approach-steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .approach-steps-container::before {
        display: none;
    }
    .bottom-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
    .crm-pipeline-grid, .solar-kanban-full-preview {
        grid-template-columns: 1fr;
    }
    .expectations-grid-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 520px) {
    .features-strip, .about-values-strip {
        grid-template-columns: 1fr;
    }
    .approach-steps-container {
        grid-template-columns: 1fr;
    }
    .dash-layout {
        grid-template-columns: 1fr;
    }
    .dash-sidebar {
        display: none;
    }
    .more-products-banner {
        flex-direction: column;
        text-align: center;
    }
/* ==========================================================================
   CLOUDFLARE TURNSTILE WIDGET
   ========================================================================== */
.turnstile-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 65px;
    margin: 14px 0 20px 0;
}

