/* ============================================
   AVIZOO TECH - ULTRA MODERN REDESIGN 2026
   Premium, Animated, Aesthetic Design
   ============================================ */

/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* DESIGN SYSTEM - ULTRA 2026 */
:root {
    /* ELEVATED Green Palette - Vibrant & Bold */
    --green-950: #051a00;
    --green-900: #0d3300;
    --green-800: #1a4d00;
    --green-700: #2a6b15;
    --green-600: #388a23;
    --green-500: #4caf35;
    --green-400: #66cc4d;
    --green-300: #85e066;
    --green-200: #a8f084;
    --green-100: #d0ffa8;

    /* Sophisticated Neutrals with Depth */
    --black: #000000;
    --gray-950: #0d0d0d;
    --gray-900: #1a1a1a;
    --gray-800: #262626;
    --gray-700: #333333;
    --gray-600: #4d4d4d;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-300: #d4d4d4;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;

    /* Semantic Colors - Elevated */
    --primary: var(--green-600);
    --primary-dark: var(--green-800);
    --primary-light: var(--green-400);
    --primary-glow: rgba(76, 175, 53, 0.25);
    --text: var(--gray-900);
    --text-secondary: var(--gray-700);
    --text-muted: var(--gray-600);
    --text-light: var(--gray-500);
    --bg: var(--white);
    --bg-alt: var(--gray-50);
    --bg-elevated: var(--white);
    --border: var(--gray-200);
    --border-strong: var(--gray-300);

    /* Gradient Presets - BOLD */
    --gradient-primary: linear-gradient(135deg, #2a6b15 0%, #4caf35 50%, #66cc4d 100%);
    --gradient-dark: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #262626 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(76, 175, 53, 0.15) 0%, transparent 70%);
    --gradient-shine: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);

    /* Premium Spacing - DRAMATIC */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    --space-4xl: 128px;
    --space-5xl: 192px;

    /* Modern Typography - BOLD */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --text-xs: 13px;
    --text-sm: 15px;
    --text-base: 17px;
    --text-lg: 20px;
    --text-xl: 24px;
    --text-2xl: 30px;
    --text-3xl: 38px;
    --text-4xl: 48px;
    --text-5xl: 64px;
    --text-6xl: 80px;
    --text-7xl: 96px;

    /* Premium Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-full: 9999px;

    /* PREMIUM Shadow System */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
    --shadow-2xl: 0 40px 96px rgba(0, 0, 0, 0.20);
    --shadow-colored: 0 20px 50px rgba(42, 107, 21, 0.25);
    --shadow-colored-strong: 0 30px 70px rgba(42, 107, 21, 0.35);
    --shadow-inner: inset 0 2px 8px rgba(0, 0, 0, 0.06);

    /* ULTRA SMOOTH Animations */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);

    /* Animation Durations */
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;
    --duration-slowest: 800ms;
}

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* BASE STYLES - SMOOTH */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
    position: relative;
}

/* AMBIENT BACKGROUND GLOW */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(76, 175, 53, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(56, 138, 35, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(42, 107, 21, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: ambientMove 30s ease-in-out infinite alternate;
}

@keyframes ambientMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-5%, 5%) scale(1.05);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(48px, 8vw, 96px);
}

h2 {
    font-size: clamp(36px, 6vw, 64px);
}

h3 {
    font-size: clamp(28px, 4vw, 48px);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CONTAINER - WIDER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

/* ============================================
   SCROLL PROGRESS - LUMINOUS
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: width 100ms linear;
    box-shadow:
        0 0 30px rgba(76, 175, 53, 0.6),
        0 4px 20px rgba(76, 175, 53, 0.3);

    &::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
        animation: shimmer 2s infinite;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(100vw);
    }
}

/* ============================================
   HEADER - NEXT-GEN GLASSMORPHISM
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 9999;
    transition: all 500ms var(--ease-expo);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-shine);
    opacity: 0;
    transition: opacity 500ms var(--ease-smooth);
    pointer-events: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.90);
    box-shadow: var(--shadow-lg);
    padding: 4px 0;
}

.header.scrolled::before {
    opacity: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    transition: padding 400ms var(--ease-smooth);
}

.header.scrolled .header-content {
    padding: var(--space-sm) 0;
}

/* LOGO - ANIMATED */
.logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: relative;
    transition: transform 500ms var(--ease-expo);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 700ms var(--ease-expo);
    box-shadow: 0 0 15px var(--primary-glow);
}

.logo:hover {
    transform: translateY(-2px) scale(1.02);
}

.logo:hover::after {
    width: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text);
    line-height: 1;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtext {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.25em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

/* NAVIGATION - ULTRA MODERN */
.nav {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 12px 0;
    position: relative;
    transition: all 400ms var(--ease-smooth);
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    width: 4px;
    height: 0;
    background: var(--primary);
    transform: translateY(-50%);
    transition: height 400ms var(--ease-expo);
    border-radius: var(--radius-full);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 600ms var(--ease-expo);
    box-shadow: 0 0 20px var(--primary-glow);
}

.nav-link:hover {
    color: var(--text);
    transform: translateX(6px);
}

.nav-link:hover::before {
    height: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.nav-link.active::after {
    width: 100%;
}

/* ============================================
   HERO - CINEMATIC & IMMERSIVE
   ============================================ */
.hero {
    margin-top: 88px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(76, 175, 53, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(56, 138, 35, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

/* Primary Glow Orb */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse at center,
            rgba(76, 175, 53, 0.12) 0%,
            rgba(56, 138, 35, 0.08) 40%,
            transparent 70%);
    animation: heroGlowPrimary 25s ease-in-out infinite alternate;
    filter: blur(80px);
}

@keyframes heroGlowPrimary {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.4;
    }

    100% {
        transform: translate(-10%, 8%) scale(1.15) rotate(5deg);
        opacity: 0.7;
    }
}

/* Secondary Floating Orb */
.hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(42, 107, 21, 0.12) 0%,
            rgba(56, 138, 35, 0.06) 40%,
            transparent 70%);
    border-radius: 50%;
    animation: floatSecondary 20s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes floatSecondary {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10%, -40px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-5xl) 0;
}

/* HERO TITLE - ULTRA DRAMATIC */
.hero-title {
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.045em;
    line-height: 1.05;
    background: linear-gradient(135deg,
            #0d0d0d 0%,
            #262626 30%,
            #2a6b15 70%,
            #4caf35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation:
        fadeInUp 1s var(--ease-expo) 0.2s both,
        gradientShift 8s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(76, 175, 53, 0.15);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text-muted);
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 1s var(--ease-expo) 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO PILLARS - SPECTACULAR CARDS */
.hero-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: all 600ms var(--ease-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s var(--ease-expo) both;
}

.pillar-item:nth-child(1) {
    animation-delay: 0.6s;
}

.pillar-item:nth-child(2) {
    animation-delay: 0.75s;
}

.pillar-item:nth-child(3) {
    animation-delay: 0.9s;
}

.pillar-item:nth-child(4) {
    animation-delay: 1.05s;
}

.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(61, 107, 31, 0.05) 0%,
            rgba(90, 144, 48, 0.08) 100%);
    opacity: 0;
    transition: opacity 600ms var(--ease-smooth);
}

.pillar-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.pillar-item:hover::before {
    opacity: 1;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    transition: all 700ms var(--ease-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s var(--ease-expo) both;
}

.pillar-item:nth-child(1) {
    animation-delay: 0.6s;
}

.pillar-item:nth-child(2) {
    animation-delay: 0.75s;
}

.pillar-item:nth-child(3) {
    animation-delay: 0.9s;
}

.pillar-item:nth-child(4) {
    animation-delay: 1.05s;
}

/* Gradient Overlay */
.pillar-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

/* Glow Effect */
.pillar-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 53, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 800ms var(--ease-expo);
}

.pillar-item:hover {
    transform: translateY(-16px) scale(1.05);
    box-shadow: var(--shadow-colored-strong);
    border-color: transparent;
}

.pillar-item:hover::before {
    opacity: 0.08;
}

.pillar-item:hover::after {
    width: 300px;
    height: 300px;
}

.pillar-icon {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: 2px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 700ms var(--ease-expo);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.pillar-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.pillar-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 1.8;
    transition: transform 700ms var(--ease-spring);
    position: relative;
    z-index: 1;
}

.pillar-item:hover .pillar-icon {
    color: var(--white);
    transform: rotate(12deg) scale(1.25);
    box-shadow: var(--shadow-colored);
    border-color: transparent;
}

.pillar-item:hover .pillar-icon::before {
    opacity: 1;
}

.pillar-item:hover .pillar-icon svg {
    transform: scale(1.15) rotate(-12deg);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

.pillar-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTIONS - DRAMATIC SPACING
   ============================================ */
.section-padding {
    padding: var(--space-5xl) 0;
}

.section-padding-small {
    padding: var(--space-4xl) 0;
}

.bg-light {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(76, 175, 53, 0.03) 0%, transparent 60%),
        var(--gray-50);
    position: relative;
}

