/* ================================================================
   TECGYM BRAND COLOR SYSTEM
   Primary: #FF8400 | Gray: #807E7E
   ================================================================ */

:root {
    --brand-orange: #FF8400;
    --brand-orange-hover: #E87500;
    --brand-orange-active: #CC6A00;
    --brand-orange-light: #FFF3E6;
    --brand-orange-extra-light: #FFF8F2;
    --brand-gray: #807E7E;
    --brand-gray-dark: #666666;
    --brand-gray-medium: #A3A3A3;
    --brand-gray-light: #E5E5E5;
    --brand-gray-bg: #F8F8F8;
    --neutral-white: #FFFFFF;
    --neutral-heading: #1F2937;
    --neutral-paragraph: #4B5563;
    --neutral-muted: #6B7280;
    --neutral-border: #E5E7EB;
    --neutral-divider: #F2F2F2;
    --neutral-footer: #111827;
    --neutral-bg: #FAFAFA;
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-orange: 0 8px 30px rgba(255, 132, 0, 0.20);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-btn: 50px;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-weight-heading: 700;
    --font-weight-body: 400;
}

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

body {
    font-family: var(--font-primary);
    background: var(--neutral-white);
    color: var(--neutral-paragraph);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--neutral-heading);
    font-weight: var(--font-weight-heading);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
}
h3 {
    font-size: 1.8rem;
}
h4 {
    font-size: 1.4rem;
}
h5 {
    font-size: 1.1rem;
}
h6 {
    font-size: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================================
   BUTTONS – Unified Design
   ================================================================ */
.btn {
    padding: 12px 32px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: var(--brand-orange);
    color: var(--neutral-white);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 132, 0, 0.35);
    color: var(--neutral-white);
}
.btn-primary:active {
    background: var(--brand-orange-active);
    transform: translateY(0);
}

.btn-outline-primary {
    background: transparent;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
}
.btn-outline-primary:hover {
    background: var(--brand-orange);
    color: var(--neutral-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-cta {
    background: var(--brand-orange);
    color: var(--neutral-white);
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 132, 0, 0.25);
    color: var(--neutral-white);
}

.btn-light {
    background: var(--neutral-white);
    color: var(--brand-orange);
}
.btn-light:hover {
    background: #f0f0f0;
    color: var(--brand-orange-hover);
}

.btn-lg {
    padding: 14px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--brand-orange);
    outline-offset: 2px;
}

/* ================================================================
   HEADER
   ================================================================ */
.hdr-6 {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #141e2b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hdr-6 .top-bar {
    background: rgba(14, 23, 34, 0.92);
    padding: 0.4rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: transform 0.4s ease, opacity 0.4s ease, max-height 0.4s ease, padding 0.4s ease;
    min-height: 40px;
    text-align: center;
    overflow: hidden;
}
.hdr-6 .top-bar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.hdr-6 .top-bar-closed {
    display: none;
}
.hdr-6 .top-bar p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin: 0;
    flex: 1;
}
.hdr-6 .top-bar p strong {
    color: var(--brand-orange);
    font-weight: 600;
}
.hdr-6 .top-bar-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    cursor: pointer;
    padding: 0 0.5rem;
    transition: color 0.2s;
    flex-shrink: 0;
}
.hdr-6 .top-bar-close:hover {
    color: var(--brand-orange);
}

.hdr-6 .main {
    padding: 0 2rem;
    background: #141e2b;
    position: relative;
    z-index: 2;
}
.hdr-6 .inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: relative;
}
.hdr-6 .logo-img {
    height: 44px;
    width: auto;
    display: block;
    flex-shrink: 0;
}
.hdr-6 .nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.hdr-6 .nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    transition: all 0.25s;
}
.hdr-6 .nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.hdr-6 .nav a.active {
    color: var(--brand-orange);
    font-weight: 600;
    background: rgba(255, 132, 0, 0.06);
}
.hdr-6 .btn-cta {
    background: var(--brand-orange);
    color: #fff !important;
    padding: 0.4rem 1.6rem !important;
    border-radius: 40px !important;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.hdr-6 .btn-cta:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 132, 0, 0.25);
}
.hdr-6 .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.hdr-6 .hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 4px;
    transition: 0.3s ease;
    transform-origin: center;
}

@media (max-width: 768px) {
    .hdr-6 .inner {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
        gap: 10px;
    }
    .hdr-6 .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
    }
    .hdr-6 .btn-cta {
        order: 1;
        padding: 0.3rem 1rem !important;
        font-size: 0.8rem;
        margin-left: auto;
    }
    .hdr-6 .logo-img {
        height: 38px;
        order: 0;
        margin-right: auto;
    }
    .hdr-6 .nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        order: 3;
        padding: 0.8rem 0 0.3rem 0;
        gap: 0.2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        margin-top: 8px;
    }
    .hdr-6 .nav.open {
        display: flex;
    }
    .hdr-6 .nav a {
        font-size: 1rem;
        padding: 0.7rem 1rem;
        text-align: center;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.8);
    }
    .hdr-6 .nav a:hover {
        background: rgba(255, 255, 255, 0.04);
    }
    .hdr-6 .nav a.active {
        color: var(--brand-orange);
        background: rgba(255, 132, 0, 0.08);
    }
    .hdr-6 .top-bar {
        padding: 0.3rem 0.8rem;
        min-height: 34px;
        gap: 0.5rem;
    }
    .hdr-6 .top-bar p {
        font-size: 0.6rem;
        letter-spacing: 0.3px;
    }
    .hdr-6 .top-bar-close {
        font-size: 0.9rem;
        padding: 0 0.3rem;
    }
    .hdr-6 .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hdr-6 .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .hdr-6 .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

