/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #e07a24;
    --color-primary-dark: #c56a1a;
    --color-primary-light: #f4a261;
    --color-accent: #ef8354;
    --color-secondary: #1a2f4a;
    --color-secondary-light: #2d4a6f;
    --color-text: #1f2937;
    --color-text-light: #64748b;
    --color-background: #ffffff;
    --color-background-alt: #f8fafc;
    --color-background-dark: #0f172a;
    --color-border: #e2e8f0;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 60px rgba(224, 122, 36, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-secondary);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--color-text-light);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(224, 122, 36, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(224, 122, 36, 0.6), 0 0 40px rgba(224, 122, 36, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-border);
}

.btn-ghost:hover {
    background: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

.btn-light {
    background: white;
    color: var(--color-primary);
    font-weight: 600;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-disabled {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-accent {
    display: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    display: none;
}

/* Simple icon mark for header */
.logo-mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo:hover .logo-mark {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 4px;
    position: relative;
    transition: color var(--transition);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--color-primary);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links .btn {
    padding: 14px 28px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(224, 122, 36, 0.3);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fef7ed 0%, #fff7ed 50%, #f0f9ff 100%);
    z-index: -2;
}

.gradient-orb {
    display: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(224, 122, 36, 0.4) 0%, rgba(244, 162, 97, 0.2) 100%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(239, 131, 84, 0.3) 0%, rgba(224, 122, 36, 0.1) 100%);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(45, 74, 111, 0.2) 0%, rgba(26, 47, 74, 0.1) 100%);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 47, 74, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 47, 74, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

/* Scanning line effect */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(224, 122, 36, 0.4), transparent);
    animation: scan-line 8s linear infinite;
    z-index: 1;
}

@keyframes scan-line {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Floating tech particles */
.tech-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: -3s; animation-duration: 20s; }
.particle:nth-child(3) { left: 35%; top: 30%; animation-delay: -6s; animation-duration: 16s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: -9s; animation-duration: 22s; }
.particle:nth-child(5) { left: 65%; top: 40%; animation-delay: -12s; animation-duration: 19s; }
.particle:nth-child(6) { left: 80%; top: 80%; animation-delay: -15s; animation-duration: 17s; }
.particle:nth-child(7) { left: 90%; top: 25%; animation-delay: -2s; animation-duration: 21s; }
.particle:nth-child(8) { left: 5%; top: 85%; animation-delay: -7s; animation-duration: 23s; }

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(20px, -30px) scale(1.5); opacity: 0.6; }
    50% { transform: translate(-15px, 20px) scale(0.8); opacity: 0.2; }
    75% { transform: translate(25px, 15px) scale(1.2); opacity: 0.5; }
}

/* Data stream decoration */
.data-stream {
    position: absolute;
    right: 8%;
    top: 20%;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--color-primary);
    opacity: 0.15;
    writing-mode: vertical-rl;
    letter-spacing: 3px;
    animation: data-scroll 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes data-scroll {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.hero-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 450px;
    z-index: 0;
    pointer-events: none;
}

.hero-mountains svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

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

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

.hero h1 {
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 420px;
    height: auto;
    opacity: 0.9;
    animation: subtle-float 6s ease-in-out infinite, logo-glow 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(224, 122, 36, 0.3));
}

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

@keyframes logo-glow {
    0%, 100% { filter: drop-shadow(0 20px 60px rgba(224, 122, 36, 0.3)); }
    50% { filter: drop-shadow(0 25px 80px rgba(224, 122, 36, 0.5)) drop-shadow(0 0 30px rgba(224, 122, 36, 0.2)); }
}

