/* ============================================
   HEX TECH SOLUTIONS - Main Stylesheet
   Colors: #14213d #fca311 #000000 #ffffff #072b2b
   ============================================ */

:root {
    --navy: #14213d;
    --gold: #fca311;
    --black: #000000;
    --white: #ffffff;
    --teal: #072b2b;
    --navy-light: #1a2d52;
    --gold-light: #fdb940;
    --teal-light: #0a3d3d;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 12px;
    --radius-lg: 24px;
}

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

html {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Disable smooth scroll when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

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

a { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Custom Cursor */
.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    will-change: transform;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s, background 0.3s;
    opacity: 0;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    will-change: transform;
    opacity: 0;
}

.cursor-follower.active {
    width: 56px;
    height: 56px;
    border-color: var(--gold);
    background: rgba(252, 163, 17, 0.08);
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--transition), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-hex {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: preloaderSpin 2s linear infinite;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--transition);
}

.nav-header.scrolled {
    background: rgba(20, 33, 61, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(252, 163, 17, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    position: relative;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

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

.nav-cta {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 100px;
    transition: all 0.3s var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(252, 163, 17, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

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

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(252, 163, 17, 0.1);
    border: 1px solid rgba(252, 163, 17, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    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.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
}

.title-line { display: block; }

.title-accent {
    color: var(--gold);
    position: relative;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(252, 163, 17, 0.35);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-large { padding: 20px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stats Marquee */
.stats-marquee {
    padding: 30px 0;
    background: var(--teal);
    border-top: 1px solid rgba(252, 163, 17, 0.15);
    border-bottom: 1px solid rgba(252, 163, 17, 0.15);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.marquee-item strong {
    color: var(--gold);
    font-size: 1.3rem;
    margin-right: 6px;
}

.marquee-divider {
    color: var(--gold);
    font-size: 0.8rem;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
}

.text-accent { color: var(--gold); }

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

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    border-color: rgba(252, 163, 17, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 163, 17, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
}

.service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover { gap: 8px; }

/* About Section */
.about {
    padding: 140px 0;
    background: var(--teal);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

/* Animated Shield Graphic */
.about-graphic {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(252, 163, 17, 0.2);
    animation: shieldRotate 20s linear infinite;
}

.shield-ring-1 {
    width: 100%;
    height: 100%;
    border-color: var(--gold);
    border-width: 2px;
    border-style: dashed;
    animation-duration: 30s;
}

.shield-ring-2 {
    width: 80%;
    height: 80%;
    border-style: dotted;
    animation-direction: reverse;
    animation-duration: 25s;
}

.shield-ring-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(252, 163, 17, 0.4);
    animation-duration: 20s;
}

.shield-core {
    width: 120px;
    height: 120px;
    background: rgba(252, 163, 17, 0.08);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(252, 163, 17, 0.15), inset 0 0 30px rgba(252, 163, 17, 0.05);
    animation: corePulse 3s ease-in-out infinite;
}

.shield-core svg {
    width: 50px;
    height: 50px;
    stroke: var(--gold);
}

.shield-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    animation: shieldPulseAnim 3s ease-out infinite;
    z-index: 1;
}

@keyframes shieldRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes corePulse {
    0%, 100% { box-shadow: 0 0 40px rgba(252, 163, 17, 0.15), inset 0 0 30px rgba(252, 163, 17, 0.05); }
    50% { box-shadow: 0 0 60px rgba(252, 163, 17, 0.3), inset 0 0 40px rgba(252, 163, 17, 0.1); }
}

@keyframes shieldPulseAnim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* Floating nodes */
.shield-node {
    position: absolute;
    padding: 6px 12px;
    background: rgba(252, 163, 17, 0.1);
    border: 1px solid rgba(252, 163, 17, 0.4);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    animation: floatNode 4s ease-in-out infinite;
    z-index: 3;
}

.node-1 { top: 10%; left: 5%; animation-delay: 0s; }
.node-2 { top: 5%; right: 10%; animation-delay: 1s; }
.node-3 { bottom: 15%; left: 0%; animation-delay: 2s; }
.node-4 { bottom: 10%; right: 5%; animation-delay: 3s; }

@keyframes floatNode {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Stats Row */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px 12px;
    background: rgba(252, 163, 17, 0.05);
    border: 1px solid rgba(252, 163, 17, 0.15);
    border-radius: var(--radius);
    transition: all 0.3s var(--transition);
}

.stat-item:hover {
    border-color: rgba(252, 163, 17, 0.4);
    background: rgba(252, 163, 17, 0.08);
    transform: translateY(-3px);
}

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-item .stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-item .stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 163, 17, 0.15);
    color: var(--gold);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--navy);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-item {
    display: grid;
    grid-template-columns: 80px 1fr 100px;
    gap: 40px;
    align-items: center;
    padding: 40px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s var(--transition);
}

.feature-item:hover {
    background: rgba(252, 163, 17, 0.05);
    border-color: rgba(252, 163, 17, 0.2);
    transform: translateX(8px);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.5;
}

.feature-item:hover .feature-number { opacity: 1; }

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

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

.feature-orb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold), transparent);
    opacity: 0.3;
    transition: all 0.5s;
}

.feature-item:hover .feature-orb {
    opacity: 0.8;
    transform: scale(1.3);
    box-shadow: 0 0 40px rgba(252, 163, 17, 0.4);
}

/* Trust / Testimonials Section */
.trust-section {
    padding: 140px 0;
    background: var(--teal);
}

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

.trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s var(--transition);
}

.trust-card:hover {
    border-color: rgba(252, 163, 17, 0.3);
    transform: translateY(-4px);
}

.trust-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-style: italic;
}

