* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --blue: #0076ee;
    --blue-hover: #3395ff;
    --black: #000000;
    --black-soft: #050505;
    --black-light: #0d0d0d;
    --black-card: #121212;
    --gray: #1a1a1a;
    --gray-light: #2a2a2a;
    --white: #ffffff;
    --text-muted: #999999;
    --text-light: #aaaaaa;
}
p,.footer-links a ,.nav-link{
    --text-light: #fff !important;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Space Grotesk", sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection {
    background: var(--blue);
    color: var(--black);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gray-light);
}

.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
}
.ambient-bg::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 118, 238, 0.04) 0%,
        transparent 70%
    );
    animation: ambientFloat 40s infinite ease-in-out;
}
.ambient-bg::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 118, 238, 0.03) 0%,
        transparent 70%
    );
    animation: ambientFloat 50s infinite ease-in-out reverse;
}
@keyframes ambientFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-5%, 5%) scale(1.05);
    }
}

/* Top Bar */
.top-bar {
    background: var(--black-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}
.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.top-bar-item:hover {
    color: var(--blue);
}
.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.top-bar-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    /* text-transform: uppercase; */
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}
.top-bar-link:hover {
    color: var(--blue);
}
.top-bar-warranty {
    color: var(--blue);
}

/* Navigation */
nav {
    position: fixed;
    top: 41px;
    left: 0;
    right: 0;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}
nav.scrolled {
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.95);
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    width: 150px;
    height: auto;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
    font-size: 1.4rem;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.logo-tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-item {
    position: relative;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    /* text-transform: uppercase; */
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}
.nav-tooltip {
    position: relative;
}
.nav-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: none;
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 400;
    padding: 0;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    letter-spacing: 0.02em;
    text-transform: none;
}
.nav-tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.nav-link.active {
    color: var(--blue);
}
.nav-cta {
    background: var(--blue);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 1rem;
}
.nav-cta:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 118, 238, 0.3);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.menu-toggle span {
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) {
    width: 28px;
}
.menu-toggle span:nth-child(2) {
    width: 20px;
}

/* Hero Slider Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5% 5rem;
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(0, 118, 238, 0.03) 0%,
        var(--black) 50%
    );
}
.hero-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.warranty-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 118, 238, 0.1);
    border: 1px solid var(--blue);
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--blue);
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}
.warranty-badge svg {
    width: 20px;
    height: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero-badge::before {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--blue);
}
.hero-badge span {
    color: var(--blue);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}
.hero h1 .line {
    display: block;
}
.hero h1 .highlight {
    color: var(--blue);
}
.hero h1 .warranty-text {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-light);
    max-width: 750px;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 700px;
}
.hero-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}
.hero-benefit svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--blue);
    color: var(--black);
}
.btn-primary:hover {
    background: var(--blue-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 118, 238, 0.35);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}
.btn-outline-gold {
    background: transparent;
    color: white;
    border: 1px solid var(--blue);
}
.btn-outline-gold:hover {
    background: var(--blue);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 118, 238, 0.35);
}
.btn svg {
    transition: transform 0.3s ease;
}
.btn:hover svg {
    transform: translateX(5px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px;
}
.stat-item {
    background: var(--black-soft);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.stat-item:hover {
    background: var(--black-light);
}
.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.stat-value.white {
    color: var(--white);
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.scroll-indicator svg {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Chatbot Interface Styles */
.chatbot-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 5%;
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(0, 118, 238, 0.08) 0%,
        rgba(0, 0, 0, 0.95) 100%
    );
    transition:
        padding 0.5s ease,
        justify-content 0.5s ease;
}
.chatbot-container.chatting {
    padding-bottom: 2rem;
}
.chatbot-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 85vh;
    transition: justify-content 0.5s ease;
}
.chatbot-wrapper.chatting {
    justify-content: flex-start;
}
.chatbot-header {
    text-align: center;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}
.chatbot-header.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    max-height: 0;
    margin: 0;
    overflow: hidden;
}
.chatbot-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px rgba(0, 118, 238, 0.3);
}
.chatbot-title .highlight {
    color: var(--blue);
}
.chatbot-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    border: 2px solid rgba(0, 118, 238, 0.3);
    margin-bottom: 1rem;
    scroll-behavior: smooth;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    flex-direction: column;
    justify-content: center;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}