@media (max-width: 480px) {
    .hdr-6 .btn-cta {
        font-size: 0.7rem;
        padding: 0.2rem 0.7rem !important;
    }
    .hdr-6 .logo-img {
        height: 32px;
    }
    .hdr-6 .hamburger span {
        width: 22px;
        height: 2px;
    }
    .hdr-6 .top-bar p {
        font-size: 0.5rem;
    }
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    background: var(--neutral-white) !important;
    padding: 60px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.hero-section .laptop-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.laptop-flat {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}
.laptop-flat .laptop-screen {
    background: #0d1117;
    border-radius: 22px 22px 6px 6px;
    padding: 22px 22px 0 22px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    border: 1px solid #30363d;
    position: relative;
    width: 100%;
}
.laptop-flat .laptop-screen::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: #1a1a2e;
    border-radius: 0 0 8px 8px;
    z-index: 10;
}
.laptop-flat .laptop-screen::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #0a0a1a;
    border-radius: 50%;
    z-index: 11;
    border: 1px solid #2d2d44;
}
.laptop-flat .laptop-screen-inner {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    width: 100%;
}
.laptop-flat .laptop-base {
    width: 60%;
    height: 14px;
    background: linear-gradient(180deg, #30363d, #0d1117);
    margin: 0 auto;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.laptop-flat .screen-content {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    flex: 1;
    width: 100%;
}
.laptop-flat .text-panel {
    padding: 36px 32px;
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}
.laptop-flat .text-panel h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 10px;
}
.laptop-flat .text-panel h3 .highlight {
    color: var(--brand-orange);
}
.laptop-flat .text-panel .lead-text {
    color: #4b5563;
    font-size: 1rem;
    margin: 12px 0 18px;
    line-height: 1.6;
}
.laptop-flat .text-panel .btn-group-sm {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}
.laptop-flat .text-panel .btn-group-sm .btn {
    padding: 10px 26px;
    font-size: 0.9rem;
}
.laptop-flat .text-panel .feature-tags-sm {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    margin-top: 6px;
}
.laptop-flat .text-panel .feature-tags-sm div h6 {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0;
}
.laptop-flat .text-panel .feature-tags-sm div p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.laptop-flat .image-panel {
    flex: 1 1 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    position: relative;
    min-height: 260px;
}
.laptop-flat .image-panel .carousel {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border-radius: 6px;
    overflow: hidden;
}
.laptop-flat .image-panel .carousel-inner,
.laptop-flat .image-panel .carousel-item {
    height: 100%;
    min-height: 260px;
}
.laptop-flat .image-panel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.laptop-flat .image-panel .carousel-control-prev,
.laptop-flat .image-panel .carousel-control-next {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    backdrop-filter: blur(4px);
}
.laptop-flat .image-panel .carousel-control-prev { left: 8px; }
.laptop-flat .image-panel .carousel-control-next { right: 8px; }
.laptop-flat .image-panel .carousel-control-prev-icon,
.laptop-flat .image-panel .carousel-control-next-icon {
    width: 14px;
    height: 14px;
}
.laptop-flat .image-panel .carousel-indicators {
    bottom: 6px;
    margin-bottom: 2px;
}
.laptop-flat .image-panel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    margin: 0 4px;
}
.laptop-flat .image-panel .carousel-indicators button.active {
    background: var(--brand-orange);
}
.laptop-flat .image-panel .image-counter {
    position: absolute;
    bottom: 14px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 5;
    pointer-events: none;
}