.bg-dark {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(76, 175, 53, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--gray-950), var(--gray-900));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(76, 175, 53, 0.5) 50%,
            transparent);
    box-shadow: 0 0 20px rgba(76, 175, 53, 0.5);
}

/* SECTION HEADERS - ULTRA BOLD */
.section-title {
    font-size: clamp(42px, 5.5vw, 78px);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    text-align: center;
    letter-spacing: -0.045em;
    line-height: 1.08;
    color: var(--gray-950);
}

/* Gradient text only on white/light backgrounds */
.hero .section-title,
.domains .section-title,
.products-teaser .section-title {
    background: linear-gradient(135deg,
            var(--gray-950) 0%,
            var(--gray-800) 40%,
            var(--green-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Strong color for bg-light sections */
.bg-light .section-title {
    color: var(--gray-950);
    background: none;
    -webkit-text-fill-color: initial;
}

.section-subtitle {
    font-size: clamp(18px, 2.2vw, 26px);
    color: var(--text-muted);
    text-align: center;
    max-width: 860px;
    margin: 0 auto var(--space-4xl);
    line-height: 1.7;
    font-weight: 400;
}

/* Better visibility on light backgrounds */
.bg-light .section-subtitle,
.bg-light .section-desc,
.bg-light p {
    color: var(--gray-700);
}

/* ANIMATED ELEMENTS */
.fade-in-element {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo);
    transition-delay: var(--stagger-delay, 0ms);
}

.fade-in-element.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTONS - SPECTACULAR
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    font-family: var(--font-display);
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: all 500ms var(--ease-expo);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 700ms var(--ease-expo), height 700ms var(--ease-expo);
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 600ms var(--ease-smooth);
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-colored-strong);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 600ms var(--ease-smooth);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-colored);
}

.btn-secondary:hover::after {
    opacity: 1;
}

/* ============================================
   DOMAIN CARDS - ASYMMETRIC & MODERN
   ============================================ */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    align-items: start;
    grid-auto-rows: minmax(0, auto);
}

.domain-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: transform 700ms var(--ease-expo), box-shadow 700ms var(--ease-expo), border-color 700ms var(--ease-expo);
    transform: translateY(0) translateZ(0) scale(1) !important;
    will-change: transform;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Accent Bar */
.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 700ms var(--ease-expo);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Radial Glow */
.domain-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 53, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 800ms var(--ease-expo);
    pointer-events: none;
}

.domain-card:hover {
    transform: translateY(-20px) translateZ(20px) scale(1.03) !important;
    box-shadow: var(--shadow-colored);
    border-color: rgba(76, 175, 53, 0.3);
}

.domain-card:hover::before {
    height: 100%;
}

.domain-card:hover::after {
    width: 500px;
    height: 500px;
}

.domain-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    transition: all 700ms var(--ease-expo);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.domain-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.domain-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.8;
    transition: transform 700ms var(--ease-spring);
    position: relative;
    z-index: 1;
}

.domain-card:hover .domain-icon {
    color: var(--white);
    transform: rotate(-15deg) scale(1.3);
    box-shadow: var(--shadow-colored);
    border-color: transparent;
}

.domain-card:hover .domain-icon::before {
    opacity: 1;
}

.domain-card:hover .domain-icon svg {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.4));
}

.domain-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.domain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: relative;
    z-index: 1;
}

.domain-list li {
    font-size: 16px;
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
    transition: all 400ms var(--ease-smooth);
}

.domain-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: all 500ms var(--ease-spring);
    box-shadow: 0 0 8px rgba(76, 175, 53, 0.3);
}

.domain-card:hover .domain-list li {
    color: var(--text);
    transform: translateX(4px);
}

.domain-card:hover .domain-list li::before {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 20px rgba(76, 175, 53, 0.6);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }
}

/* ============================================
   PRODUCT PREVIEW CARDS - SPECTACULAR
   ============================================ */
.products-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.product-preview-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Gradient Background */
.product-preview-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, rgba(76, 175, 53, 0.10) 0%, rgba(76, 175, 53, 0.02) 100%);
    transition: height 700ms var(--ease-expo);
}

/* Bottom Accent Line */
.product-preview-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: var(--gradient-primary);
    transition: width 700ms var(--ease-expo);
    box-shadow: 0 0 25px var(--primary-glow);
}

.product-preview-card:hover {
    transform: translateY(-24px) rotate(2deg) scale(1.03);
    box-shadow: var(--shadow-colored-strong);
    border-color: rgba(76, 175, 53, 0.4);
}

.product-preview-card:hover::before {
    height: 100%;
}

.product-preview-card:hover::after {
    width: 100%;
}

.product-preview-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.product-preview-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================
   PARTNERS SECTION - PREMIUM
   ============================================ */
.partners-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.partner-brand {
    text-align: center;
    padding: var(--space-3xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.partner-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(76, 175, 53, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.partner-brand::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 700ms var(--ease-expo);
}

.partner-brand:hover {
    transform: translateY(-20px) scale(1.04);
    box-shadow: var(--shadow-colored-strong);
    border-color: rgba(76, 175, 53, 0.3);
}

.partner-brand:hover::before {
    opacity: 1;
}

.partner-brand:hover::after {
    transform: scaleX(1);
}

.partner-logo {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    transition: all 600ms var(--ease-expo);
}

.partner-brand:hover .partner-logo {
    transform: scale(1.1);
    text-shadow: 0 0 40px rgba(76, 175, 53, 0.3);
}

.partner-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   CTA SECTION - DRAMATIC
   ============================================ */
/* ============================================
   CTA SECTION - ULTRA DRAMATIC
   ============================================ */
.cta {
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(76, 175, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(56, 138, 35, 0.1) 0%, transparent 50%);
    animation: ctaGlow 20s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.cta-content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: -0.045em;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-3xl);
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER - PREMIUM GRADIENT
   ============================================ */
.footer {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(42, 107, 21, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--gray-950), var(--gray-900));
    color: var(--white);
    padding: var(--space-5xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 30px rgba(76, 175, 53, 0.6);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo .logo-text {
    font-size: 30px;
    background: linear-gradient(135deg, var(--white), var(--gray-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-subtext {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-md);
    letter-spacing: 0.03em;
    line-height: 1.6;
    max-width: 400px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--white);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 400ms var(--ease-smooth);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 600ms var(--ease-expo);
    box-shadow: 0 0 10px rgba(76, 175, 53, 0.4);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(10px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.footer-schedule {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

/* ============================================
   PAGE HEADER - CINEMATIC
   ============================================ */
.page-header {
    margin-top: 88px;
    padding: var(--space-5xl) 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(76, 175, 53, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSecondary 18s ease-in-out infinite;
    filter: blur(60px);
}

.page-title {
    font-size: clamp(46px, 6.5vw, 80px);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.045em;
    line-height: 1.08;
    color: var(--gray-950);
}

.page-subtitle {
    font-size: clamp(18px, 2.2vw, 26px);
    color: var(--gray-700);
    line-height: 1.7;
    max-width: 840px;
    margin: 0 auto;
    font-weight: 500;
}

/* ============================================
   PRODUCTS PAGE - SUBNAV ULTRA MODERN
   ============================================ */
.product-image-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 700ms var(--ease-expo);
    margin-bottom: 24px;
}

.product-image-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 700ms var(--ease-expo);
}

.product-image-container:hover .product-image {
    transform: scale(1.05);
}

.image-caption {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    margin-top: var(--space-md);
    font-style: italic;
    font-weight: 500;
}

.products-subnav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.subnav-link {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    transition: all 600ms var(--ease-expo);
    position: relative;
    font-family: var(--font-display);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    overflow: hidden;
}

.subnav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: var(--radius-full);
    transition: opacity 600ms var(--ease-smooth);
    z-index: -1;
}

.subnav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 700ms var(--ease-expo), height 700ms var(--ease-expo);
}

.subnav-link:hover {
    color: var(--white);
    transform: translateY(-6px) scale(1.05);
    border-color: transparent;
    box-shadow: var(--shadow-colored);
}

.subnav-link:hover::before {
    opacity: 1;
}

.subnav-link:hover::after {
    width: 300px;
    height: 300px;
}

.product-section {
    scroll-margin-top: 140px;
}

.product-intro {
    font-size: clamp(17px, 1.9vw, 22px);
    color: var(--text-muted);
    max-width: 960px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.75;
    text-align: center;
    font-weight: 400;
}

/* ============================================
   TABLES - ULTRA PREMIUM
   ============================================ */
.product-table-wrapper {
    overflow-x: auto;
    margin-bottom: var(--space-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.product-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-table thead {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
}

.product-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5) 50%,
            transparent);
}

.product-table th {
    padding: 26px 30px;
    text-align: left;
    font-size: 16px;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-table td {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.product-table tbody tr:last-child td {
    border-bottom: none;
}

.product-table tbody tr {
    transition: all 500ms var(--ease-expo);
    position: relative;
}

.product-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(76, 175, 53, 0.08), transparent);
    transition: width 600ms var(--ease-expo);
}

.product-table tbody tr:hover {
    background: rgba(76, 175, 53, 0.03);
    transform: scale(1.01);
}

.product-table tbody tr {
    transition: all 500ms var(--ease-expo);
    position: relative;
}

.product-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(76, 175, 53, 0.08), transparent);
    transition: width 600ms var(--ease-expo);
}

.product-table tbody tr:hover {
    background: rgba(76, 175, 53, 0.03);
    transform: scale(1.01);
}

.product-table tbody tr:hover::before {
    width: 100%;
}

.table-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.table-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.table-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(90, 144, 48, 0.4);
}