.chatbot-messages.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}
.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 118, 238, 0.3);
    border-radius: 3px;
}
.chat-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.chat-message.user {
    flex-direction: row-reverse;
}
.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.chat-avatar.assistant {
    background: linear-gradient(135deg, var(--blue), var(--blue-hover));
    color: var(--black);
}
.chat-avatar.user {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}
.chat-avatar svg {
    width: 20px;
    height: 20px;
}
.chat-content {
    max-width: 75%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.chat-bubble {
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}
.chat-message.assistant .chat-bubble {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top-left-radius: 0;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.chat-message.assistant .chat-bubble a {
    color: var(--blue);
}
.chat-message.user .chat-bubble {
    background: linear-gradient(135deg, var(--blue), var(--blue-hover));
    color: var(--black);
    border-top-right-radius: 0;
    font-weight: 500;
}
.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.suggestion-chip {
    padding: 0.5rem 1rem;
    background: rgba(0, 118, 238, 0.1);
    border: 1px solid rgba(0, 118, 238, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--blue);
    cursor: pointer;
    transition: all 0.2s ease;
}
.suggestion-chip:hover {
    background: rgba(0, 118, 238, 0.2);
    border-color: var(--blue);
}
.chat-input-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 118, 238, 0.4);
    border-radius: 1rem;
    box-shadow:
        0 8px 32px rgba(0, 118, 238, 0.15),
        0 0 60px rgba(0, 118, 238, 0.1);
    transition: all 0.3s ease;
}
.chat-input-container:focus-within {
    border-color: var(--blue);
    box-shadow:
        0 8px 40px rgba(0, 118, 238, 0.25),
        0 0 80px rgba(0, 118, 238, 0.15);
}
.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}
.chat-input::placeholder {
    color: var(--text-light);
}
.chat-input:focus {
    border-color: var(--blue);
    background: rgba(255, 255, 255, 0.07);
}
.chat-send-btn {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--blue), var(--blue-hover));
    border: none;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 118, 238, 0.3);
}
.chat-send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 118, 238, 0.5);
}
.chat-send-btn svg {
    width: 22px;
    height: 22px;
}
.typing-indicator {
    display: flex;
    gap: 0.25rem;
    padding: 0.5rem 0;
}
.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}
.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes typing {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

/* Warranty Section */
.warranty-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(0, 118, 238, 0.08) 0%,
        rgba(0, 0, 0, 0.95) 100%
    );
    position: relative;
}
.warranty-content {
    text-align: center;
}
.warranty-heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(0, 118, 238, 0.3);
}
.warranty-heading .highlight {
    color: var(--blue);
}
.warranty-tagline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}
.warranty-subheading {
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    height: clamp(2.5rem, 5.5vw, 4.2rem);
    overflow: hidden;
    position: relative;
}
.rotating-text {
    display: block;
    position: relative;
    height: 100%;
}
.rotating-word {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    white-space: nowrap;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.rotating-word.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.rotating-word.exit {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
}
.section {
    padding: 8rem 5%;
}
.section-black {
    background: var(--black);
}
.section-dark {
    background: var(--black-soft);
}
.section-header {
    margin: 0 auto 5rem;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}
.section-label::before,
.section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 118, 238, 0.3);
}
.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.section-title span {
    color: var(--text-light);
}
.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    line-height: 1.8;
    font-weight: 300;
}
.section-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.section-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.section-benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 118, 238, 0.1);
    border: 1px solid rgba(0, 118, 238, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
}
.section-benefit-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Solutions Grid */
.solution-card {
    background: var(--black-card);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.solution-card:hover::before {
    transform: scaleX(1);
}
.solution-card:hover {
    border-color: rgba(0, 118, 238, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(
        135deg,
        rgba(0, 118, 238, 0.15),
        rgba(0, 118, 238, 0.05)
    );
    border: 1px solid rgba(0, 118, 238, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
}
.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.solution-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.solution-benefits {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.solution-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.solution-benefits li svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}
.solution-faq {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}
.solution-faq h4 {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.solution-faq-item {
    margin-bottom: 1rem;
}
.solution-faq-item:last-child {
    margin-bottom: 0;
}
.solution-faq-question {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.solution-faq-answer {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}
.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
    transition: gap 0.3s ease;
}
.solution-link:hover {
    gap: 0.75rem;
}

/* CaaS Pricing */
.caas-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1rem;
}
.caas-price span {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
}

/* Why Work With Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.why-card {
    background: var(--black-card);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}
.why-card:hover {
    border-color: rgba(0, 118, 238, 0.2);
    background: var(--black-light);
}
.why-card.wide {
    grid-column: span 2;
}
.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.why-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.why-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}
.why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.why-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--black-light);
    border-radius: 8px;
}
.why-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    display: block;
}
.why-stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Success Stories */
.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.success-card {
    background: var(--black-card);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}
.success-card:hover {
    border-color: rgba(0, 118, 238, 0.2);
    transform: translateY(-5px);
}
.success-metric {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.success-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.success-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Awards */
.awards {
    padding: 6rem 5%;
    background: var(--black-soft);
    text-align: center;
}
.awards-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.awards-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}
.awards-label {
    font-size: 0.75rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}
.awards h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}
.awards p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 300;
}
.awards-badge {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2rem;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    background: linear-gradient(
        135deg,
        var(--black-card) 0%,
        var(--black-soft) 100%
    );
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.cta-wrapper {
    margin: 0 auto;
}
.cta-label {
    font-size: 0.75rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}
.cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}
.cta p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2.5rem;
}
.contact-form {
    max-width: 100%;
}
.contact-info-items {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-info-item svg {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 4px;
}
.contact-info-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}
.contact-info-value {
    color: var(--white);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
a.contact-info-value:hover {
    color: var(--blue);
}
/* Drag to Submit Slider */
.slider-submit {
    margin-top: 1.5rem;
}
.slider-track {
    position: relative;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    display: flex;
    align-items: center;
    overflow: hidden;
    user-select: none;
}
.slider-thumb {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 2;
    transition: box-shadow 0.3s ease;
    color: var(--black);
}
.slider-thumb:active {
    cursor: grabbing;
    box-shadow: 0 0 20px rgba(0, 118, 238, 0.5);
}
.slider-thumb.submitted {
    background: #22c55e;
}
.slider-text {
    width: 100%;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 1;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-size: 1rem;
    font-family: "Space Grotesk", sans-serif;
    transition: all 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(255, 255, 255, 0.08);
}
.form-input::placeholder {
    color: var(--text-light);
}
.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
footer {
    background: var(--black-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-top {
    padding: 5rem 5% 3rem;
}
.footer-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}
.footer-brand {
    max-width: 320px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
}
.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
    font-size: 1.4rem;
}
.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}
.footer-brand p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--blue);
    color: var(--black);
}
.footer-column h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.footer-links {
    list-style: none;
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 0.875rem;
}
.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 300;
}
.footer-links a:hover {
    color: var(--blue);
}
.footer-bottom {
    padding: 2rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 300;
}
.footer-copyright a {
    color: var(--blue);
    text-decoration: none;
}
.footer-legal {
    display: flex;
    gap: 2rem;
}
.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: var(--blue);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-card.wide {
        grid-column: span 1;
    }
    .success-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1024px) {
    .top-bar {
        display: none;
    }
    nav {
        top: 0;
        z-index: 10001;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 10000;
        display: flex;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }
    .nav-menu.open {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition:
            opacity 0.3s ease,
            transform 0.3s ease;
    }
    .nav-menu.open .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-menu.open .nav-item:nth-child(1) {
        transition-delay: 0.08s;
    }
    .nav-menu.open .nav-item:nth-child(2) {
        transition-delay: 0.16s;
    }
    .nav-menu.open .nav-item:nth-child(3) {
        transition-delay: 0.24s;
    }
    .nav-menu.open .nav-item:nth-child(4) {
        transition-delay: 0.32s;
    }
    .nav-menu.open .nav-item:nth-child(5) {
        transition-delay: 0.4s;
    }
    .nav-menu .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        letter-spacing: 0.1em;
        color: var(--white);
    }
    .nav-menu .nav-cta {
        margin-left: 0;
        margin-top: 1.5rem;
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            background 0.3s ease,
            box-shadow 0.3s ease;
    }
    .nav-menu.open .nav-cta {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.48s;
    }
    .menu-toggle {
        display: flex;
        z-index: 10001;
        position: relative;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }
    .menu-toggle.active span:nth-child(2) {
        transform: rotate(-45deg) translate(3px, -3px);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        justify-content: center;
    }
    .section-benefits {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
}