@media (max-width: 992px) {
    .laptop-flat .text-panel h3 { font-size: 1.6rem; }
    .laptop-flat .text-panel .lead-text { font-size: 0.95rem; }
    .laptop-flat .text-panel { padding: 28px 24px; }
    .laptop-flat .laptop-screen { padding: 18px 18px 0 18px; }
    .laptop-flat .image-panel .carousel { min-height: 220px; }
    .laptop-flat .image-panel .carousel-item { min-height: 220px; }
}
@media (max-width: 768px) {
    .hero-section { padding: 40px 0 60px; }
    .hero-section .laptop-wrapper { padding: 0 12px; }
    .laptop-flat .laptop-screen { padding: 14px 14px 0 14px; }
    .laptop-flat .laptop-base { width: 55%; height: 10px; }
    .laptop-flat .screen-content { flex-direction: column; }
    .laptop-flat .text-panel {
        padding: 20px 18px;
        flex: 1 1 auto;
    }
    .laptop-flat .text-panel h3 { font-size: 1.3rem; }
    .laptop-flat .text-panel .lead-text { font-size: 0.85rem; }
    .laptop-flat .text-panel .btn-group-sm .btn {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    .laptop-flat .image-panel {
        flex: 1 1 auto;
        min-height: 180px;
        padding: 8px;
    }
    .laptop-flat .image-panel .carousel {
        min-height: 180px;
    }
    .laptop-flat .image-panel .carousel-item {
        min-height: 180px;
    }
    .laptop-flat .laptop-screen::before,
    .laptop-flat .laptop-screen::after { display: none; }
    .laptop-flat .image-panel .carousel-control-prev,
    .laptop-flat .image-panel .carousel-control-next {
        width: 28px;
        height: 28px;
    }
    .laptop-flat .image-panel .carousel-control-prev-icon,
    .laptop-flat .image-panel .carousel-control-next-icon {
        width: 12px;
        height: 12px;
    }
    .laptop-flat .image-panel .image-counter { font-size: 0.65rem; padding: 2px 10px; bottom: 10px; right: 14px; }
}
@media (max-width: 576px) {
    .hero-section { padding: 30px 0 40px; }
    .hero-section .laptop-wrapper { padding: 0 8px; }
    .laptop-flat .text-panel h3 { font-size: 1.1rem; }
    .laptop-flat .text-panel .lead-text { font-size: 0.8rem; }
    .laptop-flat .text-panel .btn-group-sm {
        flex-direction: column;
        width: 100%;
    }
    .laptop-flat .text-panel .btn-group-sm .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    .laptop-flat .text-panel .feature-tags-sm {
        gap: 10px 16px;
    }
    .laptop-flat .text-panel .feature-tags-sm div h6 { font-size: 0.7rem; }
    .laptop-flat .text-panel .feature-tags-sm div p { font-size: 0.6rem; }
    .laptop-flat .image-panel .carousel {
        min-height: 140px;
    }
    .laptop-flat .image-panel .carousel-item {
        min-height: 140px;
    }
    .laptop-flat .laptop-screen {
        padding: 10px 10px 0 10px;
        border-radius: 16px 16px 4px 4px;
    }
    .laptop-flat .laptop-base {
        height: 8px;
        width: 50%;
    }
    .laptop-flat .image-panel .image-counter {
        font-size: 0.6rem;
        padding: 1px 10px;
        bottom: 6px;
        right: 10px;
    }
    .laptop-flat .image-panel .carousel-control-prev,
    .laptop-flat .image-panel .carousel-control-next {
        width: 32px;
        height: 32px;
    }
    .laptop-flat .image-panel .carousel-control-prev { left: 4px; }
    .laptop-flat .image-panel .carousel-control-next { right: 4px; }
    .laptop-flat .image-panel .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
}

/* ================================================================
   VIDEO SECTION
   ================================================================ */
.video-hero {
    background: linear-gradient(180deg, #FFF8F2 0%, #FFF3E6 100%) !important;
    padding: 60px 0 80px;
}
.video-hero h2 {
    color: var(--neutral-heading);
}
.video-hero .text-muted {
    color: var(--brand-gray) !important;
}
.video-hero .get-demo-btn {
    background: var(--brand-orange) !important;
    color: var(--neutral-white) !important;
    padding: 12px 36px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-orange);
}
.video-hero .get-demo-btn:hover {
    background: var(--brand-orange-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 132, 0, 0.35);
    color: var(--neutral-white) !important;
}

.video-wrapper-custom {
    max-width: 820px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    border: 4px solid var(--brand-orange);
    box-shadow: 0 0 0 2px rgba(255, 132, 0, 0.12), 0 8px 30px rgba(255, 132, 0, 0.20);
    background: #0f0f1a;
    position: relative;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.video-wrapper-custom:hover {
    border-color: var(--brand-orange-hover);
    box-shadow: 0 0 0 3px rgba(255, 132, 0, 0.20), 0 12px 40px rgba(255, 132, 0, 0.30);
}
.video-wrapper-custom .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}
.video-wrapper-custom .video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #0f0f1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.4s ease;
    z-index: 2;
}
.video-wrapper-custom .video-poster .poster-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
}
.video-wrapper-custom .video-poster .play-btn-circle {
    position: relative;
    z-index: 3;
    background: var(--brand-orange);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 132, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.video-wrapper-custom .video-poster .play-btn-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(255, 132, 0, 0.55);
}
.video-wrapper-custom .video-poster .play-btn-circle i {
    color: #fff;
    font-size: 32px;
    margin-left: 4px;
}
.video-wrapper-custom .video-poster .play-label {
    position: relative;
    z-index: 3;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 16px;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.35);
    padding: 6px 18px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}
.video-wrapper-custom .video-iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.video-wrapper-custom .video-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video-wrapper-custom .video-poster.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .video-hero { padding: 40px 0 50px; }
    .video-hero h2 { font-size: 1.6rem; }
    .video-wrapper-custom .video-poster .play-btn-circle { width: 56px; height: 56px; }
    .video-wrapper-custom .video-poster .play-btn-circle i { font-size: 24px; }
    .video-wrapper-custom .video-poster .play-label { font-size: 0.7rem; padding: 4px 14px; margin-top: 12px; }
    .video-hero .get-demo-btn { padding: 10px 28px; font-size: 0.9rem; }
}
@media (max-width: 576px) {
    .video-hero h2 { font-size: 1.3rem; }
    .video-hero .text-muted { font-size: 0.9rem; }
    .video-wrapper-custom { border-width: 3px; border-radius: 10px; }
    .video-wrapper-custom .video-poster .play-btn-circle { width: 48px; height: 48px; }
    .video-wrapper-custom .video-poster .play-btn-circle i { font-size: 20px; }
    .video-wrapper-custom .video-poster .play-label { font-size: 0.6rem; padding: 3px 12px; margin-top: 10px; }
    .video-hero .get-demo-btn { padding: 8px 20px; font-size: 0.85rem; width: 100%; max-width: 280px; }
}

/* ================================================================
   LOGO SLIDER
   ================================================================ */