/* Circuit Lines Decoration */
.circuit-lines {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.circuit-lines svg {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 80%;
    opacity: 0.18;
}

.circuit-line {
    stroke: url(#circuit-gradient);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
}

.circuit-dot {
    fill: var(--color-primary);
}

.circuit-line-animated {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: circuit-draw 3s ease-in-out infinite;
}

@keyframes circuit-draw {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

.circuit-dot {
    animation: dot-pulse 2s ease-in-out infinite;
}

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

/* Brands Bar */
.brands-bar {
    padding: 40px 0;
    background: var(--color-background-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.brands-bar p {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Section Styles */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(224, 122, 36, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--border-radius-full);
    margin-bottom: 16px;
    position: relative;
    animation: tag-glow 3s ease-in-out infinite;
}

@keyframes tag-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(224, 122, 36, 0); }
    50% { box-shadow: 0 0 20px rgba(224, 122, 36, 0.2); }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

/* Section Mountains */
.section-mountains {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 0;
}

.section-mountains svg {
    width: 100%;
    height: 100%;
}

/* Services Section */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--color-background);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(224, 122, 36, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(224, 122, 36, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(224, 122, 36, 0.15);
    border-color: rgba(224, 122, 36, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    border-color: transparent;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: white;
}

.service-card.featured p,
.service-card.featured li {
    opacity: 0.85;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.service-card.featured .service-tag {
    background: var(--color-primary);
    color: white;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 122, 36, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
    color: var(--color-primary);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(224, 122, 36, 0.4);
}

.service-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    background: rgba(224, 122, 36, 0.1);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-full);
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card.featured .service-features li::before {
    background: var(--color-primary-light);
}

.btn-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-card-cta:hover::before {
    left: 100%;
}

.btn-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 122, 36, 0.5);
}

.service-card.featured .btn-card-cta {
    background: white;
    color: var(--color-secondary);
}

.service-card.featured .btn-card-cta:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.industry-proof {
    text-align: center;
    margin-top: 48px;
    font-size: 1.05rem;
    color: var(--color-text-light);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--color-background-alt);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 90% 20%, rgba(224, 122, 36, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(26, 47, 74, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.about-grid {
    display: block;
    max-width: 800px;
}

.about-content .section-tag {
    display: inline-block;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--color-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(224, 122, 36, 0.35);
    transform: scale(1.1);
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--color-secondary);
}

.about-feature p {
    font-size: 0.95rem;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    padding: 60px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
    overflow: hidden;
}

.visual-card-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
}

.visual-card-mountains svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.about-logo {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    margin-bottom: 30px;
}

.visual-stats {
    display: flex;
    justify-content: center;
}

.visual-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.big-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-light);
    line-height: 1;
}

.visual-stat span:last-child {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    background-size: 200% 200%;
    animation: cta-gradient 6s ease infinite;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: cta-pulse 8s ease-in-out infinite;
}

@keyframes cta-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes cta-pulse {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(20%, 20%) scale(1.2); opacity: 0.8; }
}

.cta-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
}

.cta-mountains svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 500px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--color-background-alt);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 80% 30%, rgba(224, 122, 36, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(26, 47, 74, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--color-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(224, 122, 36, 0.35);
    transform: scale(1.1);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    color: var(--color-secondary);
    font-weight: 500;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-form {
    padding: 40px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: all var(--transition);
    background: var(--color-background-alt);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(224, 122, 36, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

/* Footer */
footer {
    padding: 50px 0 0;
    background: var(--color-background-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-icon {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-light);
    line-height: 1.1;
}

.footer-logo-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-primary-light);
}

.footer-contact svg {
    opacity: 0.7;
    color: var(--color-primary-light);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.footer-contact a {
    color: var(--color-primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-location {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.powered-by {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

/* ==========================================
   HOMEPAGE - NEW LAYOUT
   ========================================== */

.hero-centered {
    text-align: left;
    padding: 140px 0 80px;
}

.hero-centered .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
}

.hero-logo-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge-logo {
    width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(224, 122, 36, 0.4));
    animation: subtle-float 6s ease-in-out infinite, logo-glow 3s ease-in-out infinite;
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Impact Bar */
.impact-bar {
    background: var(--color-secondary);
    padding: 24px 0;
}

.impact-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.impact-icon {
    opacity: 0.8;
}

.impact-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Problem & Solution Combined Section */
.problem-solution-section {
    padding: 80px 0;
    background: var(--color-background);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.ps-column {
    background: var(--color-background-alt);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    border: 1px solid var(--color-border);
}

.ps-problems {
    border-left: 3px solid var(--color-text-light);
}

.ps-solutions {
    border-left: 3px solid var(--color-primary);
    background: linear-gradient(135deg, rgba(224, 122, 36, 0.05) 0%, rgba(244, 162, 97, 0.02) 100%);
}

.ps-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-secondary);
}

.ps-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.ps-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--border-radius);
    color: var(--color-primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.ps-solutions .ps-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
}

.ps-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-secondary);
}

.ps-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--color-text-light);
}

.ps-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 20px rgba(224, 122, 36, 0.3);
}

