/* ============================================
   x Capital — Premium Stylesheet
   Black & Gold Theme | Responsive | Accessible
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #000000;
    --color-black-soft: #0a0a0a;
    --color-black-light: #111111;
    --color-gray-dark: #1a1a1a;
    --color-gray: #2a2a2a;
    --color-gray-mid: #444444;
    --color-gray-light: #666666;
    --color-gray-muted: #888888;
    --color-white: #ffffff;
    --color-white-soft: #e8e8e8;
    --color-white-muted: #b0b0b0;
    --color-gold: #C9A96E;
    --color-gold-light: #D4B87A;
    --color-gold-dark: #A88B55;
    --color-gold-glow: rgba(201, 169, 110, 0.15);

    --font-primary: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 2px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 2px 20px rgba(201, 169, 110, 0.12);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-white-soft);
    background-color: var(--color-black);
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Utility */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-muted);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-title {
    margin-bottom: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(201, 169, 110, 0.05);
}

.btn-full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(201, 169, 110, 0.08), var(--shadow-sm);
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all var(--transition-base);
    position: relative;
    padding: 4px 0;
}

.nav-logo .logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: all var(--transition-base);
    filter: contrast(1.05);
}

.nav-logo:hover .logo-img {
    filter: contrast(1.1) drop-shadow(0 0 15px rgba(201, 169, 110, 0.25));
}

/* Logo text next to icon */
.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    margin-left: 10px;
    letter-spacing: 0.02em;
}

.nav-logo .logo-text span {
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-white-muted);
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
}

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

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

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

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

.hamburger {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-white);
    transition: all var(--transition-base);
    border-radius: 1px;
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-black-soft);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right var(--transition-slow);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        color: var(--color-white);
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(4.5px, 4.5px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(4.5px, -4.5px);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.hero-bg .hero-grid,
.hero-bg .hero-glow,
.hero-bg .hero-lines {
    z-index: 2;
}

.hero-content {
    z-index: 3;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 110, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 110, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite;
}

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

.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
    animation: line-move 8s linear infinite;
}

.line-1 {
    top: 30%;
    width: 40%;
    left: -40%;
    animation-duration: 10s;
}

.line-2 {
    top: 55%;
    width: 60%;
    left: -60%;
    animation-duration: 14s;
    animation-delay: 3s;
}

.line-3 {
    top: 75%;
    width: 30%;
    left: -30%;
    animation-duration: 8s;
    animation-delay: 6s;
}

@keyframes line-move {
    0% { left: -60%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    background: rgba(201, 169, 110, 0.05);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-white-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray-muted);
}

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

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ============================================
   METRICS STRIP
   ============================================ */
.metrics {
    padding: 60px 0;
    background: var(--color-black-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

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

.metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-muted);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }
}

/* ============================================
   FEATURED PRODUCT SECTION
   ============================================ */
.featured {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.featured-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0.35;
    z-index: 0;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(10,10,10,0.92) 50%, rgba(0,0,0,0.88) 100%);
    z-index: 1;
}

.featured .container {
    position: relative;
    z-index: 2;
}

.featured-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-gold);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.featured-grid {
    display: flex;
    justify-content: center;
}

.featured-content {
    max-width: 720px;
    text-align: center;
}

.featured-content .section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.featured-content .bot-emoji {
    font-family: var(--font-primary);
    font-size: 0.8em;
    filter: grayscale(0.3);
}

.featured-desc {
    font-size: 1.05rem;
    color: var(--color-white-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.featured-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    text-align: left;
    max-width: 520px;
    margin: 32px auto;
}

.featured-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-white-soft);
}

.featured-feature svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.featured-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

@media (max-width: 640px) {
    .featured-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--color-black);
}

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

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: var(--color-white-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--color-white-soft);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(201, 169, 110, 0.08);
    color: var(--color-gold);
    flex-shrink: 0;
}

/* About Image */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-image-glow {
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2) 0%, transparent 40%, transparent 60%, rgba(201, 169, 110, 0.15) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.about-image-wrapper:hover .about-image-glow {
    opacity: 1;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    pointer-events: none;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        order: -1;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--color-black-soft);
}

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

.service-card {
    background: var(--color-black-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    border-color: rgba(201, 169, 110, 0.18);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

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

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(201, 169, 110, 0.08);
    color: var(--color-gold);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: rgba(201, 169, 110, 0.15);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--color-gray-muted);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 120px 0;
    background: var(--color-black);
}

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