.logo-slider-section {
    background: #141e2b !important;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.slider-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFFFF !important;
    margin-bottom: 28px;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 20px;
    position: relative;
}
.slider-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--brand-orange);
    border-radius: 4px;
}
.slider-title-wrapper {
    text-align: center;
}

.slider-row {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    margin-bottom: 20px;
}
.slider-row:last-child {
    margin-bottom: 0;
}
.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}
.row-top .slider-track {
    animation: scrollRight 28s linear infinite;
}
.row-bottom .slider-track {
    animation: scrollLeft 28s linear infinite;
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.slider-row:hover .slider-track {
    animation-play-state: paused;
}

.slide-item {
    flex: 0 0 auto;
    width: 130px;
    height: 115px;
    background: #FFFFFF;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: default;
}
.slide-item:hover {
    transform: scale(1.06) translateY(-6px);
    box-shadow: 0 8px 40px rgba(255, 132, 0, 0.15);
    background: #ffffff;
}
.slide-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .slider-title { font-size: 0.9rem; padding: 0 15px; }
    .slide-item { width: 100px; height: 88px; padding: 12px 14px; }
    .slider-track { gap: 20px; }
    .slider-row { padding: 10px 0; }
}
@media (max-width: 480px) {
    .logo-slider-section { padding: 30px 0 20px; }
    .slider-title { font-size: 0.7rem; letter-spacing: 1px; padding: 0 10px; }
    .slide-item { width: 80px; height: 70px; padding: 8px 10px; }
    .slider-track { gap: 14px; }
    .slider-row { padding: 8px 0; }
}

/* ================================================================
   FEATURE TABS
   ================================================================ */
.automation-analytics-section {
    background: var(--neutral-white) !important;
}
.automation-analytics-section h2 {
    color: var(--neutral-heading);
}
.text-orange {
    color: var(--brand-orange) !important;
}

.feature-tab-btn {
    background: #F3F4F6 !important;
    color: var(--neutral-paragraph) !important;
    border: none !important;
    transition: all 0.3s ease;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 14px;
}
.feature-tab-btn.active {
    background: var(--brand-orange) !important;
    color: var(--neutral-white) !important;
}
.feature-tab-btn.inactive {
    opacity: 0.7;
}
.feature-tab-btn:hover:not(.active) {
    background: #E5E7EB !important;
}
.feature-content-card {
    border: 3px solid var(--brand-orange) !important;
    border-top: none !important;
    border-radius: 0 0 var(--radius) var(--radius) !important;
    background: var(--neutral-white) !important;
    box-shadow: var(--shadow-soft) !important;
}
.feature-content-card .content-title {
    color: var(--neutral-heading) !important;
}
.feature-content-card .content-description {
    color: var(--neutral-paragraph) !important;
}
.feature-content-card .explore-link {
    color: var(--brand-orange) !important;
}
.feature-content-card .explore-link:hover {
    color: var(--brand-orange-hover) !important;
}