.ps-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 900px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ps-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }
}

/* Legacy Problems Section (kept for reference) */
.problems-section {
    padding: 80px 0 60px;
    background: var(--color-background);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--color-background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    color: var(--color-primary);
    margin-bottom: 16px;
    opacity: 0.8;
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 0.9rem;
    margin: 0;
}

.solution-arrow {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.solution-banner {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(224, 122, 36, 0.08) 0%, rgba(239, 131, 84, 0.05) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 122, 36, 0.2);
}

.solution-banner h3 {
    font-size: 1.5rem;
    margin: 0;
}

/* Solutions Preview */
.solutions-preview {
    padding: 80px 0;
    background: var(--color-background-alt);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.solution-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 10px;
}

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Case Studies Coming Soon Section */
.case-studies-section {
    padding: 80px 0;
    background: var(--color-background-alt);
}

.case-studies-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.case-studies-content h2 {
    margin-bottom: 20px;
}

.case-studies-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.case-studies-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* How We Work Section */
.how-we-work {
    padding: 60px 0 70px;
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hww-header {
    text-align: center;
    margin-bottom: 40px;
}

.hww-header .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-primary-light);
}

.hww-header h2 {
    color: white;
    font-size: 1.8rem;
}

.hww-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.hww-step {
    text-align: center;
    max-width: 220px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hww-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.hww-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 20px rgba(224, 122, 36, 0.4);
}

.hww-step h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: white;
}

.hww-step p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.hww-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    position: relative;
}

.hww-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--color-accent);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.hww-arrow {
    color: var(--color-primary);
    opacity: 0.5;
}

@media (max-width: 900px) {
    .hww-grid {
        flex-direction: column;
        gap: 15px;
    }

    .hww-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
    }

    .hww-connector::after {
        right: 50%;
        top: auto;
        bottom: -4px;
        transform: translateX(50%) rotate(90deg);
    }
}

/* Legacy Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--color-background);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    margin-bottom: 24px;
}

.mission-statement {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* ==========================================
   PAGE HEADER (Subpages)
   ========================================== */

.page-header {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-header-enhanced {
    padding: 160px 0 100px;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fef7ed 0%, #fff7ed 50%, #f0f9ff 100%);
    z-index: -1;
}

.page-header-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
}

.page-header-mountains svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   SERVICES PREVIEW (Homepage)
   ========================================== */

.services-preview {
    padding: 80px 0;
    background: var(--color-background);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.preview-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(224, 122, 36, 0.3);
}

.preview-card .service-icon {
    margin: 0 auto 16px;
}

.preview-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.preview-card p {
    font-size: 0.9rem;
    margin: 0;
}

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

/* ==========================================
   ABOUT PREVIEW (Homepage)
   ========================================== */

.about-preview {
    padding: 80px 0;
    background: var(--color-background-alt);
}

.about-preview-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.about-preview-content h2 {
    margin-bottom: 20px;
}

.about-preview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ==========================================
   VALUES SECTION (About Page)
   ========================================== */

.values-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-background-alt) 100%);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(224, 122, 36, 0.3);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 10px;
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Active nav link */
.nav-links a.active:not(.btn) {
    color: var(--color-primary);
}