/* ============================================
   PRODUCT FEATURES - MODERN GRID
   ============================================ */
.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.feature-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-family: var(--font-display);
}

.feature-item p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.feature-box {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left,
            rgba(90, 144, 48, 0.05) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.feature-box:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
}

.feature-box p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.product-ideal-for {
    background: linear-gradient(135deg,
            var(--gray-50) 0%,
            var(--white) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
}

.product-ideal-for h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
}

.product-ideal-for p {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   IMAGES - SPECTACULAR GALLERIES
   ============================================ */
.hero-visual {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-image-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-image-caption {
    margin-top: var(--space-xl);
    text-align: center;
}

.hero-image-caption p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.product-image-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    margin-bottom: var(--space-3xl);
    align-items: start;
}

.product-image-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: 40px;
    margin-bottom: var(--space-3xl);
}

.product-gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
    transition: all 700ms var(--ease-expo);
    cursor: pointer;
    background: var(--white);
    aspect-ratio: 4/3;
}

/* Special layout pentru galeria cu 3 items (Hrănire și Adăpare) */
.gallery-3-items .product-gallery-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 50%;
}

.product-gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(61, 107, 31, 0.3);
}

.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 700ms var(--ease-expo);
}

.product-gallery-item:hover img {
    transform: scale(1.1);
}

/* DETAIL IMAGES GRID - CLEAN LAYOUT: 1 HERO + 2x2 GRID */
.detail-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: 24px;
    margin-bottom: var(--space-3xl);
    max-width: 1300px;
}

/* Prima imagine hero - full width, aspect ratio natural */
.detail-images-grid .detail-image-item:first-child {
    grid-column: span 2;
}

/* Restul de 4 imagini - grid 2x2 simetric cu aspect ratio pătrat */
.detail-images-grid .detail-image-item:nth-child(2),
.detail-images-grid .detail-image-item:nth-child(3),
.detail-images-grid .detail-image-item:nth-child(4),
.detail-images-grid .detail-image-item:nth-child(5) {
    grid-column: span 1;
    aspect-ratio: 1/1;
}

/* DETAIL IMAGES GRID UNIFORM - ALL EQUAL 2x2 */
.detail-images-grid-uniform {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: 24px;
    margin-bottom: var(--space-3xl);
    max-width: 1536px;
}

.detail-images-grid-uniform .detail-image-item {
    aspect-ratio: 4/3;
}

.detail-image-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
    transition: all 700ms var(--ease-expo);
    cursor: pointer;
    background: var(--white);
}

.detail-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 700ms var(--ease-expo);
}

.detail-image-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(61, 107, 31, 0.3);
}

.detail-image-item:hover img {
    transform: scale(1.1);
}

.detail-image-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(90, 144, 48, 0.08) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.detail-image-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-16px) scale(1.03);
}

.detail-image-item:hover::before {
    opacity: 1;
}

.detail-image-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 700ms var(--ease-expo);
    position: relative;
    z-index: 1;
}

.detail-image-item:hover img {
    transform: scale(1.05);
}

.context-image-section {
    margin: var(--space-3xl) 0;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.context-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTACT PAGE - PREMIUM FORMS
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.contact-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 700ms var(--ease-expo);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.contact-item-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-lg);
    box-shadow: 0 8px 24px rgba(61, 107, 31, 0.3);
    transition: all 600ms var(--ease-bounce);
}

.contact-item:hover .contact-item-icon {
    transform: rotate(10deg) scale(1.1);
}

.contact-item-icon svg {
    width: 32px;
    height: 32px;
}

.contact-item-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-family: var(--font-display);
}

.contact-item-content {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-form-container {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: relative;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-display);
    transition: color 400ms var(--ease-smooth);
}

.form-group.focused label {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: 18px 24px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    font-size: 17px;
    font-family: var(--font-body);
    color: var(--text);
    transition: all 500ms var(--ease-smooth);
    background: var(--white);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(90, 144, 48, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
    line-height: 1.7;
}

/* ============================================
   DESPRE PAGE - ULTRA AESTHETIC REDESIGN
   ============================================ */
.why-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-3xl);
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    grid-column: span 2;
}

/* Primul rând: Box 1, 2, 3 */
.why-card:nth-child(1) {
    grid-column: 1 / 3;
}

.why-card:nth-child(2) {
    grid-column: 3 / 5;
}

.why-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* Al doilea rând: Box 4 între 1-2, Box 5 între 2-3 */
.why-card:nth-child(4) {
    grid-column: 2 / 4;
}

.why-card:nth-child(5) {
    grid-column: 4 / 6;
}

.why-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl) var(--space-2xl);
    text-align: center;
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Animated gradient overlay */
.why-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(90, 144, 48, 0.12) 0%,
            rgba(107, 168, 61, 0.08) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
    z-index: 0;
    border-radius: var(--radius-2xl);
}

/* Glow effect on hover */
.why-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(90, 144, 48, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 800ms var(--ease-expo), height 800ms var(--ease-expo);
    border-radius: 50%;
    z-index: 0;
}

.why-card:hover {
    transform: translateY(-24px) scale(1.03);
    box-shadow: 0 24px 64px rgba(61, 107, 31, 0.2);
    border-color: rgba(90, 144, 48, 0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover::after {
    width: 400px;
    height: 400px;
}

/* Modern icon design */
.why-icon {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 50%, var(--green-500) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto var(--space-2xl);
    box-shadow: 0 16px 48px rgba(61, 107, 31, 0.35);
    transition: all 800ms var(--ease-bounce);
    position: relative;
    z-index: 1;
}

.why-icon::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    transition: all 800ms var(--ease-bounce);
}

.why-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: all 800ms var(--ease-bounce);
}

.why-card:hover .why-icon {
    transform: rotate(10deg) scale(1.15);
    box-shadow: 0 24px 64px rgba(61, 107, 31, 0.5);
}

.why-card:hover .why-icon::before {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.why-card:hover .why-icon svg {
    transform: scale(1.1) rotate(-10deg);
}

.why-card h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--gray-950);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    line-height: 1.3;
    font-family: var(--font-display);
}

.why-card p {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    max-width: 320px;
    margin: 0 auto;
    font-weight: 500;
}


/* ============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ============================================ */
@media (max-width: 1024px) {
    .hero-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image-grid {
        grid-template-columns: 1fr;
    }

    .detail-images-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .detail-images-grid .detail-image-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .detail-images-grid .detail-image-item:nth-child(2),
    .detail-images-grid .detail-image-item:nth-child(3),
    .detail-images-grid .detail-image-item:nth-child(4),
    .detail-images-grid .detail-image-item:nth-child(5) {
        grid-column: span 1;
        grid-row: auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .header-content {
        flex-wrap: wrap;
        gap: var(--space-sm);
        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 50%;
        background: var(--gradient-primary);
        color: var(--white);
        box-shadow: var(--shadow-sm);
        cursor: pointer;
        margin-left: auto;
    }

    .nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: transform 250ms ease, opacity 250ms ease;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding-top: var(--space-sm);
    }

    .nav.is-open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 15px;
    }

    .nav-link::before,
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --space-5xl: 96px;
        --space-4xl: 80px;
        --space-3xl: 64px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .header {
        backdrop-filter: blur(18px);
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: calc(var(--space-4xl) + 24px) 0 var(--space-3xl);
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 54px);
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-pillars {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .domains-grid {
        grid-template-columns: 1fr;
    }

    .products-preview {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .detail-images-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .detail-images-grid .detail-image-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .detail-images-grid .detail-image-item:nth-child(2),
    .detail-images-grid .detail-image-item:nth-child(3),
    .detail-images-grid .detail-image-item:nth-child(4),
    .detail-images-grid .detail-image-item:nth-child(5) {
        grid-column: span 1;
        grid-row: auto;
    }

    .partners-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .products-subnav {
        gap: var(--space-sm);
        padding: var(--space-md);
    }

    .subnav-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .why-cards,
    .services-grid,
    .partners-logos,
    .integration-features,
    .hato-benefits-grid,
    .advantages-grid-auto {
        grid-template-columns: 1fr;
    }

    .product-features,
    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: var(--space-4xl) 0;
    }

    .section-padding-small {
        padding: var(--space-3xl) 0;
    }

    .section-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: var(--space-md);
    }

    .section-subtitle,
    .page-subtitle,
    .section-desc,
    .integration-desc {
        font-size: 17px;
    }

    .page-header {
        padding: 120px 0 56px;
    }

    .page-title {
        font-size: clamp(30px, 8vw, 42px);
    }

    .product-table-wrapper {
        overflow-x: auto;
    }

    .product-table {
        min-width: 620px;
    }

    .btn,
    .cta .btn,
    .contact-form button {
        width: 100%;
        justify-content: center;
        display: inline-flex;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-info,
    .contact-form-container,
    .domain-card,
    .product-preview-card,
    .why-card,
    .service-box,
    .hato-product-card,
    .advantage-card,
    .partner-box,
    .integration-feature {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }

    .logo-subtext {
        font-size: 12px;
    }

    .logo-tagline {
        font-size: 8px;
    }

    .hero-title {
        font-size: clamp(28px, 9vw, 36px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image-caption p,
    .contact-item-content p,
    .partner-desc,
    .footer-tagline,
    .footer-contact li,
    .footer-schedule {
        font-size: 15px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-intro {
    font-size: clamp(17px, 1.8vw, 20px);
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
    text-align: center;
}

/* Technical Diagrams */
.technical-diagram {
    max-width: 1000px;
    margin: 0 auto;
}

.technical-diagram img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    background: var(--white);
    padding: var(--space-xl);
}

.diagram-image {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin: var(--space-3xl) 0;
}

/* Panel Gallery */
.panel-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin: var(--space-3xl) 0;
}

.panel-gallery-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 700ms var(--ease-expo);
}

.panel-gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.panel-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 700ms var(--ease-expo);
}