@media (max-width: 768px) {
    .automation-analytics-section h2 { font-size: 1.6rem !important; }
    .feature-tabs { flex-direction: column !important; }
    .feature-tab-btn {
        border-radius: 0 !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    .feature-tab-btn:first-child {
        border-radius: var(--radius) var(--radius) 0 0 !important;
    }
    .feature-tab-btn:last-child {
        border-radius: 0 0 var(--radius) var(--radius) !important;
    }
    .feature-content-card {
        border-radius: 0 0 var(--radius) var(--radius) !important;
        padding: 20px !important;
    }
    .feature-content-card h3 { font-size: 1.2rem !important; }
    .feature-content-card .content-description { font-size: 0.9rem !important; }
}
@media (max-width: 576px) {
    .automation-analytics-section h2 { font-size: 1.3rem !important; }
    .feature-tab-btn {
        padding: 10px 16px !important;
        font-size: 0.8rem !important;
    }
    .feature-content-card { padding: 16px !important; }
    .feature-content-card h3 { font-size: 1rem !important; }
    .feature-content-card .content-description { font-size: 0.85rem !important; }
}

/* ================================================================
   STATS SECTION
   ================================================================ */
.stats-section .stats-header-wrapper {
    background: var(--brand-orange-extra-light) !important;
}
.stats-section .stats-subtitle {
    color: var(--brand-gray) !important;
}
.stats-section .stats-title {
    color: var(--neutral-heading) !important;
}
.stats-section .stats-bar {
    background: var(--brand-orange-extra-light) !important;
}
.stats-section .stat-value {
    color: var(--brand-orange) !important;
}
.stats-section .stat-name {
    color: var(--neutral-paragraph) !important;
}
.stats-section .stat-icon {
    color: var(--brand-orange) !important;
    font-size: 2.2rem;
}
.stats-divider {
    width: 1px;
    height: 50px;
    background: var(--neutral-border);
}

@media (max-width: 768px) {
    .stats-section .stats-title { font-size: 1.5rem !important; }
    .stats-section .stats-subtitle { font-size: 0.9rem !important; }
    .stats-section .stats-content { gap: 1.5rem !important; flex-wrap: wrap !important; }
    .stats-section .stat-value { font-size: 1.5rem !important; }
    .stats-section .stat-name { font-size: 0.8rem !important; }
    .stats-section .stat-icon { font-size: 1.5rem !important; }
    .stats-divider { display: none; }
}
@media (max-width: 576px) {
    .stats-section .stats-title { font-size: 1.2rem !important; }
    .stats-section .stat-value { font-size: 1.2rem !important; }
    .stats-section .stat-name { font-size: 0.7rem !important; }
    .stats-section .stats-content { gap: 0.75rem !important; }
    .stats-section .stat-item { min-width: 80px; }
}

/* ================================================================
   FEATURES GRID
   ================================================================ */
.features-section {
    background: var(--neutral-bg) !important;
}
.features-section .main-title {
    color: var(--neutral-heading) !important;
}
.features-section .main-subtitle {
    color: var(--neutral-paragraph) !important;
}
.feature-card {
    background: var(--neutral-white) !important;
    border: 1px solid var(--neutral-border) !important;
    border-radius: var(--radius) !important;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-orange) !important;
    box-shadow: 0 8px 25px rgba(255, 132, 0, 0.15) !important;
}
.feature-card .icon-badge {
    background: var(--brand-orange-light) !important;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.feature-card .icon-badge i {
    color: var(--brand-orange) !important;
    font-size: 2rem;
}
.feature-card .feature-title {
    color: var(--brand-orange) !important;
    font-weight: 700;
}
.feature-card .feature-desc {
    color: var(--neutral-paragraph) !important;
}
.explore-link {
    color: var(--brand-orange) !important;
}
.explore-link:hover {
    color: var(--brand-orange-hover) !important;
}

@media (max-width: 768px) {
    .features-section .main-title { font-size: 1.6rem !important; }
    .features-section .main-subtitle { font-size: 0.95rem !important; }
    .feature-card { padding: 24px 18px; }
    .feature-card .icon-badge { width: 60px; height: 60px; }
    .feature-card .icon-badge i { font-size: 1.5rem; }
    .feature-card .feature-title { font-size: 1.1rem; }
    .feature-card .feature-desc { font-size: 0.9rem; }
}
@media (max-width: 576px) {
    .features-section .main-title { font-size: 1.3rem !important; }
    .features-section .main-subtitle { font-size: 0.85rem !important; }
    .feature-card { padding: 18px 14px; }
    .feature-card .icon-badge { width: 50px; height: 50px; }
    .feature-card .icon-badge i { font-size: 1.2rem; }
    .feature-card .feature-title { font-size: 0.95rem; }
    .feature-card .feature-desc { font-size: 0.8rem; }
}

/* ================================================================
   REVIEWS CAROUSEL
   ================================================================ */
.client-review-section {
    background: var(--neutral-white) !important;
    padding: 60px 0 70px;
}
.client-review-section .main-title {
    color: var(--neutral-heading) !important;
    margin-bottom: 2rem;
}

.review-carousel {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.review-carousel .carousel-inner {
    padding: 10px 0 20px;
}

.card-8 {
    background: #fff;
    border-radius: 30px 30px 30px 0;
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 4px solid var(--brand-orange);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 4px;
}
.card-8:hover {
    border-radius: 30px 0 30px 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}
.card-8 .stars {
    color: #FBBF24;
    font-size: 1rem;
    margin-bottom: 8px;
}
.card-8 .quote {
    color: var(--neutral-paragraph);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
    flex: 1;
}
.card-8 .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--brand-orange);
    flex-shrink: 0;
}
.card-8 .name {
    font-weight: 700;
    color: var(--neutral-heading);
}
.card-8 .company {
    color: var(--brand-gray);
    font-size: 0.85rem;
}

.review-carousel .carousel-control-prev,
.review-carousel .carousel-control-next {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--neutral-white);
    border: 2px solid var(--neutral-border);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}