/* Inner Page Styles */
.page-hero {
    padding: 12rem 5% 6rem;
    background: linear-gradient(
        180deg,
        rgba(0, 118, 238, 0.08) 0%,
        var(--black) 60%
    );
}
.page-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.page-hero-wrapper a:not(.breadcrumb a):not(.solution-link):not(.nav-cta),
.page-hero a:not(.breadcrumb a):not(.solution-link):not(.nav-cta) {
    color: var(--blue);
}
.page-hero-wrapper a:not(.breadcrumb a):not(.solution-link):not(.nav-cta):hover,
.page-hero a:not(.breadcrumb a):not(.solution-link):not(.nav-cta):hover {
    color: var(--accent);
}
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--blue);
}
.breadcrumb span {
    color: var(--blue);
}
.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.page-hero h1 span {
    color: var(--blue);
}
.page-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}
.page-hero li {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}
.page-hero ul.two-col {
    columns: 2;
    column-gap: 2rem;
}

/* Client Grid */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.client-card {
    text-align: center;
}
.client-box {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1.5rem 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(0, 118, 238, 0.55);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    transition:
        border-color 0.3s ease,
        transform 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.client-box:hover {
    border-color: rgba(0, 118, 238, 0.3);
    transform: translateY(-3px);
}
.client-name {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 1rem;
    }
    .client-box {
        padding: 1.25rem 0.5rem;
        font-size: 0.95rem;
    }
}

