/* =====================================================
   XAMU SYSTEMS - Premium Gold/Black Design
   ===================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    /* Gold Colors */
    --gold-primary: #B38728;
    --gold-light: #FBDA61;
    --gold-dark: #8B6914;
    --gold-gradient: linear-gradient(135deg, #B38728 0%, #FBDA61 50%, #B38728 100%);

    /* Background Colors */
    --bg-black: #0a0a0f;
    --bg-dark: #0e0e12;
    --bg-card: #131316;
    --bg-zinc-900: #1e1e22;
    --bg-zinc-950: #111114;

    /* Text Colors */
    --text-white: #ffffff;
    --text-zinc-300: #d4d4d8;
    --text-zinc-400: #a1a1aa;
    --text-zinc-500: #71717a;
    --text-zinc-600: #52525b;

    /* Border Colors */
    --border-gold: rgba(179, 135, 40, 0.3);
    --border-zinc: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-gold: 0 0 30px rgba(179, 135, 40, 0.3);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Global fix: italic gradient text clipping */
h1, h2, h3, .section-title, .page-title {
    overflow: visible !important;
    line-height: 1.3;
    padding: 0.15em 0.15em;
}
h1 span, h2 span, h3 span, .section-title span, .page-title span,
.cta-content h2 span {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0.15em 0.15em;
    display: inline-block;
    line-height: 1.3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold-primary);
    color: var(--bg-black);
}

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

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

/* Gold Gradient Text */
.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Background */
.gold-bg {
    background: var(--gold-gradient);
}

/* Gold Border */
.gold-border {
    border: 1px solid var(--border-gold);
}

/* Uppercase Tracking */
.uppercase-wide {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    font-size: 0.75rem;
}

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */

header {
    position: relative;
    padding: 24px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 100;
}

header.scrolled {
    background: transparent;
    padding: 16px 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--bg-black);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--gold-primary);
}

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

/* CTA Button in Nav */
.nav-cta {
    padding: 12px 24px;
    border: 1px solid var(--border-gold);
    background: transparent;
    color: var(--text-white) !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-gradient);
    color: var(--bg-black) !important;
    border-color: transparent;
}

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

/* =====================================================
   MEGA MENU
   ===================================================== */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    color: var(--text-white);
    font-family: inherit;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    position: relative;
    transition: var(--transition);
}

.nav-dropdown-trigger svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
}