.review-carousel .carousel-control-prev {
    left: -22px;
}
.review-carousel .carousel-control-next {
    right: -22px;
}
.review-carousel .carousel-control-prev:hover,
.review-carousel .carousel-control-next:hover {
    border-color: var(--brand-orange);
    box-shadow: var(--shadow-orange);
    background: var(--brand-orange-light);
}
.review-carousel .carousel-control-prev-icon,
.review-carousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    background-color: var(--neutral-heading);
    mask-size: contain;
    -webkit-mask-size: contain;
}
.review-carousel .carousel-control-prev-icon {
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231F2937'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231F2937'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.review-carousel .carousel-control-next-icon {
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231F2937'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231F2937'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.review-carousel .carousel-indicators {
    position: relative;
    margin-top: 30px;
    bottom: auto;
}
.review-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--brand-orange);
    background: transparent;
    margin: 0 6px;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.review-carousel .carousel-indicators button.active {
    background: var(--brand-orange);
    opacity: 1;
}

@media (max-width: 992px) {
    .review-carousel .carousel-control-prev { left: -10px; }
    .review-carousel .carousel-control-next { right: -10px; }
    .review-carousel .carousel-control-prev,
    .review-carousel .carousel-control-next {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .client-review-section { padding: 40px 0 50px; }
    .client-review-section .main-title { font-size: 1.6rem; }
    .card-8 { padding: 24px 20px; }
    .card-8 .quote { font-size: 0.9rem; }
    .review-carousel .carousel-control-prev { left: -6px; }
    .review-carousel .carousel-control-next { right: -6px; }
    .review-carousel .carousel-control-prev,
    .review-carousel .carousel-control-next {
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 576px) {
    .client-review-section .main-title { font-size: 1.3rem; }
    .card-8 { padding: 18px 16px; border-radius: 20px 20px 20px 0; }
    .card-8 .quote { font-size: 0.85rem; }
    .card-8 .stars { font-size: 0.85rem; }
    .card-8 .avatar { width: 40px; height: 40px; font-size: 0.8rem; }
    .review-carousel .carousel-control-prev,
    .review-carousel .carousel-control-next {
        width: 28px;
        height: 28px;
        top: 50%;
    }
    .review-carousel .carousel-control-prev { left: -4px; }
    .review-carousel .carousel-control-next { right: -4px; }
    .review-carousel .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

/* ================================================================
   PRICING
   ================================================================ */
.plan-pricing-section {
    background: var(--brand-orange-extra-light) !important;
}
.plan-pricing-section .section-label {
    color: var(--brand-orange) !important;
    font-weight: 600;
    text-align: center;
}
.plan-pricing-section .section-title {
    color: var(--neutral-heading) !important;
    text-align: center;
}
.plan-pricing-section .section-title .highlight {
    color: var(--brand-orange) !important;
}
.plan-pricing-section .section-subtitle {
    color: var(--neutral-paragraph) !important;
    text-align: center;
}

.plan-pricing-card {
    background: var(--neutral-white) !important;
    border: 1px solid var(--neutral-border) !important;
    border-radius: var(--radius) !important;
    padding: 40px 28px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.plan-pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-orange) !important;
    box-shadow: 0 8px 30px rgba(255, 132, 0, 0.15) !important;
}
.plan-pricing-card.featured {
    border: 2px solid var(--brand-orange) !important;
    background: linear-gradient(180deg, #FFF9F5 0%, var(--neutral-white) 100%) !important;
}
.plan-pricing-card .plan-name {
    color: var(--neutral-heading) !important;
    font-weight: 800;
}
.plan-pricing-card .plan-description {
    color: var(--neutral-paragraph) !important;
}
.plan-pricing-card .plan-price {
    color: var(--brand-orange) !important;
    font-weight: 800;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--neutral-border);
}
.plan-pricing-card .plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.plan-pricing-card .plan-features-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--neutral-border);
    color: var(--neutral-paragraph);
}
.plan-pricing-card .plan-features-list li:last-child {
    border-bottom: none;
}
.plan-pricing-card .btn {
    width: 100%;
}
.plan-pricing-card .features-link {
    color: var(--brand-orange) !important;
    display: block;
    text-align: center;
    margin-top: 12px;
    font-weight: 500;
}
.plan-pricing-card .features-link:hover {
    color: var(--brand-orange-hover) !important;
}

.most-popular-badge {
    background: var(--brand-orange) !important;
    color: var(--neutral-white) !important;
    padding: 4px 18px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
}

.plan-billing-toggle .plan-btn-group {
    background: #F0F0F0 !important;
    border-radius: 30px;
    padding: 4px;
}
.plan-billing-toggle .plan-billing-btn {
    background: transparent !important;
    color: var(--neutral-paragraph) !important;
    border: none !important;
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.plan-billing-toggle .plan-billing-btn.active {
    background: var(--brand-orange) !important;
    color: var(--neutral-white) !important;
    box-shadow: var(--shadow-orange);
}
.plan-billing-toggle .plan-billing-btn:hover:not(.active) {
    background: rgba(255, 132, 0, 0.10) !important;
}

.plan-currency-btn-group {
    background: #F0F0F0 !important;
    border-radius: 20px;
    padding: 3px;
}
.plan-currency-btn {
    background: transparent !important;
    color: var(--neutral-paragraph) !important;
    border: none !important;
    padding: 5px 18px;
    border-radius: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.plan-currency-btn.active {
    background: var(--brand-orange) !important;
    color: var(--neutral-white) !important;
    box-shadow: var(--shadow-orange);
}
.plan-currency-btn:hover:not(.active) {
    background: rgba(255, 132, 0, 0.10) !important;
}

@media (max-width: 768px) {
    .plan-pricing-section .section-title { font-size: 1.6rem !important; }
    .plan-pricing-section .section-subtitle { font-size: 0.95rem !important; }
    .plan-pricing-card { padding: 28px 20px; }
    .plan-pricing-card .plan-name { font-size: 1.2rem; }
    .plan-pricing-card .plan-price { font-size: 1.3rem; }
    .plan-pricing-card .plan-features-list li { font-size: 0.85rem; padding: 6px 0; }
    .most-popular-badge { font-size: 0.6rem; padding: 3px 14px; }
    .plan-billing-toggle .plan-billing-btn { padding: 6px 14px !important; font-size: 0.85rem !important; }
    .plan-currency-btn { padding: 4px 16px !important; font-size: 0.75rem !important; }
}
@media (max-width: 576px) {
    .plan-pricing-section .section-title { font-size: 1.3rem !important; }
    .plan-pricing-card { padding: 20px 16px; }
    .plan-pricing-card .plan-name { font-size: 1rem; }
    .plan-pricing-card .plan-description { font-size: 0.85rem; }
    .plan-pricing-card .plan-price { font-size: 1.1rem; padding-bottom: 12px; margin-bottom: 12px; }
    .plan-pricing-card .plan-features-list li { font-size: 0.75rem; padding: 4px 0; }
    .plan-pricing-card .btn { font-size: 0.85rem; padding: 8px 20px; }
    .plan-pricing-card .features-link { font-size: 0.8rem; }
    .plan-billing-toggle .plan-billing-btn { padding: 4px 10px !important; font-size: 0.7rem !important; }
    .plan-currency-btn { padding: 3px 12px !important; font-size: 0.65rem !important; }
}

/* ================================================================
   SUPPORT SECTION
   ================================================================ */
.support-section .main-heading {
    color: var(--neutral-heading) !important;
}
.support-section .main-heading span {
    color: var(--brand-orange) !important;
}
.support-section .sub-heading {
    color: var(--neutral-paragraph) !important;
}
.support-section .arrow {
    color: var(--brand-orange) !important;
    font-size: 2rem;
}

.support-card {
    background: var(--neutral-white) !important;
    border: 1px solid var(--neutral-border) !important;
    border-radius: var(--radius) !important;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}
.support-card:hover {
    border-color: var(--brand-orange) !important;
    box-shadow: var(--shadow-hover);
}
.support-card h5 {
    color: var(--neutral-heading) !important;
}
.support-card p {
    color: var(--neutral-paragraph) !important;
}
.support-card .support-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.support-card .support-icon i {
    color: var(--brand-orange) !important;
}

.get-started-btn {
    background: var(--brand-orange) !important;
    color: var(--neutral-white) !important;
    padding: 12px 30px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}
.get-started-btn:hover {
    background: var(--brand-orange-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    color: var(--neutral-white) !important;
}

@media (max-width: 768px) {
    .support-section .main-heading { font-size: 1.6rem !important; }
    .support-section .sub-heading { font-size: 0.95rem !important; }
    .support-section .steps-wrapper .step { width: 80px; }
    .support-section .steps-wrapper .step img { width: 40px !important; height: 40px !important; }
    .support-section .steps-wrapper .step h5 { font-size: 0.85rem !important; }
    .support-section .steps-wrapper .step p { font-size: 0.75rem !important; }
    .support-section .arrow { font-size: 1.5rem !important; }
    .support-card { padding: 18px; }
}
@media (max-width: 576px) {
    .support-section .main-heading { font-size: 1.3rem !important; }
    .support-section .sub-heading { font-size: 0.85rem !important; }
    .support-section .steps-wrapper .step { width: 60px; }
    .support-section .steps-wrapper .step img { width: 32px !important; height: 32px !important; }
    .support-section .steps-wrapper .step h5 { font-size: 0.7rem !important; }
    .support-section .steps-wrapper .step p { font-size: 0.6rem !important; }
    .support-section .arrow { font-size: 1rem !important; }
    .support-card { padding: 14px; }
    .support-card h5 { font-size: 1rem; }
    .support-card p { font-size: 0.85rem; }
}

/* ================================================================
   CUSTOMER SUPPORT
   ================================================================ */
.customer-support-section {
    background: var(--neutral-white) !important;
}
.support-image-box {
    background: var(--neutral-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--neutral-border);
}
.support-image-box .support-top-heading {
    color: var(--brand-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}
.support-image-box .main-title-lg {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-heading);
}
.support-image-box .contact-callout {
    background: var(--brand-orange-extra-light);
    border: 1px solid var(--brand-orange-light);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    margin: 16px 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.support-image-box .contact-callout .callout-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.support-image-box .contact-callout .callout-icon {
    font-size: 2rem;
    line-height: 1;
}
.support-image-box .contact-callout .callout-text {
    display: flex;
    flex-direction: column;
}
.support-image-box .contact-callout .callout-text .label {
    font-weight: 600;
    color: var(--neutral-heading);
    font-size: 0.95rem;
}
.support-image-box .contact-callout .callout-text .number {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 1.2rem;
}
.support-image-box .contact-callout .callout-badge {
    background: var(--brand-orange);
    color: var(--neutral-white);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.support-image-box .contact-callout .callout-badge i {
    margin-right: 6px;
}
.support-image-box .support-img {
    width: 100%;
    border-radius: 8px;
    margin: 12px 0 18px 0;
}

@media (max-width: 768px) {
    .support-image-box .contact-callout {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .support-image-box .contact-callout .callout-left {
        justify-content: center;
    }
    .support-image-box .contact-callout .callout-badge {
        align-self: center;
    }
    .support-image-box .main-title-lg { font-size: 1.6rem !important; }
    .support-image-box { padding: 24px; }
}
@media (max-width: 576px) {
    .support-image-box { padding: 16px; }
    .support-image-box .main-title-lg { font-size: 1.3rem !important; }
    .support-image-box .contact-callout { padding: 12px 16px; }
    .support-image-box .contact-callout .callout-text .number { font-size: 1rem !important; }
    .support-image-box .contact-callout .callout-icon { font-size: 1.5rem; }
    .support-image-box .contact-callout .callout-text .label { font-size: 0.85rem; }
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section-box .cta-box {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #FFA940 100%) !important;
    border-radius: var(--radius) !important;
    padding: 50px 40px !important;
    color: var(--neutral-white) !important;
    box-shadow: var(--shadow-orange);
    text-align: center;
}
.cta-section-box .cta-box h2 {
    color: var(--neutral-white) !important;
}
.cta-section-box .cta-box p {
    color: rgba(255, 255, 255, 0.9) !important;
}
.cta-section-box .cta-box .get-started-btn {
    background: var(--neutral-white) !important;
    color: var(--brand-orange) !important;
}
.cta-section-box .cta-box .get-started-btn:hover {
    background: #F5F5F5 !important;
    color: var(--brand-orange-hover) !important;
}

@media (max-width: 768px) {
    .cta-section-box .cta-box { padding: 30px 20px !important; }
    .cta-section-box .cta-box h2 { font-size: 1.6rem !important; }
}
@media (max-width: 576px) {
    .cta-section-box .cta-box { padding: 25px 16px !important; }
    .cta-section-box .cta-box h2 { font-size: 1.3rem !important; }
    .cta-section-box .cta-box p { font-size: 0.9rem !important; }
    .cta-section-box .cta-box .get-started-btn { padding: 10px 24px; font-size: 0.9rem; width: 100%; max-width: 260px; }
}

/* ================================================================
   FOOTER – No dots, no underlines, Get Quote at bottom on mobile
   ================================================================ */
.site-footer .footer-main {
    background: var(--neutral-footer) !important;
}
.site-footer .footer__heading {
    color: var(--neutral-white) !important;
}

/* Remove bullets and padding from footer lists */
.site-footer .footer__list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

/* No underlines on footer links */
.site-footer .footer__link {
    color: #D1D5DB !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}
.site-footer .footer__link:hover {
    color: var(--brand-orange) !important;
}

.site-footer .footer-bottom {
    background: var(--neutral-footer) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.site-footer .footer-bottom p {
    color: #9CA3AF !important;
}

.site-footer .footer__social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--brand-orange) !important;
}
.site-footer .footer__social-link:hover {
    border-color: var(--brand-orange-hover) !important;
    color: var(--brand-orange-hover) !important;
    transform: translateY(-2px);
}

.btn-quote-modal {
    background: var(--brand-orange);
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
    width: 100%;
    max-width: 320px;
}
.btn-quote-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 132, 0, 0.35);
    color: #FFFFFF;
}

/* Quote Modal */
.quote-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: #1a1a2e;
}
.quote-modal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px 25px 10px 25px;
}
.quote-modal .modal-header .modal-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.4rem;
}
.quote-modal .modal-header .btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.7;
}
.quote-modal .modal-header .btn-close:hover {
    opacity: 1;
}
.quote-modal .modal-body {
    padding: 20px 25px 30px 25px;
}
.quote-modal .form-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
}
.quote-modal .form-control {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #FFFFFF !important;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    width: 100%;
    transition: border-color 0.3s ease;
}
.quote-modal .form-control:focus {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 0 2px rgba(255,132,0,0.15);
    background: rgba(255,255,255,0.08) !important;
}
.quote-modal .form-control::placeholder {
    color: #9CA3AF !important;
}
.quote-modal .form-control.is-invalid {
    border-color: #dc3545 !important;
}
.quote-modal .field-error {
    color: #ff6b6b;
    font-size: 0.7rem;
    display: none;
    margin-top: 2px;
}
.quote-modal .btn-quote-submit {
    background: var(--brand-orange) !important;
    color: var(--neutral-white) !important;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}
.quote-modal .btn-quote-submit:hover {
    background: var(--brand-orange-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,132,0,0.25);
}
.quote-modal .btn-quote-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.quote-success-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.quote-success-modal .modal-header {
    border-bottom: none;
    padding: 25px 30px 0 30px;
}
.quote-success-modal .modal-header .btn-close {
    font-size: 1.5rem;
    opacity: 0.7;
}
.quote-success-modal .modal-header .btn-close:hover {
    opacity: 1;
}
.quote-success-modal .modal-body {
    padding: 10px 30px 30px 30px;
    text-align: center;
}
.quote-success-modal .modal-body .success-icon {
    font-size: 4rem;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 15px;
}
.quote-success-modal .modal-body h4 {
    font-weight: 700;
    color: var(--neutral-heading);
    margin-bottom: 10px;
}
.quote-success-modal .modal-body p {
    color: var(--neutral-paragraph);
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .site-footer .footer__heading { font-size: 1rem !important; }
    .site-footer .footer__link { font-size: 0.85rem !important; }
    .site-footer h2 { font-size: 1.5rem !important; }
    .site-footer .footer__social-link { width: 34px !important; height: 34px !important; font-size: 0.9rem !important; }
    .btn-quote-modal { font-size: 0.9rem; padding: 10px 24px; max-width: 100%; }
    .quote-modal .modal-body { padding: 15px 18px 20px 18px; }
    .quote-modal .modal-header { padding: 15px 18px 5px 18px; }
    .quote-modal .modal-header .modal-title { font-size: 1.2rem; }
    .quote-modal .form-control { font-size: 0.8rem; padding: 8px 12px; }
    .quote-modal .btn-quote-submit { font-size: 0.85rem; padding: 10px 20px; }
}
@media (max-width: 576px) {
    .site-footer .footer__heading { font-size: 0.9rem !important; }
    .site-footer .footer__link { font-size: 0.8rem !important; }
    .site-footer h2 { font-size: 1.2rem !important; }
    .site-footer .footer__social-link { width: 32px !important; height: 32px !important; font-size: 0.8rem !important; }
    .btn-quote-modal { font-size: 0.8rem; padding: 8px 18px; }
    .quote-modal .modal-body { padding: 12px 14px 16px 14px; }
    .quote-modal .modal-header { padding: 12px 14px 5px 14px; }
    .quote-modal .modal-header .modal-title { font-size: 1rem; }
    .quote-modal .form-control { font-size: 0.75rem; padding: 6px 10px; }
    .quote-modal .btn-quote-submit { font-size: 0.8rem; padding: 8px 16px; }
    .quote-modal .form-label { font-size: 0.65rem; }
}