.panel-gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================
   END OF ULTRA MODERN REDESIGN
   ============================================ */

/* ============================================
   AUTOMATIZARE PAGE - SPECTACULAR
   ============================================ */
.auto-intro {
    text-align: center;
}

.intro-text {
    font-size: clamp(19px, 2.2vw, 26px);
    color: var(--text-muted);
    max-width: 960px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
    font-weight: 400;
}

.partner-logos-section {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.partner-logo-large {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--primary);
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-2xl) var(--space-3xl);
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.partner-logo-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(90, 144, 48, 0.08) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.partner-logo-large:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.partner-logo-large:hover::before {
    opacity: 1;
}

.partner-by {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* HOTRACO DIAGRAM - SPECTACULAR GRID */
.hotraco-diagram {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
}

.diagram-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
}

.control-areas {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--space-xl);
}

.control-item {
    grid-column: span 2;
}

/* Primul rând: Box 1, 2, 3, 4 */
.control-item:nth-child(1) {
    grid-column: 1 / 3;
}

.control-item:nth-child(2) {
    grid-column: 3 / 5;
}

.control-item:nth-child(3) {
    grid-column: 5 / 7;
}

.control-item:nth-child(4) {
    grid-column: 7 / 9;
}

/* Al doilea rând: Box 5 centrat între 1-2, Box 6 centrat între 3-4 */
.control-item:nth-child(5) {
    grid-column: 2 / 4;
}

.control-item:nth-child(6) {
    grid-column: 6 / 8;
}

.control-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.control-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,
            rgba(90, 144, 48, 0.1) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.control-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.control-item:hover::before {
    opacity: 1;
}

.control-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(61, 107, 31, 0.3);
    transition: all 700ms var(--ease-bounce);
}

.control-icon svg {
    width: 36px;
    height: 36px;
}

.control-item:hover .control-icon {
    transform: rotate(-15deg) scale(1.2);
    box-shadow: 0 16px 40px rgba(61, 107, 31, 0.5);
}

.control-item span {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-display);
}

/* HOTRACO ADVANTAGES - DRAMATIC CARDS */
.hotraco-advantages {
    text-align: center;
}

.hotraco-advantages h3 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
}

.advantages-grid-auto {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--space-xl);
}

.advantage-card {
    grid-column: span 2;
}

/* Primul rând: Box 1, 2, 3, 4 */
.advantage-card:nth-child(1) {
    grid-column: 1 / 3;
}

.advantage-card:nth-child(2) {
    grid-column: 3 / 5;
}

.advantage-card:nth-child(3) {
    grid-column: 5 / 7;
}

.advantage-card:nth-child(4) {
    grid-column: 7 / 9;
}

/* Al doilea rând: Box 5 centrat între Box 2 și Box 3 */
.advantage-card:nth-child(5) {
    grid-column: 4 / 6;
}

.advantage-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 700ms var(--ease-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(90, 144, 48, 0.08) 0%, transparent 100%);
    transition: height 700ms var(--ease-expo);
}

.advantage-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.advantage-card:hover::before {
    height: 100%;
}

.advantage-card svg {
    width: 64px;
    height: 64px;
    color: var(--primary);
    margin: 0 auto var(--space-lg);
    transition: all 600ms var(--ease-bounce);
}

.advantage-card:hover svg {
    transform: scale(1.2) rotate(10deg);
    color: var(--green-600);
}

.advantage-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
}

.advantage-card p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* HATO SECTION - ULTRA MODERN */
.hato-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.hato-product-card {
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    text-align: center;
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.hato-product-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, rgba(107, 168, 61, 0.1) 0%, transparent 100%);
    transition: height 700ms var(--ease-expo);
}

.hato-product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400), var(--green-300));
    transition: width 700ms var(--ease-expo);
    box-shadow: 0 0 20px rgba(90, 144, 48, 0.6);
}

.hato-product-card:hover {
    transform: translateY(-20px) rotate(-1deg);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.hato-product-card:hover::before {
    height: 100%;
}

.hato-product-card:hover::after {
    width: 100%;
}

.hato-product-name {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.hato-product-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* HATO BENEFITS - GRID SPECTACULAR */
.hato-benefits {
    text-align: center;
}

.hato-benefits h3 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
}

.hato-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.hato-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 600ms var(--ease-expo);
}

.hato-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.hato-benefit-item svg {
    width: 56px;
    height: 56px;
    color: var(--primary);
    transition: all 600ms var(--ease-bounce);
}

.hato-benefit-item:hover svg {
    transform: scale(1.3) rotate(-10deg);
}

.hato-benefit-item span {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-display);
}

/* ============================================
   DESPRE PAGE - SPECTACULAR WHY CARDS
   ============================================ */
.about-intro {
    text-align: center;
    max-width: 960px;
    margin: 0 auto var(--space-4xl);
}

.about-intro p {
    font-size: clamp(19px, 2.2vw, 26px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.mission-statement {
    text-align: center;
    max-width: 880px;
    margin: 0 auto var(--space-4xl);
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
}

.mission-statement h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--primary);
}

.mission-statement p {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   CONTACT PAGE - PREMIUM EXPERIENCE
   ============================================ */
.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-4xl);
}

.contact-intro p {
    font-size: clamp(19px, 2.2vw, 26px);
    color: var(--text-muted);
    line-height: 1.7;
}

.map-container {
    margin-bottom: var(--space-3xl);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.contact-item-content a {
    color: var(--primary);
    font-weight: 600;
    transition: all 400ms var(--ease-smooth);
    position: relative;
    display: inline-block;
}

.contact-item-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 500ms var(--ease-expo);
}

.contact-item-content a:hover {
    transform: translateX(4px);
}

.contact-item-content a:hover::after {
    width: 100%;
}

/* ============================================
   MOBILE OPTIMIZATIONS FOR NEW PAGES
   ============================================ */
@media (max-width: 768px) {
    .partner-logos-section {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .partner-logo-large {
        font-size: clamp(28px, 8vw, 48px);
        padding: var(--space-xl);
    }

    .control-areas {
        grid-template-columns: 1fr;
    }

    .advantages-grid-auto {
        grid-template-columns: 1fr;
    }

    .hato-products {
        grid-template-columns: 1fr;
    }

    .hato-benefits-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 350px;
    }
}

/* ============================================
   MISSING CLASSES - COMPLETE STYLING
   ============================================ */

/* About Lead - Large intro text */
.about-lead {
    font-size: clamp(22px, 2.8vw, 32px);
    color: var(--gray-900);
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Why Us Section */
.why-us {
    position: relative;
}

/* Hotraco Section */
.hotraco-section {
    position: relative;
}

/* Hato Section */
.hato-section {
    position: relative;
}

/* Auto Intro Section */
.auto-intro {
    position: relative;
}

/* Section Desc - Better visibility */
.section-desc {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--gray-700);
    text-align: center;
    max-width: 820px;
    margin: 0 auto var(--space-4xl);
    line-height: 1.7;
    font-weight: 500;
}

/* Strong text on light backgrounds */
.bg-light .section-desc {
    color: var(--gray-800);
}

/* ============================================
   ADDITIONAL SPECTACULAR EFFECTS
   ============================================ */

/* Animated background for sections */
.bg-light {
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center,
            rgba(90, 144, 48, 0.03) 0%,
            transparent 70%);
    pointer-events: none;
}

/* Enhance Why Cards with more dramatic effects */
.why-cards .why-card:nth-child(1) {
    animation: fadeInUp 1s var(--ease-expo) 0.2s both;
}

.why-cards .why-card:nth-child(2) {
    animation: fadeInUp 1s var(--ease-expo) 0.4s both;
}

.why-cards .why-card:nth-child(3) {
    animation: fadeInUp 1s var(--ease-expo) 0.6s both;
}

.why-cards .why-card:nth-child(4) {
    animation: fadeInUp 1s var(--ease-expo) 0.8s both;
}