/* Benefits Grid */
.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.benefit-card {
    background: var(--black-card);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}
.benefit-card:hover {
    border-color: rgba(0, 118, 238, 0.2);
}
.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Content area + Sidebar (Bootstrap row/col used in markup) */
.content-area h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.content-area h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}
.content-area p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.content-area ul {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}
.content-area li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.content-area li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}
.stat-card {
    background: var(--black-light);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}
.sidebar-card {
    background: var(--black-card);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.sidebar-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.sidebar-card ul {
    list-style: none;
    padding-left: 0;
}
.sidebar-card li {
    margin-bottom: 0.75rem;
}
.sidebar-card li::before {
    display: none;
}
.sidebar-card a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sidebar-card a:hover {
    color: var(--blue);
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
}
.faq-item {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
}
.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--blue);
}
.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question {
    color: var(--blue);
}

/* Bootstrap Accordion Dark Theme */
.accordion-item {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
}
.accordion-button {
    background: var(--black-card);
    color: var(--white);
    box-shadow: none;
    font-weight: 600;
}
.accordion-button:not(.collapsed) {
    background: var(--gray);
    color: var(--blue);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.05);
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-body {
    background: var(--black-card);
    color: var(--text-light);
}

/* Inner page responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Floating Chat Widget
   ============================================ */
.floating-chat {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10002;
    font-family: "Space Grotesk", sans-serif;
}
.floating-chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 118, 238, 0.4);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.floating-chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(0, 118, 238, 0.5);
}
.floating-chat-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #000;
}
.floating-chat-toggle .close-icon {
    display: none;
}
.floating-chat.open .floating-chat-toggle .chat-icon {
    display: none;
}
.floating-chat.open .floating-chat-toggle .close-icon {
    display: block;
}
.floating-chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    max-height: 520px;
    background: #0a0a0a;
    border: 1px solid rgba(0, 118, 238, 0.2);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
}
.floating-chat.open .floating-chat-window {
    display: flex;
    animation: fcSlideUp 0.3s ease;
}
@keyframes fcSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.floating-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: rgba(0, 118, 238, 0.08);
    border-bottom: 1px solid rgba(0, 118, 238, 0.15);
}
.floating-chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.95rem;
}
.floating-chat-header-info svg {
    stroke: var(--blue);
}
.floating-chat-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 4px;
    transition: background 0.2s;
}
.floating-chat-clear svg {
    stroke: #888;
}
.floating-chat-clear:hover {
    background: rgba(255, 255, 255, 0.08);
}
.floating-chat-clear:hover svg {
    stroke: #e74c3c;
}
.floating-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 280px;
    max-height: 360px;
}
.floating-chat-messages::-webkit-scrollbar {
    width: 4px;
}
.floating-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.floating-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 118, 238, 0.3);
    border-radius: 2px;
}
.floating-chat-messages .fc-msg {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.floating-chat-messages .fc-msg.user {
    flex-direction: row-reverse;
}
.floating-chat-messages .fc-msg .fc-bubble {
    max-width: 80%;
    padding: 0.6rem 0.85rem;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #ddd;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.floating-chat-messages .fc-msg.user .fc-bubble {
    background: rgba(0, 118, 238, 0.12);
    border-color: rgba(0, 118, 238, 0.2);
    color: #fff;
}
.floating-chat-messages .fc-msg .fc-bubble a {
    color: var(--blue);
}
.floating-chat-messages .fc-msg .fc-bubble strong {
    color: #fff;
}
.floating-chat-messages .fc-msg .fc-bubble ul,
.floating-chat-messages .fc-msg .fc-bubble ol {
    margin: 0.3rem 0;
    padding-left: 1.2rem;
}
.floating-chat-messages .fc-typing span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    margin: 0 2px;
    animation: fcDot 1.4s infinite;
}
.floating-chat-messages .fc-typing span:nth-child(2) {
    animation-delay: 0.2s;
}
.floating-chat-messages .fc-typing span:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes fcDot {
    0%,
    80%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}
