/* ==========================================
   Client Care Management-AI - Styles
   Gold, Black, White Corporate Design
   ========================================== */

/* CSS Variables */
:root {
    --color-gold: #D4AF37;
    --color-gold-dark: #B8941F;
    --color-gold-light: #E5C766;
    --color-black: #000000;
    --color-dark: #0A0A0A;
    --color-darker: #1A1A1A;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F5;
    --color-gray: #B0B0B0;

    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.has-scroll-smooth {
    overflow: hidden;
}

html.has-scroll-dragging {
    user-select: none;
}

.has-scroll-smooth body {
    overflow: hidden;
}

.has-scroll-init #scroll-container {
    opacity: 1;
}

#scroll-container {
    opacity: 0;
    transition: opacity 0.3s;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Locomotive Scroll Enhancements */
.c-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 11px;
    height: 100%;
    transform-origin: center right;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
}

.c-scrollbar:hover {
    transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
    opacity: 1;
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-gold);
    opacity: 0.5;
    width: 7px;
    border-radius: 10px;
    margin: 2px;
    cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
    cursor: grabbing;
}

/* Parallax reveal animations */
[data-scroll] {
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

[data-scroll].is-inview {
    opacity: 1;
}

/* Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--color-black);
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem 0;
    z-index: 10000;
    transition: var(--transition-smooth);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-text {
    color: var(--color-white);
}

.brand-highlight {
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link-cta {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.nav-link-cta:hover {
    background: var(--color-gold-light);
    color: var(--color-black);
    transform: translateY(-2px);
}

.nav-link-cta::after {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease-out;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-title .highlight {
    color: var(--color-gold);
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.btn-arrow,
.btn-play {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn:hover .btn-play {
    transform: scale(1.2);
}

.hero-trust {
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

/* Hero Visual / Mockup */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.mockup-container {
    position: relative;
    perspective: 1000px;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.dashboard-mockup {
    position: relative;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    z-index: 1;
}

.dashboard-mockup:hover {
    transform: translateY(-10px) rotateX(5deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.4);
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-title {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 600;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.metric-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--color-gray);
}

.chart-visual {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100px;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--color-gold), var(--color-gold-light));
    border-radius: 4px 4px 0 0;
    animation: chart-grow 1.5s ease-out both;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    background: linear-gradient(to top, var(--color-gold-light), var(--color-gold));
    transform: scaleY(1.05);
}

@keyframes chart-grow {
    from { height: 0%; }
}

/* Section Styling */
section {
    padding: 6rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
}

/* About Section */
.about {
    background: rgba(26, 26, 26, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text .lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.visual-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
    border-color: var(--color-gold);
}

.visual-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.visual-icon svg {
    width: 100%;
    height: 100%;
}

.visual-card h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* Services Section */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    border-radius: 10px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(10px);
    border-color: var(--color-gold);
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
    min-width: 100px;
    flex-shrink: 0;
    line-height: 1;
}

.service-content {
    flex: 1;
}

.service-card h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card > p,
.service-content > p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-features li {
    color: var(--color-gray);
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    background: rgba(26, 26, 26, 0.5);
}

.benefits-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition-smooth);
    border-radius: 10px;
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.05);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-item h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: rgba(10, 10, 10, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--color-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-gray);
}

.contact-detail svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

/* Form Styling */
.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: rgba(26, 26, 26, 0.9);
    padding: 0 0.5rem;
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(0, 0, 0, 0.7);
}

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

/* Stats Bar */
.stats-bar {
    background: rgba(26, 26, 26, 0.8);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}

.stat-unit {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-left: 0.2rem;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Clients Ticker */
.clients-ticker {
    padding: 3rem 0;
    background: rgba(10, 10, 10, 0.5);
    overflow: hidden;
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 4rem;
    animation: ticker-scroll 30s linear infinite;
    width: max-content;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.4);
    letter-spacing: 3px;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.client-logo:hover {
    color: var(--color-gold);
}

/* Platform Showcase */
.platform-showcase {
    background: rgba(10, 10, 10, 0.8);
    padding: 8rem 0;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.showcase-text {
    max-width: 550px;
}

.showcase-description {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.showcase-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.showcase-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--color-gray);
}

.showcase-features svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.showcase-mockup {
    position: relative;
}

.mockup-device {
    position: relative;
    animation: float-device 6s ease-in-out infinite;
}

@keyframes float-device {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.device-frame {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.device-screen {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

.screen-header {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(26, 26, 26, 0.5);
}

.header-item {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--color-gray);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.header-item.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
}

.screen-content {
    padding: 1.5rem;
}

.analytics-graph {
    height: 120px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(135deg, transparent 40%, var(--color-gold) 40%, var(--color-gold) 60%, transparent 60%);
    opacity: 0.3;
    animation: graph-animate 3s ease-in-out infinite;
}

@keyframes graph-animate {
    0%, 100% { transform: translateX(-10%); }
    50% { transform: translateX(10%); }
}

.data-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.data-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.card-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.card-value.gold {
    color: var(--color-gold);
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background: rgba(26, 26, 26, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
}

.testimonial-text {
    color: var(--color-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-placeholder {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 1rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.testimonial-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 30px;
    height: 30px;
    color: var(--color-gold);
    opacity: 0.3;
}

.testimonial-badge svg {
    width: 100%;
    height: 100%;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand .highlight {
    color: var(--color-gold);
}

.footer-brand p {
    color: var(--color-gray);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--color-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .trust-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .client-logo {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-trust {
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item .stat-number {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-stats,
.about-content,
.service-card,
.benefit-item {
    animation: fadeInUp 0.8s ease-out;
}

/* New Homepage Styles */

/* Hero Clean */
.hero-clean {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 6rem;
    position: relative;
    text-align: center;
}

.hero-center {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title-large {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.hero-title-large .highlight {
    color: var(--color-gold);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: rgba(26, 26, 26, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    border-radius: 10px;
    transition: var(--transition-smooth);
    text-align: center;
}

.feature-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 8rem 0;
    background: rgba(10, 10, 10, 0.5);
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.stats-text {
    max-width: 500px;
}

.stats-text p {
    color: var(--color-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-box {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-desc {
    color: var(--color-gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Benefits Simple */
.benefits-simple {
    padding: 8rem 0;
    background: rgba(26, 26, 26, 0.3);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.benefit-row:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--color-gold);
    transform: translateX(10px);
}

.benefit-icon-simple {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-simple svg {
    width: 24px;
    height: 24px;
}

.benefit-content h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Clean */
.cta-clean {
    padding: 8rem 0;
    background: rgba(10, 10, 10, 0.8);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 5rem 3rem;
}

.cta-box h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.cta-buttons-center {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.badge-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

/* Contact Simple */
.contact-simple {
    padding: 8rem 0;
    background: rgba(26, 26, 26, 0.3);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-simple h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.contact-info-simple p {
    color: var(--color-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-gray);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-form-simple {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    border-radius: 10px;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .stats-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-text {
        max-width: 100%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-trust-row {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid-compact {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-buttons-center {
        flex-direction: column;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .benefit-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 2rem;
    }

    .hero-trust-row {
        flex-direction: column;
        gap: 2rem;
    }
}