.why-cards .why-card:nth-child(5) {
    animation: fadeInUp 1s var(--ease-expo) 1s both;
}

/* Enhanced control items animation */
.control-areas .control-item:nth-child(1) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.2s both;
}

.control-areas .control-item:nth-child(2) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.3s both;
}

.control-areas .control-item:nth-child(3) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.4s both;
}

.control-areas .control-item:nth-child(4) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.5s both;
}

.control-areas .control-item:nth-child(5) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.6s both;
}

.control-areas .control-item:nth-child(6) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.7s both;
}

/* Enhanced advantage cards animation */
.advantages-grid-auto .advantage-card:nth-child(1) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.2s both;
}

.advantages-grid-auto .advantage-card:nth-child(2) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.35s both;
}

.advantages-grid-auto .advantage-card:nth-child(3) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.5s both;
}

.advantages-grid-auto .advantage-card:nth-child(4) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.65s both;
}

.advantages-grid-auto .advantage-card:nth-child(5) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.8s both;
}

/* Enhanced Hato products animation */
.hato-products .hato-product-card:nth-child(1) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.2s both;
}

.hato-products .hato-product-card:nth-child(2) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.3s both;
}

.hato-products .hato-product-card:nth-child(3) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.4s both;
}

.hato-products .hato-product-card:nth-child(4) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.5s both;
}

.hato-products .hato-product-card:nth-child(5) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.6s both;
}

.hato-products .hato-product-card:nth-child(6) {
    animation: fadeInUp 0.8s var(--ease-expo) 0.7s both;
}

/* Partner logos animation */
.partner-logos-section .partner-logo-large:nth-child(1) {
    animation: fadeInUp 1s var(--ease-expo) 0.3s both;
}

.partner-logos-section .partner-logo-large:nth-child(2) {
    animation: fadeInUp 1s var(--ease-expo) 0.5s both;
}

/* ============================================
   SERVICES OVERVIEW - SPECTACULAR DESIGN
   ============================================ */
.services-overview {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-2xl);
    max-width: 1300px;
    margin: 0 auto;
}

.service-box {
    grid-column: span 2;
}

/* Primul rând: Box 1, 2, 3 */
.service-box:nth-child(1) {
    grid-column: 1 / 3;
}

.service-box:nth-child(2) {
    grid-column: 3 / 5;
}

.service-box:nth-child(3) {
    grid-column: 5 / 7;
}

/* Al doilea rând: Box 4 între 1-2, Box 5 între 2-3 */
.service-box:nth-child(4) {
    grid-column: 2 / 4;
}

.service-box:nth-child(5) {
    grid-column: 4 / 6;
}

.service-box {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Animated border on hover */
.service-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--green-700), var(--green-400), var(--green-700));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

/* Glow effect */
.service-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(90, 144, 48, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 800ms var(--ease-expo), height 800ms var(--ease-expo);
    border-radius: 50%;
}

.service-box:hover {
    transform: translateY(-20px) scale(1.04);
    box-shadow: 0 24px 64px rgba(61, 107, 31, 0.18);
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover::after {
    width: 400px;
    height: 400px;
}

/* Beautiful icon design */
.service-icon {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg,
            rgba(90, 144, 48, 0.1) 0%,
            rgba(107, 168, 61, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin: 0 auto var(--space-lg);
    transition: all 800ms var(--ease-bounce);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(90, 144, 48, 0.15);
}

.service-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 2;
    transition: all 800ms var(--ease-bounce);
}

.service-box:hover .service-icon {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    color: var(--white);
    transform: rotate(-10deg) scale(1.2);
    box-shadow: 0 16px 40px rgba(61, 107, 31, 0.4);
    border-color: transparent;
}

.service-box:hover .service-icon svg {
    transform: scale(1.15) rotate(10deg);
}

.service-box h3 {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--gray-950);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.service-box p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.services-grid .service-box:nth-child(1) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.2s both;
}

.services-grid .service-box:nth-child(2) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.35s both;
}

.services-grid .service-box:nth-child(3) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.5s both;
}

.services-grid .service-box:nth-child(4) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.65s both;
}

.services-grid .service-box:nth-child(5) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.8s both;
}

/* ============================================
   INTEGRATION SECTION - ULTRA MODERN DESIGN
   ============================================ */
.integration-section {
    position: relative;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.integration-desc {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
    line-height: 1.7;
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
    max-width: 1300px;
    margin: 0 auto;
}

.integration-feature {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Gradient border effect */
.integration-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--green-700), var(--green-400));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

/* Radial glow */
.integration-feature::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 80% 20%,
            rgba(90, 144, 48, 0.08) 0%,
            transparent 60%);
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

.integration-feature:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 24px 64px rgba(61, 107, 31, 0.15);
}

.integration-feature:hover::before {
    opacity: 1;
}

.integration-feature:hover::after {
    opacity: 1;
}

/* Number badge - spectacular design */
.integration-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--green-700), var(--green-600), var(--green-500));
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: var(--space-lg);
    box-shadow: 0 12px 32px rgba(61, 107, 31, 0.3);
    transition: all 800ms var(--ease-bounce);
    position: relative;
    z-index: 1;
}

.integration-number::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    transition: all 800ms var(--ease-bounce);
}

.integration-feature:hover .integration-number {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 20px 48px rgba(61, 107, 31, 0.5);
}

.integration-feature:hover .integration-number::before {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
}

.integration-feature h4 {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.integration-feature p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Staggered animation */
.integration-features .integration-feature:nth-child(1) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.2s both;
}

.integration-features .integration-feature:nth-child(2) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.35s both;
}

.integration-features .integration-feature:nth-child(3) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.5s both;
}

.integration-features .integration-feature:nth-child(4) {
    animation: fadeInUp 0.9s var(--ease-expo) 0.65s both;
}

/* ============================================
   PARTNERS FULL SECTION - PREMIUM DESIGN
   ============================================ */
.partners-full {
    position: relative;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.partner-box {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl);
    text-align: center;
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Animated background */
.partner-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(90, 144, 48, 0.06) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

/* Border glow effect */
.partner-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg,
            var(--green-700) 0%,
            var(--green-400) 50%,
            var(--green-700) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

.partner-box:hover {
    transform: translateY(-24px) scale(1.04);
    box-shadow: 0 32px 80px rgba(61, 107, 31, 0.2);
}

.partner-box:hover::before {
    opacity: 1;
}

.partner-box:hover::after {
    opacity: 1;
}

.partner-name {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    letter-spacing: -0.04em;
    margin-bottom: var(--space-sm);
    transition: all 600ms var(--ease-bounce);
    position: relative;
    z-index: 1;
}

.partner-box:hover .partner-name {
    transform: scale(1.05);
    text-shadow: 0 4px 16px rgba(61, 107, 31, 0.2);
}

.partner-tagline {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.partner-description {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Staggered animation for partner boxes */
.partners-logos .partner-box:nth-child(1) {
    animation: fadeInUp 1s var(--ease-expo) 0.3s both;
}

.partners-logos .partner-box:nth-child(2) {
    animation: fadeInUp 1s var(--ease-expo) 0.5s both;
}

/* Staggered animation for partner boxes */
.partners-logos .partner-box:nth-child(1) {
    animation: fadeInUp 1s var(--ease-expo) 0.3s both;
}

.partners-logos .partner-box:nth-child(2) {
    animation: fadeInUp 1s var(--ease-expo) 0.5s both;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .integration-features {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .partners-logos {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .partner-name {
        font-size: clamp(32px, 10vw, 48px);
    }
}

/* ============================================
   PRODUSE PAGE - SPECTACULAR REDESIGN
   ============================================ */

/* ADVANTAGES SECTION - Modern Grid */
.advantages-section {
    margin: var(--space-4xl) 0;
}

.advantages-section h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: var(--space-3xl);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.advantage-item:nth-child(n+5) {
    grid-row: 2;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    transition: all 500ms var(--ease-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay on hover */
.advantage-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.08), rgba(56, 138, 35, 0.05));
    opacity: 0;
    transition: opacity 500ms var(--ease-smooth);
}

/* Left accent bar */
.advantage-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 500ms var(--ease-expo);
}

.advantage-item:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(76, 175, 53, 0.3);
}

.advantage-item:hover::before {
    opacity: 1;
}

.advantage-item:hover::after {
    height: 100%;
}

.advantage-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    stroke-width: 2;
    flex-shrink: 0;
    transition: all 500ms var(--ease-spring);
    position: relative;
    z-index: 1;
}

.advantage-item:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 12px rgba(76, 175, 53, 0.4));
}

.advantage-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 400ms var(--ease-smooth);
}

.advantage-item:hover span {
    color: var(--text);
}

/* Product Benefits Badges */
.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: var(--space-2xl) auto 0 auto;
}

.benefit-badge {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-colored);
    transition: all 400ms var(--ease-expo);
    cursor: default;
}

.benefit-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-colored-strong);
}

/* SYSTEMS GRID - Ultra Premium Design */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-3xl);
    margin-bottom: var(--space-4xl);
}