.why-card {
    background: var(--color-black-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 36px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.why-card:hover {
    border-color: rgba(201, 169, 110, 0.15);
    box-shadow: var(--shadow-gold);
}

.why-card:hover::before {
    opacity: 0.5;
}

.why-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(201, 169, 110, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.why-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.9rem;
    color: var(--color-gray-muted);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: 120px 0;
    background: var(--color-black-soft);
}

.process-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.process-card {
    background: var(--color-black-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.process-card:hover {
    border-color: rgba(201, 169, 110, 0.18);
    box-shadow: var(--shadow-gold);
}

.process-card:hover::before {
    opacity: 0.6;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.process-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
}

.process-desc {
    font-size: 0.85rem;
    color: var(--color-gray-muted);
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .process-grid {
        gap: 16px;
    }

    .process-connector {
        display: none;
    }

    .process-card {
        max-width: none;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--color-black);
}

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

.testimonial-card {
    background: var(--color-black-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.4), transparent);
    opacity: 0.3;
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 110, 0.15);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-white-soft);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.12);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

.author-role {
    font-size: 0.8rem;
    color: var(--color-gray-muted);
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 120px 0;
    background: var(--color-black-soft);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-white);
    text-align: left;
    transition: color var(--transition-fast);
    letter-spacing: 0.01em;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
    flex-shrink: 0;
    margin-left: 16px;
    transition: all var(--transition-base);
}

.faq-icon svg {
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon svg {
    transform: rotate(45deg);
}

.faq-item.active .faq-icon {
    border-color: rgba(201, 169, 110, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

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

.faq-answer p {
    font-size: 0.95rem;
    color: var(--color-gray-muted);
    line-height: 1.7;
    padding-right: 44px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--color-black);
}

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

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-text {
    color: var(--color-white-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--color-white-soft);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(201, 169, 110, 0.08);
    color: var(--color-gold);
    flex-shrink: 0;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--color-gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-white-muted);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.3);
    color: var(--color-gold);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-black-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.4;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-white-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--color-white);
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: all var(--transition-base);
    outline: none;
    letter-spacing: 0.01em;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-mid);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

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

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .contact-form-wrapper {
        padding: 28px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 32px;
    background: var(--color-black-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.footer-logo .footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.footer-logo:hover .footer-logo-img {
    filter: drop-shadow(0 0 12px rgba(201, 169, 110, 0.3));
}

.footer-logo .footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-logo .footer-logo-text span {
    color: var(--color-gold);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-gray-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-gray-muted);
    transition: color var(--transition-fast);
}

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

.footer-contact li {
    font-size: 0.9rem;
    color: var(--color-gray-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 32px;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--color-gray-mid);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 900px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--color-gray-mid);
}

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

.footer-legal-links a {
    color: var(--color-gray-mid);
    transition: color var(--transition-fast);
}

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

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof {
    padding: 40px 0;
    background: var(--color-black-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.ticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ticker-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-gold);
}

.ticker-label {
    font-size: 0.75rem;
    color: var(--color-gray-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ticker-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.3), transparent);
}

@media (max-width: 768px) {
    .ticker {
        gap: 24px;
    }
    .ticker-divider {
        display: none;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: 120px 0;
    background: var(--color-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    background: var(--color-black-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 36px 24px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pricing-card.featured {
    border-color: rgba(201, 169, 110, 0.2);
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.03) 0%, var(--color-black-light) 100%);
}

.pricing-card.featured::before {
    opacity: 0.6;
}

.pricing-card:hover {
    border-color: rgba(201, 169, 110, 0.18);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.pricing-card:hover::before {
    opacity: 0.8;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-white-muted);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    align-self: center;
}

.pricing-badge-gold {
    background: var(--color-gold);
    color: var(--color-black);
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: 4px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.pricing-period {
    font-size: 0.8rem;
    color: var(--color-gray-muted);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.85rem;
    color: var(--color-white-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    padding-left: 20px;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0.5;
}

.pricing-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-gray-muted);
    margin-top: 40px;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}

/* ============================================
   TRUST / SECURITY STRIP
   ============================================ */
.trust-strip {
    padding: 48px 0;
    background: var(--color-black-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--color-gray-muted);
    letter-spacing: 0.02em;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.08);
    color: var(--color-gold);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-grid {
        gap: 24px;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

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

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

.cookie-content p {
    font-size: 0.8rem;
    color: var(--color-white-muted);
    margin: 0;
}

.cookie-accept {
    padding: 8px 24px;
    font-size: 0.75rem;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ============================================
   ANIMATED SECTION BACKGROUNDS
   ============================================ */

/* Floating particles */
@keyframes float-up {
    0% {
        transform: translateY(100%) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(30px) scale(1);
        opacity: 0;
    }
}

@keyframes float-up-slow {
    0% {
        transform: translateY(100%) translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 0.4;
    }
    85% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) translateX(-20px);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Section with animated background */
.section-animated {
    position: relative;
    overflow: hidden;
}

.section-animated .container {
    position: relative;
    z-index: 1;
}

.section-animated::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 139, 85, 0.03) 0%, transparent 60%);
    z-index: 0;
    animation: pulse-orb 12s ease-in-out infinite;
}

.section-animated::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 110, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 110, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    opacity: 0.5;
}

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

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px rgba(201, 169, 110, 0.4);
}