.floating-chat-input-wrap {
    display: flex;
    padding: 0.65rem;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.4);
}
.floating-chat-input-wrap input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
    color: #fff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.floating-chat-input-wrap input:focus {
    border-color: var(--blue);
}
.floating-chat-input-wrap input::placeholder {
    color: #666;
}
.floating-chat-input-wrap button {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--blue);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
.floating-chat-input-wrap button svg {
    width: 16px;
    height: 16px;
    stroke: #000;
}
.floating-chat-input-wrap button:hover {
    background: #ffc85c;
}
.floating-chat-messages .fc-empty {
    text-align: center;
    color: #555;
    font-size: 0.85rem;
    margin: auto;
}

/* CV Upload Area */
.cv-upload-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 2px dashed rgba(0, 118, 238, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-size: 0.95rem;
}
.cv-upload-area:hover,
.cv-upload-area:focus {
    border-color: var(--blue);
    background: rgba(0, 118, 238, 0.05);
    color: var(--blue);
}
.cv-upload-area svg {
    color: var(--blue);
    flex-shrink: 0;
}
.cv-upload-area.has-file {
    border-color: #22c55e;
    color: #22c55e;
}
.cv-upload-area.has-file svg {
    color: #22c55e;
}

/* Slider text marquee on mobile */
@media (max-width: 480px) {
    .slider-track {
        overflow: hidden;
    }
    .slider-text {
        display: inline-block;
        white-space: nowrap;
        animation: sliderMarquee 8s linear infinite;
        padding-left: 60px;
    }
    @keyframes sliderMarquee {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .floating-chat-window {
        width: calc(100vw - 2rem);
        right: -0.5rem;
        max-height: 70vh;
    }
}

/* Slider hourglass spinning */
@keyframes hourglassSpin {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.slider-thumb.sending svg {
    animation: hourglassSpin 1.2s ease-in-out infinite;
}

/* Services page — two-column catalog (matches live cyberjee.com/services/) */
.service-catalog-list {
    list-style: disc;
    margin: 0;
    padding-left: 1.35rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.75;
}
.service-catalog-list li {
    margin-bottom: 0.5rem;
}
.service-catalog-list a {
    color: var(--gold);
    text-decoration: none;
}
.service-catalog-list a:hover {
    text-decoration: underline;
}

/* Our Clients — two-column table (matches live cyberjee.com/our-clients/) */
.our-clients-table {
    --bs-table-bg: rgba(255, 255, 255, 0.03);
    --bs-table-striped-bg: rgba(255, 255, 255, 0.06);
    --bs-table-border-color: rgba(212, 175, 55, 0.2);
    color: var(--text-light);
}
.our-clients-table thead th {
    color: var(--gold);
    font-weight: 600;
    border-color: rgba(212, 175, 55, 0.35);
}
.our-clients-list {
    list-style: disc;
    margin: 0;
    padding-left: 1.25rem;
    font-weight: 300;
    line-height: 1.65;
    font-size: 0.95rem;
}
.our-clients-list li {
    margin-bottom: 0.35rem;
}

/* Portfolio — project list (matches live cyberjee.com/portfolio/) */
.portfolio-project-title {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.45;
    margin: 0 0 1rem;
}
.portfolio-project-title a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 400;
}
.portfolio-project-title a:hover {
    text-decoration: underline;
}
.portfolio-project-hr {
    border: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin: 0 0 1.25rem;
    opacity: 1;
}

/* Client Testimonials (matches live cyberjee.com/client-testimonials/) */
.testimonials-list {
    margin-top: 1.5rem;
}
.testimonial-entry {
    margin-bottom: 2.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.testimonial-entry:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 1rem;
    line-height: 1.35;
}
.testimonial-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-light);
    font-weight: 300;
    margin: 0 0 0.85rem;
}
.testimonial-body:last-child {
    margin-bottom: 0;
}
.sidebar-testimonial-quote {
    margin: 0;
    padding: 0 0 0 0.85rem;
    border-left: 2px solid var(--gold);
}
.sidebar-testimonial-quote p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
    margin: 0;
}
.sidebar-testimonial-quote footer {
    margin-top: 0.75rem;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Terms of Service (matches live cyberjee.com/terms-of-service/) */
.terms-doc-intro p {
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 0;
}
.terms-doc-h {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    margin: 1.75rem 0 0.75rem;
}
.terms-doc-h:first-of-type {
    margin-top: 0.5rem;
}
.terms-doc-list {
    list-style: disc;
    margin: 0 0 0.25rem;
    padding-left: 1.35rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.75;
    font-size: 1rem;
}
.terms-doc-list li {
    margin-bottom: 0.65rem;
}
.terms-doc-footnote {
    margin-top: 2rem;
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}