.system-box {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.system-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 800ms var(--ease-expo);
}

.system-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(90, 144, 48, 0.06) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 800ms var(--ease-smooth);
}

.system-box:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(90, 144, 48, 0.3);
}

.system-box:hover::before {
    transform: scaleX(1);
}

.system-box:hover::after {
    opacity: 1;
}

.system-box h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--primary);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.system-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.system-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
    padding-left: var(--space-md);
    transition: all 600ms var(--ease-smooth);
}

.system-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 600ms var(--ease-expo);
}

.system-box:hover .system-feature::before {
    height: 100%;
}

.system-feature svg {
    width: 24px;
    height: 24px;
    color: var(--green-600);
    flex-shrink: 0;
    transition: all 600ms var(--ease-bounce);
}

.system-box:hover .system-feature svg {
    transform: scale(1.2);
    color: var(--primary);
}

.system-feature span {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* APPLICATIONS SECTION - Modern Badges */
.applications-section {
    margin: var(--space-4xl) 0;
    text-align: center;
}

.applications-section h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.applications-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.application-item {
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-full);
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--text);
    transition: all 700ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.application-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.application-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-full);
    padding: 2px;
    background: linear-gradient(135deg, var(--green-700), var(--green-400));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.application-item:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 32px rgba(61, 107, 31, 0.3);
    color: var(--white);
}

.application-item:hover::before {
    opacity: 1;
}

.application-item:hover::after {
    opacity: 1;
}

/* Make text visible on hover */
.application-item span,
.application-item {
    position: relative;
    z-index: 1;
}

/* SILO FEATURES GRID - Spectacular Design */
.silo-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
    max-width: 100%;
}

.silo-feature-box {
    grid-column: span 1;
}

/* Primele 3 boxe ocupă coloanele 1, 2, 3 în rândul 1 */
.silo-feature-box:nth-child(1) {
    grid-column: 1;
}

.silo-feature-box:nth-child(2) {
    grid-column: 2;
}

.silo-feature-box:nth-child(3) {
    grid-column: 3;
}

/* Ultimele 2 boxe în rândul 2, centrate */
.silo-feature-box:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
    transform: translateX(200px);
}

.silo-feature-box:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
    transform: translateX(200px);
}

.silo-feature-box {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    transition: all 800ms var(--ease-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.silo-feature-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, rgba(90, 144, 48, 0.08) 0%, transparent 100%);
    transition: height 800ms var(--ease-expo);
}

.silo-feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-700), var(--green-400));
    transition: width 800ms var(--ease-expo);
    box-shadow: 0 0 16px rgba(90, 144, 48, 0.6);
}

.silo-feature-box:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(90, 144, 48, 0.3);
}

.silo-feature-box:nth-child(4):hover,
.silo-feature-box:nth-child(5):hover {
    transform: translateX(200px) translateY(-20px) scale(1.03);
}

.silo-feature-box:hover::before {
    height: 100%;
}

.silo-feature-box:hover::after {
    width: 100%;
}

.silo-feature-box h4 {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.silo-feature-box p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* SILO SPECS - Modern Table */
.silo-specs {
    margin: var(--space-4xl) 0;
}

.silo-specs h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    text-align: center;
}

.specs-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-3xl);
}

.specs-table {
    width: 100%;
    background: var(--white);
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.specs-table tr {
    transition: background 400ms var(--ease-smooth);
}

.specs-table tr:hover {
    background: linear-gradient(90deg,
            rgba(90, 144, 48, 0.04) 0%,
            rgba(90, 144, 48, 0.02) 100%);
}

.spec-label {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    padding: 20px 28px;
    font-family: var(--font-display);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 40%;
}

.spec-value {
    font-size: 16px;
    color: var(--text-muted);
    padding: 20px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-table tr:last-child .spec-label,
.specs-table tr:last-child .spec-value {
    border-bottom: none;
}

/* SILO OPTIONS */
.silo-options {
    margin: var(--space-4xl) 0;
}

.silo-options h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: var(--space-3xl);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    text-align: center;
}

.options-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.options-list li:nth-child(n+4) {
    grid-row: 2;
}

.options-list li {
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-colored);
    transition: all 500ms var(--ease-expo);
    cursor: default;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.options-list li::before {
    display: none !important;
}

.options-list li::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 500ms var(--ease-smooth);
}

.options-list li:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-colored-strong);
}

.options-list li:hover::after {
    opacity: 1;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .options-list {
        grid-template-columns: 1fr;
    }

    .systems-grid {
        grid-template-columns: 1fr;
    }

    .applications-list {
        gap: var(--space-md);
    }

    .application-item {
        padding: 14px 24px;
        font-size: 15px;
    }

    .silo-features-grid {
        grid-template-columns: 1fr;
    }

    .options-list {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   MOTION DESIGN - ULTRA MODERN ENHANCEMENTS
   ============================================ */

/* CUSTOM CURSOR */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        height 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
    mix-blend-mode: difference;
    opacity: 0.7;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    box-shadow: 0 0 12px rgba(90, 144, 48, 0.8);
}

.custom-cursor.cursor-hover {
    width: 64px;
    height: 64px;
    border-color: var(--green-500);
    background: rgba(90, 144, 48, 0.1);
}

.custom-cursor-dot.cursor-hover {
    width: 12px;
    height: 12px;
    background: var(--green-500);
}

/* MORPHING BACKGROUND SHAPES */
.morph-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(90, 144, 48, 0.15) 0%,
            rgba(61, 107, 31, 0.05) 50%,
            transparent 100%);
    filter: blur(40px);
    animation: morphShape 15s ease-in-out infinite;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 50% 50% 50% 50%;
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        border-radius: 60% 40% 60% 40%;
        transform: translate(20px, -30px) rotate(90deg);
    }

    50% {
        border-radius: 40% 60% 40% 60%;
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        border-radius: 55% 45% 55% 45%;
        transform: translate(30px, 10px) rotate(270deg);
    }
}

/* TEXT REVEAL ANIMATION */
.section-title.revealed .letter-reveal {
    animation: letterReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateX(90deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.letter-reveal {
    display: inline-block;
    opacity: 0;
}

/* FLOATING ANIMATION FOR ICONS */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(2deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

/* HERO IMAGE PARALLAX SCALE */
.hero-main-image {
    transition: transform 100ms linear;
    will-change: transform;
}

/* ENHANCED STAGGER ANIMATIONS */
.fade-in-element {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
    filter: blur(8px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1),
        transform 1.2s cubic-bezier(0.23, 1, 0.32, 1),
        filter 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: var(--stagger-delay, 0ms);
}

.fade-in-element.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* HEADER HIDE/SHOW ON SCROLL */
.header {
    transition: all 400ms var(--ease-smooth),
        transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* 3D CARD PERSPECTIVE */
.domain-card,
.product-preview-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* GLOWING EFFECTS ON HOVER */
.pillar-item:hover {
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.16),
        0 0 60px rgba(90, 144, 48, 0.3),
        inset 0 0 40px rgba(90, 144, 48, 0.1);
}

.domain-card:hover {
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.16),
        0 0 50px rgba(90, 144, 48, 0.25);
}

/* ANIMATED GRADIENT BORDERS */
@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.partner-brand::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg,
            var(--green-700),
            var(--green-500),
            var(--green-300),
            var(--green-500),
            var(--green-700));
    background-size: 200% 200%;
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
    animation: gradientBorder 3s ease infinite;
}

.partner-brand:hover::after {
    opacity: 0.4;
}

/* SCROLL PARALLAX WILL-CHANGE */
.hero,
.hero-main-image,
.pillar-item {
    will-change: transform;
}

/* RIPPLE EFFECT ON BUTTONS */
@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.btn-primary::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

.btn-primary:active::after,
.btn-secondary:active::after {
    animation: ripple 0.6s ease-out;
}

/* SMOOTH SECTION TRANSITIONS */
section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-expo),
        transform 0.8s var(--ease-expo);
}