.trust-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

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

.author-info strong { font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* CTA Section */
.cta-section {
    padding: 160px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content { position: relative; z-index: 2; }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(252, 163, 17, 0.08);
    top: -100px;
    right: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(7, 43, 43, 0.5);
    bottom: -100px;
    left: -100px;
}

/* Contact Section */
.contact {
    padding: 120px 0 100px;
    background: var(--teal);
}

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

.contact-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 163, 17, 0.1);
    border-radius: 12px;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.contact-item a {
    font-size: 1rem;
    color: var(--white);
    transition: color 0.3s;
}

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

.contact-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-link svg { width: 20px; height: 20px; }

.social-link:hover {
    border-color: var(--gold);
    background: rgba(252, 163, 17, 0.1);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: rgba(252, 163, 17, 0.05);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all 0.3s var(--transition);
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--gold);
    background: var(--teal);
    padding: 0 8px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .feature-item { grid-template-columns: 60px 1fr; }
    .feature-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .shield-container { width: 260px; height: 260px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(20, 33, 61, 0.98);
        backdrop-filter: blur(20px);
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid rgba(252, 163, 17, 0.1);
    }

    .hero { padding: 100px 20px 60px; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-scroll-indicator { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .about-stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .stat-item .stat-number { font-size: 1.5rem; }
    .shield-container { width: 220px; height: 220px; }
    .shield-core { width: 90px; height: 90px; }
    .shield-core svg { width: 36px; height: 36px; }
    .shield-node { font-size: 0.6rem; padding: 4px 8px; }
    .trust-grid { grid-template-columns: 1fr; }
    .feature-item { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
    .feature-number { font-size: 1.2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    /* Disable custom cursor on mobile */
    .cursor-follower, .cursor-dot { display: none; }
    body { cursor: auto; }
    a, button { cursor: pointer; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
}

/* ============================================
   Service Modal Styles
   ============================================ */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.service-modal.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: var(--navy);
    border: 1px solid rgba(252, 163, 17, 0.2);
    border-radius: var(--radius-lg);
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(252, 163, 17, 0.3) transparent;
}

.service-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 16px 0 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s;
    cursor: pointer;
}

.modal-close:hover {
    background: rgba(252, 163, 17, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.modal-body {
    padding: 48px 40px 40px;
}

.modal-header {
    margin-bottom: 32px;
}

.modal-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(252, 163, 17, 0.1);
    border: 1px solid rgba(252, 163, 17, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.modal-section {
    margin-bottom: 32px;
}

.modal-section h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.modal-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.modal-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-check {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.modal-process {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(252, 163, 17, 0.03);
    border: 1px solid rgba(252, 163, 17, 0.1);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}

.process-step:hover {
    border-color: rgba(252, 163, 17, 0.3);
}

.process-num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
    width: 32px;
}

.process-info strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.process-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.modal-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.deliverable-tag {
    padding: 6px 14px;
    background: rgba(252, 163, 17, 0.08);
    border: 1px solid rgba(252, 163, 17, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.modal-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .modal-content { width: 95%; max-height: 90vh; }
    .modal-body { padding: 32px 20px 24px; }
    .modal-title { font-size: 1.5rem; }
}

/* ============================================
   NEW FEATURES CSS
   ============================================ */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 10002;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(252, 163, 17, 0.5);
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    cursor: pointer;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(252, 163, 17, 0.08);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

body.light-mode .theme-toggle .icon-sun { display: block; }
body.light-mode .theme-toggle .icon-moon { display: none; }

/* Light Mode */
body.light-mode {
    background: #f0f4f8;
    color: #14213d;
}

body.light-mode .nav-header.scrolled {
    background: rgba(240, 244, 248, 0.95);
    border-bottom-color: rgba(252, 163, 17, 0.2);
}

body.light-mode .nav-link { color: rgba(20, 33, 61, 0.7); }
body.light-mode .nav-link:hover, body.light-mode .nav-link.active { color: var(--navy); }

body.light-mode .hero { background: linear-gradient(135deg, #e8eef5, #d0dce8); }
body.light-mode .hero-description { color: rgba(20, 33, 61, 0.7); }

body.light-mode .stats-marquee { background: #dce4ee; }
body.light-mode .marquee-item { color: rgba(20, 33, 61, 0.8); }

body.light-mode .services { background: #f0f4f8; }
body.light-mode .service-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(20, 33, 61, 0.1);
    color: var(--navy);
}
body.light-mode .service-desc { color: rgba(20, 33, 61, 0.6); }

body.light-mode .about { background: #dce4ee; }
body.light-mode .about-text { color: rgba(20, 33, 61, 0.75); }

body.light-mode .features { background: #f0f4f8; }
body.light-mode .feature-item {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(20, 33, 61, 0.08);
    color: var(--navy);
}
body.light-mode .feature-content p { color: rgba(20, 33, 61, 0.6); }

body.light-mode .trust-section { background: #dce4ee; }
body.light-mode .trust-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(20, 33, 61, 0.1);
}
body.light-mode .trust-quote { color: rgba(20, 33, 61, 0.8); }
body.light-mode .author-info span { color: rgba(20, 33, 61, 0.5); }

body.light-mode .pricing { background: #f0f4f8; }
body.light-mode .pricing-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(20, 33, 61, 0.1);
    color: var(--navy);
}
body.light-mode .pricing-features li { color: rgba(20, 33, 61, 0.8); }

body.light-mode .faq-section { background: #dce4ee; }
body.light-mode .faq-item { border-color: rgba(20, 33, 61, 0.1); }
body.light-mode .faq-question { color: var(--navy); }
body.light-mode .faq-answer p { color: rgba(20, 33, 61, 0.7); }

body.light-mode .cta-section { background: #f0f4f8; }
body.light-mode .contact { background: #dce4ee; }
body.light-mode .contact-form-wrapper { background: rgba(255,255,255,0.6); border-color: rgba(20,33,61,0.1); }
body.light-mode .form-group input,
body.light-mode .form-group textarea,
body.light-mode .form-group select {
    background: rgba(255,255,255,0.8);
    border-color: rgba(20,33,61,0.15);
    color: var(--navy);
}
body.light-mode .form-group label { color: rgba(20,33,61,0.5); }
body.light-mode .form-group input:focus ~ label,
body.light-mode .form-group input:not(:placeholder-shown) ~ label,
body.light-mode .form-group textarea:focus ~ label,
body.light-mode .form-group textarea:not(:placeholder-shown) ~ label {
    background: #dce4ee;
    color: var(--gold);
}

body.light-mode .footer { background: var(--navy); }
body.light-mode .service-number { color: rgba(20,33,61,0.3); }

body.light-mode .modal-content { background: #f0f4f8; color: var(--navy); }
body.light-mode .modal-desc { color: rgba(20,33,61,0.75); }
body.light-mode .modal-features li { background: rgba(20,33,61,0.04); border-color: rgba(20,33,61,0.06); color: rgba(20,33,61,0.8); }
body.light-mode .process-step { background: rgba(252,163,17,0.05); }
body.light-mode .process-info span { color: rgba(20,33,61,0.6); }
body.light-mode .modal-close { background: rgba(20,33,61,0.05); border-color: rgba(20,33,61,0.15); color: var(--navy); }

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(252, 163, 17, 0.4);
    transition: all 0.3s var(--transition);
    white-space: nowrap;
}

.floating-cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(252, 163, 17, 0.5);
}

/* Pricing Section */
.pricing {
    padding: 140px 0;
    background: var(--navy);
}

.section-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(252, 163, 17, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-featured {
    background: rgba(252, 163, 17, 0.05);
    border-color: rgba(252, 163, 17, 0.3);
    transform: scale(1.03);
}

.pricing-featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 24px 80px rgba(252, 163, 17, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-tier {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 12px;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2.5;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2.5;
}

.pricing-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    line-height: 1.5;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features .check { color: var(--gold); font-weight: 700; }
.pricing-features .muted { color: rgba(255, 255, 255, 0.25); }
.pricing-features li:has(.muted) { color: rgba(255, 255, 255, 0.35); }

.pricing-btn { width: 100%; justify-content: center; }
.pricing-card .pricing-header { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--teal);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    background: none;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(252, 163, 17, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s var(--transition);
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .floating-cta { bottom: 20px; right: 20px; }
    .floating-cta-btn span { display: none; }
    .floating-cta-btn { padding: 14px; border-radius: 50%; }
    .faq-question { font-size: 0.9rem; }
    .section-desc { display: none; }
}

/* ============================================
   LOGO, WHATSAPP, COOKIE, INDUSTRIES, PROCESS
   ============================================ */

/* Logo Image */
.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(252, 163, 17, 0.3));
}

.nav-header.scrolled .logo-img { height: 38px; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    color: var(--white);
    white-space: nowrap;
}

body.light-mode .logo-text { color: var(--navy); }

.footer-brand .logo-img { height: 48px; }
.footer-brand .logo-text { font-size: 1.1rem; }

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s var(--transition);
}

.whatsapp-btn svg { width: 28px; height: 28px; }

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 33, 61, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(252, 163, 17, 0.15);
    padding: 20px 40px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.5s var(--transition);
}

.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hidden { display: none; }

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--gold);
    color: var(--navy);
    border: none;
}

.cookie-accept:hover { background: var(--gold-light); }

.cookie-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    white-space: nowrap;
}

/* Process / How It Works Section */
.process-section {
    padding: 100px 0;
    background: var(--navy);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.process-item {
    text-align: center;
    padding: 32px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s var(--transition);
}

.process-item:hover {
    border-color: rgba(252, 163, 17, 0.3);
    background: rgba(252, 163, 17, 0.03);
    transform: translateY(-6px);
}

.process-step-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 16px;
}

.process-item:hover .process-step-num { opacity: 1; }

.process-item h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.process-connector {
    display: none; /* visible via pseudo on larger screens via gap */
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: var(--teal);
}

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

.industry-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s var(--transition);
}

.industry-card:hover {
    border-color: rgba(252, 163, 17, 0.3);
    transform: translateY(-4px);
    background: rgba(252, 163, 17, 0.04);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1;
}

.industry-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Contact Address */
.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-address strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.contact-address span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Footer Address */
.footer-address {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-address p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Light mode additions */
body.light-mode .process-section { background: #f0f4f8; }
body.light-mode .process-item { background: rgba(255,255,255,0.6); border-color: rgba(20,33,61,0.08); color: var(--navy); }
body.light-mode .process-item p { color: rgba(20,33,61,0.6); }
body.light-mode .industries-section { background: #dce4ee; }
body.light-mode .industry-card { background: rgba(255,255,255,0.6); border-color: rgba(20,33,61,0.08); color: var(--navy); }
body.light-mode .industry-card p { color: rgba(20,33,61,0.6); }
body.light-mode .cookie-banner { background: rgba(240,244,248,0.98); border-top-color: rgba(20,33,61,0.1); }
body.light-mode .cookie-content p { color: rgba(20,33,61,0.7); }

/* Responsive for new sections */
@media (max-width: 1024px) {
    .process-timeline { grid-template-columns: repeat(3, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .process-timeline { grid-template-columns: 1fr 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .whatsapp-btn { bottom: 20px; left: 20px; width: 50px; height: 50px; }
    .whatsapp-btn svg { width: 24px; height: 24px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-banner { padding: 16px 20px; }
}

@media (max-width: 480px) {
    .process-timeline { grid-template-columns: 1fr; }
}

/* ============================================
   TRUST, CASE STUDIES, CERTS, HERO VISUAL, FORMS
   ============================================ */

/* Credibility Row */
.credibility-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.cred-item {
    text-align: center;
    padding: 32px 16px;
    background: rgba(252, 163, 17, 0.03);
    border: 1px solid rgba(252, 163, 17, 0.12);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--transition);
}

.cred-item:hover {
    border-color: rgba(252, 163, 17, 0.4);
    transform: translateY(-4px);
}

.cred-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.cred-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-us-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--transition);
}

.why-us-card:hover {
    border-color: rgba(252, 163, 17, 0.25);
    transform: translateY(-4px);
    background: rgba(252, 163, 17, 0.03);
}

.why-icon { font-size: 2rem; margin-bottom: 16px; }

.why-us-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-us-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Case Studies */
.case-studies {
    padding: 120px 0 100px;
    background: var(--navy);
}

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

.case-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--transition);
}

.case-card:hover {
    border-color: rgba(252, 163, 17, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}

.case-metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.case-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.case-direction {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
}

.case-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.case-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.case-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Certifications Row */
.certifications-row {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(252, 163, 17, 0.06);
    border: 1px solid rgba(252, 163, 17, 0.2);
    border-radius: 100px;
}

.cert-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cert-badge span {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Visual (Dashboard) */
.hero-visual {
    position: absolute;
    right: 40px;
    top: 45%;
    transform: translateY(-55%);
    z-index: 2;
    width: 380px;
}

.hero-dashboard {
    background: rgba(7, 43, 43, 0.6);
    border: 1px solid rgba(252, 163, 17, 0.2);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.dash-dot.red { background: #ff5f56; }
.dash-dot.yellow { background: #ffbd2e; }
.dash-dot.green { background: #27c93f; }

.dash-title {
    margin-left: 8px;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    color: rgba(255,255,255,0.5);
}

.dash-body { padding: 14px 16px; }

.dash-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.dash-label { color: rgba(255,255,255,0.4); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }
.dash-value { color: rgba(255,255,255,0.9); }
.green-text { color: #27c93f; }
.gold-text { color: var(--gold); }

.dash-bar {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.bar-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); display: block; margin-bottom: 8px; }

.bar-track {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.bar-fill {
    height: 100%;
    width: 98%;
    background: linear-gradient(90deg, var(--gold), #27c93f);
    border-radius: 3px;
    animation: barGrow 2s ease-out 2s both;
}

@keyframes barGrow {
    from { width: 0%; }
    to { width: 98%; }
}

.bar-value { font-size: 0.8rem; color: var(--gold); font-family: var(--font-display); font-weight: 700; }

.dash-line.typing {
    border: none;
    margin-top: 8px;
    color: var(--gold);
    opacity: 0.7;
}

.dash-prompt { color: #27c93f; margin-right: 8px; }
.dash-cmd { animation: blink 1s step-end infinite; }

@keyframes blink {
    50% { border-right: 2px solid var(--gold); }
}

/* Form Validation States */
.form-group input.valid,
.form-group textarea.valid {
    border-color: #27c93f;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff5f56;
    animation: shake 0.3s ease;
}

@keyframes shake {
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

.btn.sending { opacity: 0.7; }
.btn.success { background: #27c93f; color: var(--navy); }

/* Responsive additions */
@media (max-width: 1200px) {
    .hero-visual { display: none; }
}

@media (max-width: 1024px) {
    .credibility-row { grid-template-columns: repeat(2, 1fr); }
    .cases-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .credibility-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .cred-number { font-size: 2rem; }
    .certifications-row { gap: 8px; }
    .cert-badge { padding: 8px 12px; }
}

/* Light mode for new sections */
body.light-mode .trust-section { background: #dce4ee; }
body.light-mode .cred-item { background: rgba(255,255,255,0.6); border-color: rgba(20,33,61,0.08); }
body.light-mode .cred-label { color: rgba(20,33,61,0.6); }
body.light-mode .why-us-card { background: rgba(255,255,255,0.6); border-color: rgba(20,33,61,0.08); color: var(--navy); }
body.light-mode .why-us-card p { color: rgba(20,33,61,0.6); }
body.light-mode .case-studies { background: #f0f4f8; }
body.light-mode .case-card { background: rgba(255,255,255,0.7); border-color: rgba(20,33,61,0.08); color: var(--navy); }
body.light-mode .case-card p { color: rgba(20,33,61,0.6); }
body.light-mode .cert-badge { background: rgba(252,163,17,0.08); }
body.light-mode .cert-badge span { color: var(--navy); }

/* ============================================
   VISUAL HIERARCHY - Section Differentiation
   ============================================ */

/* Make CTA section feel bigger and more important */
.cta-section .cta-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
}

/* Add subtle top accent line to key sections */
.services::before,
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.pricing { position: relative; }

/* Larger section header for primary sections */
.services .section-title,
.trust-section .section-title,
.pricing .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

/* Smaller header for secondary/supporting sections */
.features .section-title,
.faq-section .section-title,
.process-section .section-title,
.industries-section .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

/* Make the about section feel more spacious with inner content gap */
.about-content .section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
}

/* Reduce section header margin on smaller sections */
.features .section-header,
.process-section .section-header,
.industries-section .section-header,
.faq-section .section-header {
    margin-bottom: 48px;
}

/* Add breathing room to the trust/credibility section */
.credibility-row {
    margin-bottom: 80px;
}

/* Visual weight: make case study metrics pop more */
.case-number {
    font-size: 3.2rem;
}

/* Tighter gap on faq for it to feel contained */
.faq-grid {
    max-width: 720px;
}