.particle:nth-child(1) { left: 10%; animation: float-up 18s linear infinite; animation-delay: 0s; width: 2px; height: 2px; }
.particle:nth-child(2) { left: 20%; animation: float-up-slow 22s linear infinite; animation-delay: 2s; width: 4px; height: 4px; }
.particle:nth-child(3) { left: 30%; animation: float-up 16s linear infinite; animation-delay: 4s; width: 2px; height: 2px; }
.particle:nth-child(4) { left: 40%; animation: float-up-slow 20s linear infinite; animation-delay: 1s; width: 3px; height: 3px; }
.particle:nth-child(5) { left: 50%; animation: float-up 19s linear infinite; animation-delay: 6s; width: 2px; height: 2px; }
.particle:nth-child(6) { left: 60%; animation: float-up-slow 24s linear infinite; animation-delay: 3s; width: 4px; height: 4px; }
.particle:nth-child(7) { left: 70%; animation: float-up 17s linear infinite; animation-delay: 5s; width: 2px; height: 2px; }
.particle:nth-child(8) { left: 80%; animation: float-up-slow 21s linear infinite; animation-delay: 7s; width: 3px; height: 3px; }
.particle:nth-child(9) { left: 90%; animation: float-up 15s linear infinite; animation-delay: 2.5s; width: 2px; height: 2px; }
.particle:nth-child(10) { left: 15%; animation: float-up-slow 23s linear infinite; animation-delay: 8s; width: 3px; height: 3px; }
.particle:nth-child(11) { left: 25%; animation: float-up 20s linear infinite; animation-delay: 4.5s; width: 2px; height: 2px; }
.particle:nth-child(12) { left: 75%; animation: float-up-slow 18s linear infinite; animation-delay: 1.5s; width: 4px; height: 4px; }

/* Animated gradient border on cards */
@keyframes border-glow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Shimmer effect on hover for cards */
.service-card::after,
.why-card::after,
.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(201, 169, 110, 0.03) 45%,
        rgba(201, 169, 110, 0.06) 50%,
        rgba(201, 169, 110, 0.03) 55%,
        transparent 60%
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::after,
.why-card:hover::after,
.testimonial-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

/* Social Links */
.social-whatsapp:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25D366;
}

.social-telegram:hover {
    background: rgba(0, 136, 204, 0.12);
    border-color: rgba(0, 136, 204, 0.4);
    color: #0088cc;
}

/* Navbar logo responsive */
@media (max-width: 768px) {
    .nav-logo .logo-img {
        height: 32px;
    }

    .footer-logo .footer-logo-img {
        height: 40px;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0ms; }
.services-grid .service-card:nth-child(2) { transition-delay: 50ms; }
.services-grid .service-card:nth-child(3) { transition-delay: 100ms; }
.services-grid .service-card:nth-child(4) { transition-delay: 150ms; }
.services-grid .service-card:nth-child(5) { transition-delay: 200ms; }
.services-grid .service-card:nth-child(6) { transition-delay: 250ms; }
.services-grid .service-card:nth-child(7) { transition-delay: 300ms; }
.services-grid .service-card:nth-child(8) { transition-delay: 350ms; }
.services-grid .service-card:nth-child(9) { transition-delay: 400ms; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 0;
}