/* HERO TITLE GRADIENT ANIMATION */
.hero-title.animate-in {
    animation: heroTitleIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes heroTitleIn {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-subtitle.animate-in {
    animation: heroSubtitleIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes heroSubtitleIn {
    0% {
        opacity: 0;
        transform: translateY(60px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* IMAGE ZOOM ON SCROLL */
.hero-visual {
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transition: all 800ms var(--ease-expo);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 107, 21, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-colored-strong);
}

.hero-image-wrapper:hover::before {
    opacity: 1;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 800ms var(--ease-expo);
}

.hero-image-wrapper:hover .hero-main-image {
    transform: scale(1.06);
}

.hero-image-caption {
    margin-top: var(--space-lg);
    text-align: center;
}

.hero-image-caption p {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.7;
}

/* PARALLAX SECTIONS OPTIMIZATION */
@media (prefers-reduced-motion: no-preference) {

    .hero,
    .hero-main-image,
    .pillar-item {
        transition: transform 100ms linear;
    }
}

/* ACCESSIBILITY - RESPECT REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}

/* PERFORMANCE OPTIMIZATIONS */
.hero,
.domain-card,
.product-preview-card,
.pillar-item,
.partner-brand {
    will-change: transform;
}

/* GPU ACCELERATION */
.btn,
.nav-link,
.domain-icon,
.pillar-icon {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* LOADING STATE SHIMMER */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg,
            var(--gray-100) 0%,
            var(--gray-50) 50%,
            var(--gray-100) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* SCROLL SNAP FOR SMOOTH SECTIONS */
@media (min-width: 1024px) {
    main {
        scroll-snap-type: y proximity;
    }

    section {
        scroll-snap-align: start;
    }
}

/* TOUCH DEVICE OPTIMIZATIONS */
@media (hover: none) and (pointer: coarse) {

    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }

    .domain-card:active,
    .product-preview-card:active,
    .pillar-item:active {
        transform: scale(0.98);
    }
}

/* RESPONSIVE MOTION DESIGN */
@media (max-width: 768px) {
    .morph-shape {
        width: 200px;
        height: 200px;
    }

    .domain-card:hover,
    .product-preview-card:hover {
        transform: translateY(-12px) scale(1.01);
    }

    .pillar-item:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* ============================================
   BUTTON RIPPLE EFFECT
   ============================================ */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* ============================================
   MORPHING SHAPES
   ============================================ */
.morph-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 53, 0.08) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 15s ease-in-out infinite;
    filter: blur(40px);
    pointer-events: none;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(5%, 10%) rotate(90deg);
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(-5%, 5%) rotate(180deg);
    }

    75% {
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
        transform: translate(-10%, -5%) rotate(270deg);
    }
}

/* ============================================
   LETTER REVEAL ANIMATION
   ============================================ */
.letter-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(-90deg);
}

.section-title.revealed .letter-reveal {
    animation: letterReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes letterReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* ============================================
   STAGGERED FADE IN ANIMATIONS
   ============================================ */
.fade-in-element {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition:
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--stagger-delay, 0ms);
}

.fade-in-element.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ============================================
   GLASSMORPHISM UTILITIES
   ============================================ */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

.glass-panel-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   3D TRANSFORM UTILITIES
   ============================================ */
.preserve-3d {
    transform-style: preserve-3d;
    perspective: 1200px;
}

.transform-gpu {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

/* ============================================
   GRADIENT TEXT UTILITIES
   ============================================ */
.gradient-text-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animate {
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}

/* ============================================
   GLOW EFFECTS
   ============================================ */
.glow-text {
    text-shadow: 0 0 30px rgba(76, 175, 53, 0.4);
}

.glow-box {
    box-shadow:
        0 0 30px rgba(76, 175, 53, 0.2),
        0 0 60px rgba(76, 175, 53, 0.1),
        var(--shadow-xl);
}

/* ============================================
   MICRO ANIMATIONS
   ============================================ */
@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate-gentle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes scale-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-float {
    animation: float-gentle 3s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate-gentle 20s linear infinite;
}

.animate-pulse {
    animation: scale-pulse 2s ease-in-out infinite;
}

/* ============================================
   SMOOTH PAGE TRANSITIONS
   ============================================ */
.page-transition {
    animation: fadeInPage 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {

    .pillar-item,
    .domain-card,
    .product-preview-card {
        transform: none !important;
    }

    h1 {
        font-size: clamp(36px, 10vw, 56px);
    }

    h2 {
        font-size: clamp(28px, 8vw, 42px);
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: var(--space-3xl) 0;
    }

    .pillar-item:hover,
    .domain-card:hover,
    .product-preview-card:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hardware acceleration for animations */
.domain-card,
.product-preview-card,
.pillar-item,
.btn,
.nav-link {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--gradient-primary);
transform: scaleX(0);
transform-origin: left;
transition: transform 700ms var(--ease-expo);
}

.partner-brand:hover {
    transform: translateY(-20px) scale(1.04);
    box-shadow: var(--shadow-colored-strong);
    border-color: rgba(76, 175, 53, 0.3);
}

.partner-brand:hover::before {
    opacity: 1;
}

.partner-brand:hover::after {
    transform: scaleX(1);
}

.partner-logo {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    transition: all 600ms var(--ease-expo);
}

.partner-brand:hover .partner-logo {
    transform: scale(1.1);
    text-shadow: 0 0 40px rgba(76, 175, 53, 0.3);
}

.partner-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   CTA SECTION - ULTRA DRAMATIC
   ============================================ */
.cta {
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(76, 175, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(56, 138, 35, 0.1) 0%, transparent 50%);
    animation: ctaGlow 20s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.cta-content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: -0.045em;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-3xl);
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER - PREMIUM GRADIENT
   ============================================ */
.footer {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(42, 107, 21, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--gray-950), var(--gray-900));
    color: var(--white);
    padding: var(--space-5xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 30px rgba(76, 175, 53, 0.6);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo .logo-text {
    font-size: 30px;
    background: linear-gradient(135deg, var(--white), var(--gray-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-subtext {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-md);
    letter-spacing: 0.03em;
    line-height: 1.6;
    max-width: 400px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--white);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 400ms var(--ease-smooth);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 600ms var(--ease-expo);
    box-shadow: 0 0 10px rgba(76, 175, 53, 0.4);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(10px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.footer-schedule {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

transform: scale(1.06);
}

.hero-image-caption {
    margin-top: var(--space-lg);
    text-align: center;
}

.hero-image-caption p {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE & MOBILE
   ============================================ */
@media (max-width: 1024px) {
    .hero-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .pillar-item,
    .domain-card,
    .product-preview-card {
        transform: none !important;
    }

    h1 {
        font-size: clamp(36px, 10vw, 56px);
    }

    h2 {
        font-size: clamp(28px, 8vw, 42px);
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: var(--space-3xl) 0;
    }

    .hero-pillars {
        grid-template-columns: 1fr;
    }

    .domains-grid {
        grid-template-columns: 1fr;
    }

    .pillar-item:hover,
    .domain-card:hover,
    .product-preview-card:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }

    .nav {
        display: none;
        /* Simplified for mobile */
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hardware acceleration for animations */
.domain-card,
.product-preview-card,
.pillar-item,
.btn,
.nav-link,
.domain-icon {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}


/* ============================================
   ADVANTAGES GRID - MODERN & CLEAN
   ============================================ */
.advantages-section {
    margin: var(--space-3xl) 0;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.advantages-section h3 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

/* Responsive adjustments for advantages */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-item:hover {
        transform: translateY(-2px) translateX(2px);
    }
}


/* ============================================
   SYSTEM FEATURES - CLEAN LIST STYLE
   ============================================ */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-2xl);
    margin: var(--space-3xl) 0;
}

.system-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 600ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.system-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 600ms var(--ease-expo);
}

.system-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(76, 175, 53, 0.3);
}

.system-box:hover::before {
    transform: scaleX(1);
}

.system-box h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--space-sm);
}

.system-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.system-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.system-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    transition: all 400ms var(--ease-smooth);
    position: relative;
    padding-left: var(--space-sm);
}

/* Subtle hover background */
.system-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: height 400ms var(--ease-expo);
}

.system-feature:hover {
    transform: translateX(6px);
    padding-left: var(--space-md);
}

.system-feature:hover::before {
    height: 100%;
}

.system-feature svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    color: var(--primary);
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 500ms var(--ease-spring);
}

.system-feature:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 2px 8px rgba(76, 175, 53, 0.4));
}

.system-feature span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 400ms var(--ease-smooth);
}

.system-feature:hover span {
    color: var(--text);
}

/* Responsive adjustments for system features */
@media (max-width: 1024px) {
    .systems-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .systems-grid {
        grid-template-columns: 1fr;
    }

    .system-box {
        padding: var(--space-lg);
    }

    .system-feature:hover {
        transform: translateX(3px);
    }
}


/* ============================================
   APPLICATIONS SECTION
   ============================================ */
.applications-section {
    margin: var(--space-3xl) 0;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.applications-section h3 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.applications-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.application-item {
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-colored);
    transition: all 500ms var(--ease-expo);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.application-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 500ms var(--ease-smooth);
}

.application-item:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-colored-strong);
}

.application-item:hover::before {
    opacity: 1;
}

/* ============================================
   SILO FEATURES GRID
   ============================================ */
.silo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-3xl) 0;
}

.silo-feature-box {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: all 600ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.silo-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 600ms var(--ease-expo);
}

.silo-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(76, 175, 53, 0.3);
}

.silo-feature-box:hover::before {
    transform: scaleX(1);
}

.silo-feature-box h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.silo-feature-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ============================================
   SILO SPECS & OPTIONS
   ============================================ */
.silo-specs,
.silo-options {
    margin: var(--space-3xl) 0;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.silo-specs h3,
.silo-options h3 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--space-md);
}

.silo-specs h3::after,
.silo-options h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.specs-table-wrapper {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.specs-table tr {
    transition: all 400ms var(--ease-smooth);
}

.specs-table tr:hover {
    background: rgba(76, 175, 53, 0.05);
}

.spec-label,
.spec-value {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.spec-label {
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-display);
    width: 30%;
}

.spec-value {
    color: var(--text-secondary);
}

/* ============================================
   AUTOMATIZARE PAGE - SPECIFIC STYLES
   ============================================ */
.page-header {
    margin-top: 88px;
    padding: var(--space-5xl) 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

@keyframes pageGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-10%, 5%) scale(1.1);
    }
}