.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.active .nav-dropdown-trigger {
    color: var(--gold-primary);
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown.active .nav-dropdown-trigger svg {
    transform: rotate(180deg);
    opacity: 1;
}

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

/* Mega Panel */
.mega-panel {
    position: absolute;
    top: calc(100% + 24px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 480px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(13, 13, 18, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-gold);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(179, 135, 40, 0.08);
    z-index: 100;
}

/* Gold accent line at top */
.mega-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    opacity: 0.6;
}

/* Bridge element to prevent gap flicker */
.mega-panel::after {
    content: '';
    position: absolute;
    top: -28px;
    left: 0;
    right: 0;
    height: 28px;
}

.nav-dropdown:hover .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Small panel variant (Services) */
.mega-panel-sm {
    min-width: 320px;
}

/* Grid layout */
.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.mega-panel-sm .mega-grid {
    grid-template-columns: 1fr;
}

/* Individual item */
.mega-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-item:hover {
    background: rgba(179, 135, 40, 0.1);
}

/* No underline on mega items */
.mega-item::after {
    display: none;
}

/* Icon container */
.mega-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(179, 135, 40, 0.08);
    border: 1px solid rgba(179, 135, 40, 0.12);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mega-item:hover .mega-item-icon {
    background: rgba(179, 135, 40, 0.15);
    border-color: rgba(179, 135, 40, 0.25);
    box-shadow: 0 0 20px rgba(179, 135, 40, 0.1);
}

/* Text */
.mega-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-item-title {
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.mega-item:hover .mega-item-title {
    color: var(--gold-primary);
}

.mega-item-desc {
    color: var(--text-zinc-500);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle svg {
    width: 32px;
    height: 32px;
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */

main {
    margin-top: 0;
    padding-top: 0;
    min-height: calc(100vh - 200px);
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
    overflow: visible;
}

/* Hero Background Effects */
.hero::before {
    content: '';
    position: absolute;
    top: 25%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--gold-primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    animation: blobFloat1 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--gold-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    animation: blobFloat2 11s ease-in-out infinite;
}

.hero-blob3 {
    position: absolute;
    top: 60%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: var(--gold-primary);
    opacity: 0.04;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: blobFloat3 14s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 24px;
    padding: 0.15em 0;
    overflow: visible;
}

.hero h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    padding: 0.1em 0.15em;
    display: inline-block;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-zinc-400);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-zinc-500);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 4px;
}

/* Hero Background Image */
.hero-bg-image {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    pointer-events: none;
    filter: grayscale(1) contrast(1.2);
    max-height: 80vh;
    width: auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(179, 135, 40, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(179, 135, 40, 0.1);
    border-color: var(--gold-primary);
}

.btn-large {
    padding: 20px 48px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* =====================================================
   SECTIONS
   ===================================================== */

section {
    padding: 120px 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 80px;
}

.section-label {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    font-size: 0.875rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.3;
    padding: 0.15em 0;
}

.section-title span {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.1em 0.15em;
    line-height: 1.3;
}

.section-description {
    color: var(--text-zinc-500);
    font-size: 1.125rem;
    max-width: 500px;
}

/* =====================================================
   VIDEO SECTION
   ===================================================== */

.video-section {
    padding: 0 0 80px;
    position: relative;
}

.video-wrapper {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
}

/* =====================================================
   SERVICES / PRODUCTS GRID
   ===================================================== */

.services-section {
    background: var(--bg-dark);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 48px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: rgba(179, 135, 40, 0.3);
    transition: var(--transition-slow);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover::after {
    width: 100%;
    background: var(--gold-primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--gold-primary);
}

.service-card p {
    color: var(--text-zinc-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link svg {
    width: 16px;
    height: 16px;
}

/* Product Cards (Detailed) - Glassmorphism + 3D Tilt */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 32px;
    perspective: 1000px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    overflow: hidden;
}

/* Glassmorphism Glow Effect */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(179, 135, 40, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

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

.product-card:hover {
    border-color: rgba(179, 135, 40, 0.4);
    transform: rotateX(5deg) rotateY(-5deg) translateY(-16px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(179, 135, 40, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Shine Effect on Hover */
.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.35s ease;
    pointer-events: none;
}

.product-card:hover::after {
    transform: translateX(100%) rotate(45deg);
}

.product-card.featured {
    border: 1px solid rgba(179, 135, 40, 0.5);
    background: rgba(179, 135, 40, 0.05);
    backdrop-filter: blur(20px);
}

.product-card.featured::before {
    opacity: 0.5;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: var(--bg-black);
    padding: 8px 18px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(179, 135, 40, 0.4);
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.product-icon {
    font-size: 3rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-category {
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-zinc-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    background: rgba(179, 135, 40, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 135, 40, 0.3);
    color: var(--gold-primary);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    transition: var(--transition);
}

.feature-tag:hover {
    background: rgba(179, 135, 40, 0.2);
    transform: scale(1.05);
}

.product-highlights {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.highlight {
    color: var(--text-zinc-400);
    font-size: 0.9rem;
}

.product-pricing {
    text-align: center;
    padding: 20px;
    background: rgba(179, 135, 40, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 135, 40, 0.2);
    border-radius: 12px;
    margin-bottom: 24px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

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

.product-actions {
    display: flex;
    gap: 12px;
}

.product-actions .btn {
    flex: 1;
    padding: 14px 20px;
}

/* =====================================================
   VISION / ABOUT SECTION
   ===================================================== */

.vision-section {
    position: relative;
    overflow: visible;
}

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

.vision-image {
    position: relative;
}

.vision-image img {
    width: 100%;
    filter: grayscale(1);
    transition: var(--transition-slow);
}

.vision-image:hover img {
    filter: grayscale(0);
}

.vision-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-primary);
    opacity: 0.1;
    filter: blur(100px);
    z-index: -1;
}

.vision-stat-box {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    padding: 32px;
    background: var(--bg-black);
    border: 1px solid var(--border-gold);
}

.vision-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-stat-label {
    color: var(--text-zinc-400);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-top: 8px;
}

.vision-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 32px;
    padding-bottom: 0.1em;
}

.vision-content h2 span {
    display: block;
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-text {
    color: var(--text-zinc-400);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.vision-list {
    list-style: none;
    padding-top: 24px;
}

.vision-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.vision-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold-gradient);
    border-radius: 50%;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-section {
    background: var(--bg-zinc-950);
}

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

.contact-info h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 32px;
    padding-bottom: 0.1em;
}

.contact-info h2 span {
    display: block;
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text {
    color: var(--text-zinc-400);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 48px;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 700;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-white);
}

.contact-value a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(179, 135, 40, 0.3);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(179, 135, 40, 0.1);
}

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

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

.form-group label {
    display: block;
    color: var(--text-zinc-500);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-zinc-900);
    border: none;
    border-bottom: 1px solid var(--border-zinc);
    padding: 16px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--gold-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-zinc-600);
}

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

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

/* =====================================================
   FOOTER
   ===================================================== */

footer {
    background: var(--bg-black);
    border-top: 1px solid var(--border-zinc);
    padding: 80px 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

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

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    color: var(--text-zinc-500);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-zinc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-zinc);
    text-align: center;
}

.footer-copyright {
    color: var(--text-zinc-600);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Footer Columns (Alternative Layout) */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-column p {
    color: var(--text-zinc-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: var(--text-zinc-500);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul a:hover {
    color: var(--gold-primary);
}

.footer-address {
    color: var(--text-zinc-500);
    font-size: 0.9rem;
    line-height: 1.8;
    font-style: normal;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    text-align: center;
    padding: 100px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-zinc);
    margin: 80px 0;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
    padding: 0.15em 0;
    overflow: visible;
}

.cta-section p {
    color: var(--text-zinc-400);
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* =====================================================
   CONTENT PAGES
   ===================================================== */

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

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: var(--gold-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.3;
    padding: 0.15em 0;
}

.page-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    padding: 0.1em 0.15em;
    line-height: 1.3;
}

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

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 120px;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    margin-top: 48px;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-section p {
    color: var(--text-zinc-400);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul {
    color: var(--text-zinc-400);
    margin-left: 24px;
    margin-bottom: 24px;
    line-height: 2;
}

/* Feature Cards (About Page) */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-zinc);
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.feature-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h4 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-zinc-400);
    font-size: 1rem;
    margin-bottom: 0;
}

/* =====================================================
   ALERT / MESSAGES
   ===================================================== */

.alert {
    padding: 20px 24px;
    margin-bottom: 24px;
    border: 1px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

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

    .vision-image {
        order: -1;
    }

    .vision-stat-box {
        display: none;
    }

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

@media (max-width: 768px) {
    /* Navigation */
    nav ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Sections */
    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-stats {
        gap: 32px;
        margin-top: 48px;
    }

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

    /* Grids */
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

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

    /* Footer */
    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Contact Form */
    .contact-form {
        padding: 32px 24px;
    }

    /* Product Cards */
    .product-actions {
        flex-direction: column;
    }

    /* CTA */
    .cta-section {
        padding: 60px 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card,
    .product-card {
        padding: 32px 24px;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.10; }
    33%       { transform: translate(30px, -40px) scale(1.1); opacity: 0.14; }
    66%       { transform: translate(-20px, 20px) scale(0.95); opacity: 0.08; }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.05; }
    40%       { transform: translate(-35px, 30px) scale(1.08); opacity: 0.08; }
    75%       { transform: translate(15px, -25px) scale(0.92); opacity: 0.04; }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.04; }
    50%       { transform: translate(25px, -30px) scale(1.12); opacity: 0.07; }
}

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

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

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
    header, footer, .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    main {
        margin-top: 0;
    }
}

/* =====================================================
   PRODUCT PAGE ACCENT COLORS
   ===================================================== */

/* Purple Accent (BMS) */
.accent-purple {
    --accent-primary: #9d4edd;
    --accent-secondary: #7b2cbf;
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
}

/* Blue Accent (SMS) */
.accent-blue {
    --accent-primary: #4ea8de;
    --accent-secondary: #3a86ff;
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #4ea8de 100%);
    --accent-shadow: 0 0 30px rgba(78, 168, 222, 0.3);
}

/* Green Accent (KI-Agent) */
.accent-green {
    --accent-primary: #38b000;
    --accent-secondary: #70e000;
    --accent-gradient: linear-gradient(135deg, #38b000 0%, #70e000 100%);
    --accent-shadow: 0 0 30px rgba(56, 176, 0, 0.3);
}

/* Cyan Accent (Tools) */
.accent-cyan {
    --accent-primary: #00b4d8;
    --accent-secondary: #0077b6;
    --accent-gradient: linear-gradient(135deg, #00b4d8 0%, #90e0ef 100%);
    --accent-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
}

/* Orange Accent (IVS) */
.accent-orange {
    --accent-primary: #e76f51;
    --accent-secondary: #f4a261;
    --accent-gradient: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
    --accent-shadow: 0 0 30px rgba(231, 111, 81, 0.3);
}

/* Violet Accent (KI-Schulung) */
.accent-violet {
    --accent-primary: #7c3aed;
    --accent-secondary: #a78bfa;
    --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    --accent-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

/* Gold Accent (SEO) */
.accent-gold {
    --accent-primary: #B38728;
    --accent-secondary: #FBDA61;
    --accent-gradient: linear-gradient(135deg, #C9952E 0%, #FBDA61 50%, #C9952E 100%);
    --accent-shadow: 0 0 30px rgba(179, 135, 40, 0.4);
}

/* Product Page - Use accent colors */
.product-page .product-badge {
    background: var(--accent-gradient);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.product-page .section-title span,
.product-page .cta-content h2 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-page .btn-primary {
    background: var(--accent-gradient);
    border-color: transparent;
}

.product-page .btn-primary:hover {
    box-shadow: var(--accent-shadow);
}

.product-page .btn-outline {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.product-page .btn-outline:hover {
    background: var(--accent-primary);
    color: #fff;
}

/* =====================================================
   PRODUCT PAGE HERO
   ===================================================== */

.product-hero {
    padding: 40px 0 100px;
    position: relative;
    overflow: visible;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: var(--accent-primary, var(--gold-primary));
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

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

.product-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 24px;
    padding: 0.15em 0;
    overflow: visible;
}

.product-hero h1 span {
    display: inline-block;
    background: var(--accent-gradient, var(--gold-gradient));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    padding: 0.1em 0.15em;
    line-height: 1.3;
}

.product-hero .hero-subtitle {
    color: var(--text-zinc-400);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */

.benefits-section {
    padding: 100px 0;
    background: var(--bg-zinc-950);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.benefit-card:hover {
    border-color: var(--accent-primary, rgba(179, 135, 40, 0.4));
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(179, 135, 40, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-zinc-400);
    font-size: 1rem;
    line-height: 1.6;
}

/* =====================================================
   MODULES SECTION
   ===================================================== */

.modules-section {
    padding: 100px 0;
}

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

.module-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.module-card:hover {
    border-color: var(--accent-primary, rgba(179, 135, 40, 0.4));
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(179, 135, 40, 0.1);
}

.module-card.module-new {
    border-color: rgba(56, 176, 0, 0.3);
}

.module-card.module-ai {
    border-color: rgba(157, 78, 221, 0.3);
}

.module-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-gradient, var(--gold-gradient));
    color: #fff;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.module-card h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.module-card > p {
    color: var(--text-zinc-500);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.module-features {
    list-style: none;
}

.module-features li {
    color: var(--text-zinc-400);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-zinc);
}

.module-features li:last-child {
    border-bottom: none;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */

.pricing-section {
    padding: 100px 0;
    background: var(--bg-zinc-950);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.pricing-card:hover {
    border-color: rgba(179, 135, 40, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(179, 135, 40, 0.1);
}

.pricing-card.featured,
.pricing-card.popular {
    border-color: var(--accent-primary, var(--gold-primary));
    background: rgba(179, 135, 40, 0.05);
    box-shadow: 0 0 40px rgba(179, 135, 40, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient, var(--gold-gradient));
    color: #fff;
    padding: 6px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card h3 {
    color: var(--text-zinc-400);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
}

.price-period {
    color: var(--text-zinc-500);
    font-size: 1rem;
}

.pricing-subtitle {
    color: var(--text-zinc-500);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.pricing-savings {
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    color: var(--text-zinc-400);
    font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-zinc);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.highlight {
    color: var(--accent-primary, var(--gold-primary));
    font-weight: 600;
}

/* =====================================================
   CTA SECTION (Product Pages)
   ===================================================== */

.product-page .cta-section {
    background: var(--bg-card);
    border: 1px solid var(--border-zinc);
    margin: 0;
    padding: 80px 40px;
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.3;
    padding: 0.15em 0;
}

.cta-content p {
    color: var(--text-zinc-400);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-contact {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-contact a {
    color: var(--text-zinc-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cta-contact a:hover {
    color: var(--accent-primary, var(--gold-primary));
}

.cta-contact span {
    color: var(--text-zinc-600);
}

/* =====================================================
   FEATURES SECTION
   ===================================================== */

.features-section {
    padding: 100px 0;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.feature-card:hover {
    border-color: var(--accent-primary, rgba(179, 135, 40, 0.4));
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(179, 135, 40, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card > p {
    color: var(--text-zinc-400);
    font-size: 1rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--text-zinc-500);
    font-size: 0.9rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary, var(--gold-primary));
}

/* =====================================================
   TOOLS SECTION
   ===================================================== */

.tools-section {
    padding: 100px 0;
}

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

.tool-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.tool-card:hover {
    border-color: var(--accent-primary, rgba(179, 135, 40, 0.4));
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(179, 135, 40, 0.1);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.tool-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tool-subtitle {
    color: var(--accent-primary, var(--gold-primary));
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.tool-description {
    color: var(--text-zinc-400);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-features {
    list-style: none;
    margin-bottom: 24px;
}

.tool-features li {
    color: var(--text-zinc-500);
    font-size: 0.9rem;
    padding: 6px 0;
}

/* Why Free Section */
.why-free-section {
    padding: 100px 0;
    background: var(--bg-zinc-950);
}

.why-free-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-free-text p {
    color: var(--text-zinc-400);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-free-text a {
    color: var(--accent-primary, var(--gold-primary));
    text-decoration: none;
}

.why-free-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-free-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-free-item:hover {
    border-color: rgba(179, 135, 40, 0.3);
    transform: translateX(8px);
}

.why-free-icon {
    color: #22c55e;
    font-size: 1.25rem;
    font-weight: 700;
}

.why-free-item span:last-child {
    color: var(--text-white);
    font-weight: 500;
}

/* =====================================================
   KI PRODUCTS SECTION
   ===================================================== */

.ki-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.ki-product-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.ki-product-card:hover {
    border-color: var(--accent-primary, rgba(179, 135, 40, 0.4));
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(56, 176, 0, 0.15);
}

.ki-product-card.featured {
    border-color: var(--accent-primary);
    background: rgba(56, 176, 0, 0.05);
}

.ki-product-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.ki-product-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.ki-product-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.ki-product-subtitle {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.ki-product-features {
    margin-bottom: 32px;
}

.ki-feature {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-zinc);
}

.ki-feature:last-child {
    border-bottom: none;
}

.ki-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ki-feature h4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.ki-feature p {
    color: var(--text-zinc-500);
    font-size: 0.85rem;
}

.ki-product-pricing {
    margin-bottom: 24px;
}

.ki-price {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.ki-included {
    color: var(--text-zinc-500);
    font-size: 0.85rem;
}

/* Use Cases Section */
.usecases-section {
    padding: 100px 0;
    background: var(--bg-zinc-950);
}

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

.usecase-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.usecase-card:hover {
    border-color: var(--accent-primary, rgba(179, 135, 40, 0.4));
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(179, 135, 40, 0.1);
}

.usecase-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.usecase-card h3 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.usecase-card p {
    color: var(--text-zinc-500);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Modules Compact Grid */
.modules-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.module-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.module-compact:hover {
    border-color: var(--accent-primary, rgba(179, 135, 40, 0.4));
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.module-compact .module-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.module-compact h4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.module-compact p {
    color: var(--text-zinc-500);
    font-size: 0.85rem;
}

/* =====================================================
   LOGO IMAGE STYLES
   ===================================================== */

.logo-image {
    height: 120px;
    width: auto;
}

.footer-logo-image {
    height: 64px;
    width: auto;
}

/* =====================================================
   RESPONSIVE - PRODUCT PAGES
   ===================================================== */

@media (max-width: 768px) {
    .product-hero {
        padding: 40px 0 60px;
    }

    .ki-products-grid {
        grid-template-columns: 1fr;
    }

    .why-free-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card.featured,
    .pricing-card.popular {
        transform: none;
    }
}

/* Portfolio Images - Show bottom part */
.portfolio-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    display: block;
}