.nav-links a.active:not(.btn)::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-centered .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-logo-badge {
        order: -1;
        margin-bottom: 30px;
    }

    .hero-badge-logo {
        width: 438px;
    }

    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 40px;
    }

    .hero-logo {
        width: 300px;
    }

    .circuit-lines {
        display: none;
    }

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

    .cta-content p {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-main {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }

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

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

    .page-header {
        padding: 140px 0 60px;
    }

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

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

    .impact-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-centered {
        padding: 140px 0 60px;
    }

    .hero-centered .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-logo-badge {
        order: -1;
        margin-bottom: 30px;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-badge-logo {
        width: 420px;
        max-width: 90vw;
    }
}

/* ==========================================
   AI CHAT WIDGET
   ========================================== */

.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: var(--font-body);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(224, 122, 36, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(224, 122, 36, 0.5);
}

.chat-teaser-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    color: #1a1a2e;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.chat-teaser-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

.chat-teaser-bubble:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.chat-teaser-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.chat-teaser-bubble:hover::after {
    border-top-color: #f5f5f5;
}

.chat-toggle svg {
    color: white;
    transition: all 0.3s ease;
}

.chat-toggle .close-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
}

.chat-widget.open .chat-toggle .chat-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.chat-widget.open .chat-toggle .close-icon {
    opacity: 1;
    transform: rotate(0);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.chat-widget.open .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    padding: 16px 20px;
    color: white;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chat-avatar img {
    width: 95px;
    height: auto;
}

.chat-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.chat-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f8fafc;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot .message-content {
    background: white;
    color: var(--color-text);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-content p {
    margin: 0;
    color: inherit;
}

.message-content a {
    color: inherit;
    text-decoration: underline;
    word-break: break-all;
}

.message-content a:hover {
    opacity: 0.8;
}

.chat-message.bot .message-content a {
    color: var(--color-primary);
    font-weight: 500;
}

.chat-input-area {
    padding: 16px;
    background: white;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input-area input:focus {
    border-color: var(--color-primary);
}

.chat-input-area button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-input-area button:hover {
    transform: scale(1.05);
}

.chat-input-area button svg {
    color: white;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .chat-window {
        width: calc(100vw - 32px);
        height: 60vh;
        bottom: 76px;
        right: 0;
    }

    .chat-toggle {
        width: 56px;
        height: 56px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        display: block !important;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-links .btn {
        padding: 14px 32px;
        font-size: 1.1rem;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .logo-mark img {
        width: 100%;
        height: 100%;
    }

    .logo-tagline {
        display: none;
    }

    .logo-name {
        font-size: 1.15rem;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .visual-card {
        padding: 40px 30px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .contact-form {
        padding: 24px;
    }
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 60px 40px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* ==========================================
   PRODUCTS PAGE
   ========================================== */

.products-section {
    padding: 80px 0;
    background: var(--color-background);
}

.product-card-featured {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.product-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.product-header {
    padding: 48px 48px 32px;
}

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

.product-name-row h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(74, 222, 128, 0.1) 100%);
    color: #16a34a;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-full);
}

.product-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 700px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 48px 40px;
}

.product-feature {
    padding: 24px;
    background: var(--color-background-alt);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.product-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(224, 122, 36, 0.3);
}

.product-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 122, 36, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
    color: var(--color-primary);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.product-feature:hover .product-feature-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(224, 122, 36, 0.4);
}

.product-feature h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.product-feature p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--color-text-light);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 48px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
}

.product-pricing {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Coming Soon Section */
.products-coming-soon {
    padding: 80px 0;
    background: var(--color-background-alt);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-card {
    background: white;
    padding: 36px;
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--color-border);
    text-align: center;
    transition: all var(--transition);
}

.coming-soon-card:hover {
    border-color: rgba(224, 122, 36, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.coming-soon-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 122, 36, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
    color: var(--color-primary);
    border-radius: var(--border-radius);
    margin: 0 auto 20px;
    opacity: 0.7;
}

.coming-soon-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.coming-soon-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(224, 122, 36, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-full);
}

/* Products page responsive */
@media (max-width: 1024px) {
    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-header {
        padding: 32px 24px 24px;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
        padding: 0 24px 24px;
    }

    .product-footer {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
}