.page-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--space-md);
    letter-spacing: -0.04em;
    background: linear-gradient(135deg,
            var(--gray-950) 0%,
            var(--green-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    text-align: center;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.auto-intro,
.about-intro {
    text-align: center;
}

.intro-text,
.about-lead {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
    font-weight: 400;
}

.partner-logos-section {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    margin-top: var(--space-3xl);
}

.partner-logo-large {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.partner-by {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Hotraco Section */
.hotraco-diagram {
    margin: var(--space-4xl) 0;
}

.diagram-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--text);
}

.control-areas {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: var(--space-lg);
}

.control-item {
    grid-column: span 2;
}

.control-item:nth-child(5) {
    grid-column: 3 / 5;
}

.control-item:nth-child(6) {
    grid-column: 5 / 7;
}

.control-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: all 600ms var(--ease-expo);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.control-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.08), rgba(56, 138, 35, 0.05));
    opacity: 0;
    transition: opacity 600ms var(--ease-smooth);
}

.control-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(76, 175, 53, 0.3);
}

.control-item:hover::before {
    opacity: 1;
}

.control-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: 2px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 700ms var(--ease-expo);
    position: relative;
    z-index: 1;
}

.control-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.control-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
    transition: transform 700ms var(--ease-spring);
    position: relative;
    z-index: 1;
}

.control-item:hover .control-icon {
    color: var(--white);
    transform: rotate(10deg) scale(1.15);
    border-color: transparent;
}

.control-item:hover .control-icon::before {
    opacity: 1;
}

.control-item:hover .control-icon svg {
    transform: scale(1.15);
}

.control-item span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-display);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}


/* Advantages Grid Auto (Hotraco) */
.advantages-grid-auto {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.advantage-card {
    grid-column: span 2;
}

.advantage-card:nth-child(1) {
    grid-column: 1 / 3;
}

.advantage-card:nth-child(2) {
    grid-column: 3 / 5;
}

.advantage-card:nth-child(3) {
    grid-column: 5 / 7;
}

.advantage-card:nth-child(4) {
    grid-column: 2 / 4;
}

.advantage-card:nth-child(5) {
    grid-column: 4 / 6;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: all 600ms var(--ease-expo);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, rgba(76, 175, 53, 0.1), transparent);
    transition: height 600ms var(--ease-expo);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(76, 175, 53, 0.3);
}

.advantage-card:hover::before {
    height: 100%;
}

.advantage-card svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    stroke-width: 2;
    transition: all 700ms var(--ease-spring);
    position: relative;
    z-index: 1;
}

.advantage-card:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 12px rgba(76, 175, 53, 0.4));
}

.advantage-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-display);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Hato Products */
.hato-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-3xl) 0;
}

.hato-product-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: all 600ms var(--ease-expo);
    text-align: center;
}

.hato-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.hato-product-name {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: var(--space-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
}

.hato-product-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hato-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.hato-benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    transition: all 500ms var(--ease-expo);
}

.hato-benefit-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(76, 175, 53, 0.3);
}

.hato-benefit-item svg {
    width: 32px;
    height: 32px;
    min-width: 32px;
    color: var(--primary);
    stroke-width: 2;
    flex-shrink: 0;
    transition: all 500ms var(--ease-spring);
}

.hato-benefit-item:hover svg {
    transform: scale(1.2) rotate(10deg);
}

.hato-benefit-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 400ms var(--ease-smooth);
}

.hato-benefit-item:hover span {
    color: var(--text);
}

/* Integration Section */
.integration-desc {
    font-size: clamp(18px, 2.2vw, 24px);
    text-align: center;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
    line-height: 1.7;
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
}

.integration-feature {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: all 600ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.integration-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: width 600ms var(--ease-expo);
}

.integration-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(76, 175, 53, 0.3);
}

.integration-feature:hover::before {
    width: 100%;
}

.integration-number {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.integration-feature h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    color: var(--text);
    font-family: var(--font-display);
}

.integration-feature p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ============================================
   DESPRE NOI PAGE - SPECIFIC STYLES
   ============================================ */
.why-cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: var(--space-lg);
    margin: var(--space-3xl) auto 0 auto;
    max-width: 1400px;
    align-items: stretch;
}

.why-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    transition: all 600ms var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.why-card:nth-child(1) {
    grid-column: 1 / 3;
}

.why-card:nth-child(2) {
    grid-column: 3 / 5;
}

.why-card:nth-child(3) {
    grid-column: 5 / 7;
}

.why-card:nth-child(4) {
    grid-column: 2 / 4;
}

.why-card:nth-child(5) {
    grid-column: 4 / 6;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(76, 175, 53, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 600ms var(--ease-smooth);
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-colored);
    border-color: rgba(76, 175, 53, 0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    transition: all 700ms var(--ease-expo);
    border: 2px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.why-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
}

.why-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
    transition: transform 700ms var(--ease-spring);
    position: relative;
    z-index: 1;
}

.why-card:hover .why-icon {
    color: var(--white);
    transform: rotate(-10deg) scale(1.15);
    border-color: transparent;
}

.why-card:hover .why-icon::before {
    opacity: 1;
}

.why-card:hover .why-icon svg {
    transform: scale(1.15) rotate(10deg);
}

.why-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
}

.why-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: var(--space-lg);
    margin: var(--space-3xl) auto 0 auto;
    max-width: 1400px;
    align-items: stretch;
}

.service-box {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: all 600ms var(--ease-expo);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-box:nth-child(1) {
    grid-column: 1 / 3;
}

.service-box:nth-child(2) {
    grid-column: 3 / 5;
}

.service-box:nth-child(3) {
    grid-column: 5 / 7;
}

.service-box:nth-child(4) {
    grid-column: 2 / 4;
}

.service-box:nth-child(5) {
    grid-column: 4 / 6;
}

.service-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.08), transparent);
    opacity: 0;
    transition: opacity 600ms var(--ease-smooth);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(76, 175, 53, 0.3);
}

.service-box:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 700ms var(--ease-expo);
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
    transition: transform 700ms var(--ease-spring);
}

.service-box:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-colored);
}

.service-box:hover .service-icon svg {
    transform: scale(1.15);
}

.service-box h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
}

.service-box p {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.section-desc {
    font-size: clamp(18px, 2.2vw, 24px);
    text-align: center;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.partner-box {
    padding: var(--space-3xl);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    transition: all 600ms var(--ease-expo);
    text-align: center;
}

.partner-box:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.partner-name {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    margin-bottom: var(--space-xs);
}

.partner-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-lg);
}

.partner-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    .control-areas,
    .advantages-grid-auto,
    .hato-products,
    .integration-features,
    .why-cards,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .silo-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .options-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    .control-areas,
    .advantages-grid-auto,
    .hato-products,
    .hato-benefits-grid,
    .integration-features,
    .why-cards,
    .services-grid,
    .partners-logos {
        grid-template-columns: 1fr;
    }

    .advantages-grid,
    .options-list {
        grid-template-columns: 1fr;
    }

    .silo-features-grid,
    .applications-list,
    .options-list {
        grid-template-columns: 1fr;
    }

    .partner-logos-section {
        flex-direction: column;
        gap: var(--space-2xl);
    }

    .spec-label {
        width: 40%;
    }
}

.advantages-section {
    margin: var(--space-4xl) 0;
}

.advantages-section h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: var(--space-3xl);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    transition: all 500ms var(--ease-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 53, 0.08), rgba(56, 138, 35, 0.05));
    opacity: 0;
    transition: opacity 500ms var(--ease-smooth);
}

.advantage-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 500ms var(--ease-expo);
}

.advantage-item:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(76, 175, 53, 0.3);
}

.advantage-item:hover::before {
    opacity: 1;
}

.advantage-item:hover::after {
    height: 100%;
}

.advantage-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 500ms var(--ease-spring);
    position: relative;
    z-index: 1;
}

.advantage-item:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 12px rgba(76, 175, 53, 0.4));
}

.advantage-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 400ms var(--ease-smooth);
}

.advantage-item:hover span {
    color: var(--text);
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: var(--space-2xl) auto 0 auto;
}

.benefit-badge {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-colored);
    transition: all 400ms var(--ease-expo);
    cursor: default;
}

.benefit-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-colored-strong);
}

/* SILO OPTIONS */
.silo-options {
    margin: var(--space-4xl) 0;
}

.silo-options h3 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: var(--space-3xl);
    color: var(--text);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    text-align: center;
}

.options-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.options-list li:nth-child(n+4) {
    grid-row: 2;
}

.options-list li {
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-colored);
    transition: all 500ms var(--ease-expo);
    cursor: default;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.options-list li::before {
    display: none !important;
}

.options-list li::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 500ms var(--ease-smooth);
}

.options-list li:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-colored-strong);
}

.options-list li:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .options-list {
        grid-template-columns: 1fr;
    }
}