/* ============================================
   EXTERNALIS FORMATION - Premium Design
   Couleurs: Blanc & Vert
   ============================================ */

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

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Couleurs principales - Vert */
    --primary-green: #00A651;
    --primary-green-dark: #008542;
    --primary-green-light: #2ECC71;
    --primary-green-pale: #E8F5E9;
    --primary-green-glow: rgba(0, 166, 81, 0.15);

    /* Couleurs secondaires */
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-gray: #F4F7FA;
    --medium-gray: #E1E8EF;
    --dark-gray: #6B7D8A;
    --text-dark: #1B2A3E;
    --text-medium: #4A5B6E;
    --text-light: #7A8B9C;

    /* Accents */
    --accent-gold: #F5A623;
    --accent-teal: #00BFA5;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.12);
    --shadow-green: 0 10px 40px rgba(0, 166, 81, 0.25);
    --shadow-green-lg: 0 20px 60px rgba(0, 166, 81, 0.3);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

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

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-dark);
}

/* ============================================
   Bicolor Gradient Text Effect
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Header - Premium Ultra Modern
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition-normal);
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Top Bar - Mobile only */
.top-bar {
    background: var(--text-dark);
    padding: 10px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

@media (max-width: 768px) {
    .top-bar {
        display: block;
    }
}

.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-contact::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-green);
    animation: pulse-glow 2s infinite;
    margin-right: 10px;
    vertical-align: middle;
}

.top-bar span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.3px;
}

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

.top-info::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-green);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--primary-green); }
    50% { opacity: 0.8; box-shadow: 0 0 20px var(--primary-green), 0 0 30px var(--primary-green); }
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition-fast);
}

.top-contact:hover {
    color: var(--primary-green);
}

/* Main Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    max-width: 1440px;
    margin: 0 auto;
    height: 80px;
    position: relative;
}

/* Logo - Premium Style */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 36px;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 2px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
}

.logo-text span {
    font-weight: 300;
    color: var(--primary-green);
    margin-left: 4px;
}

/* Logo Image - Header (dark version on white bg) */
.logo-img {
    height: 42px;
    width: auto;
    display: block;
    transition: var(--transition-normal);
}

.logo-img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Logo Image - Footer (white version on dark bg) */
.logo-img-footer {
    height: 38px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    opacity: 0.95;
    transition: var(--transition-normal);
}

.logo-img-footer:hover {
    opacity: 1;
}

/* Nav Menu - Premium */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    padding: 28px 18px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-green);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown Arrow - Elegant */
.has-submenu > a {
    padding-right: 28px;
    position: relative;
}

.has-submenu > a::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-60%) rotate(45deg);
    transition: var(--transition-normal);
    opacity: 0.5;
}

.has-submenu:hover > a::before {
    transform: translateY(-40%) rotate(-135deg);
    opacity: 1;
}

/* Submenu - Ultra Premium */
.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.03);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: var(--white);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.03);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu li a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.submenu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--primary-green-pale), transparent);
    transition: width 0.3s ease;
}

.submenu li a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 24px;
    background: var(--primary-green);
    border-radius: 0 3px 3px 0;
    transition: transform 0.2s ease;
}

.submenu li a:hover {
    color: var(--primary-green);
}

.submenu li a:hover::before {
    width: 100%;
}

.submenu li a:hover::after {
    transform: translateY(-50%) scaleY(1);
}

/* CTA Button in Nav */
.nav-cta {
    margin-left: 16px;
}

.nav-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px !important;
    background: var(--primary-green);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 0.8rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.nav-cta a::after {
    display: none !important;
}

.nav-cta a:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.4);
}

/* Mobile Menu Button - Premium */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    background: transparent;
    border: 2px solid var(--medium-gray);
}

.mobile-menu-btn:hover {
    border-color: var(--primary-green);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu-btn:hover span {
    background: var(--primary-green);
}

/* ============================================
   Hero Section - Premium Glassmorphism
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--white);
    padding: 140px 24px 100px;
    overflow: hidden;
}

.hero.hero-video-layout {
    justify-content: center;
}

/* Hero Background Photo */
.hero-bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    filter: brightness(0.45);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1240px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green-pale) 0%, rgba(0, 166, 81, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-green-glow) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-video-layout .hero-content {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.hero-video-layout .hero-content h1 {
    text-align: left;
    color: var(--white);
}

.hero-video-layout .hero-subtitle {
    color: var(--primary-green-light);
}

.hero-video-layout .hero-description {
    color: rgba(255, 255, 255, 0.85);
}

.hero-video-layout .hero-description {
    margin-left: 0;
    margin-right: 0;
}

.hero-video-layout .hero-buttons {
    justify-content: flex-start;
}

/* Hero Video - Mobile version (hidden on desktop) */
.hero-video-mobile {
    display: none;
}

/* Hero Video */
.hero-video {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-video-wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(0, 166, 81, 0.15);
    background: var(--text-dark);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.hero-video::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: calc(var(--radius-lg) + 8px);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light), var(--primary-green-dark));
    z-index: -1;
    opacity: 0.3;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

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

/* ============================================
   Buttons - Premium Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* ============================================
   Sections - Common Styles
   ============================================ */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 550px;
    margin: 20px auto 0;
}

/* ============================================
   Intro Section - PREMIUM ANIMATED
   ============================================ */
.intro-section-premium {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0d2137 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.intro-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    top: -200px;
    right: -100px;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-green-light), #00d4aa);
    bottom: -150px;
    left: -100px;
    animation: float-shape 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    top: 40%;
    left: 10%;
    animation: float-shape 12s ease-in-out infinite 2s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary-green), transparent);
    top: 20%;
    right: 20%;
    animation: float-shape 18s ease-in-out infinite 1s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: var(--primary-green-light);
    bottom: 30%;
    right: 10%;
    animation: float-shape 10s ease-in-out infinite 3s;
}

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

/* Grid Layout */
.intro-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content Side */
.intro-premium-content {
    color: var(--white);
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 166, 81, 0.2);
    border: 1px solid rgba(0, 166, 81, 0.4);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.intro-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-green-light);
}

.intro-premium-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-lead strong {
    color: var(--primary-green-light);
}

.intro-premium-content > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.intro-premium-content > p strong {
    color: var(--white);
}

/* Features */
.intro-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.intro-feature:hover {
    background: rgba(0, 166, 81, 0.15);
    border-color: rgba(0, 166, 81, 0.3);
    transform: translateX(8px);
}

.intro-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.4);
}

.intro-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

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

.intro-feature-text strong {
    font-size: 1rem;
    color: var(--white);
}

.intro-feature-text span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.intro-premium-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.intro-premium-content .btn-primary svg {
    transition: transform 0.3s ease;
}

.intro-premium-content .btn-primary:hover svg {
    transform: translateX(4px);
}

/* Visual Side - Orbiting Elements */
.intro-premium-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.intro-visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}

/* Central Circle */
.intro-central-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 60px rgba(0, 166, 81, 0.5),
        0 0 120px rgba(0, 166, 81, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.intro-circle-content {
    text-align: center;
    color: var(--white);
}

.circle-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.circle-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(0, 166, 81, 0.3);
    border-radius: 50%;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-2 {
    width: 340px;
    height: 340px;
    margin: -170px 0 0 -170px;
    animation: orbit-rotate 30s linear infinite reverse;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    animation: orbit-rotate 25s linear infinite;
}

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

/* Orbit Items */
.orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.orbit-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-green-light);
}

.orbit-item-1 {
    top: -25px;
    left: 50%;
    margin-left: -25px;
    animation: orbit-rotate 20s linear infinite reverse;
}

.orbit-item-2 {
    top: 50%;
    right: -25px;
    margin-top: -25px;
    animation: orbit-rotate 30s linear infinite;
}

.orbit-item-3 {
    bottom: -25px;
    left: 50%;
    margin-left: -25px;
    animation: orbit-rotate 25s linear infinite reverse;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
}

.stat-1 {
    top: 20px;
    right: -20px;
    animation: float-stat 4s ease-in-out infinite;
}

.stat-2 {
    bottom: 40px;
    left: -30px;
    animation: float-stat 4s ease-in-out infinite 2s;
}

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

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-text {
    font-size: 0.75rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Float Animation */
.animate-float {
    animation: gentle-float 6s ease-in-out infinite;
}

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

/* Slide Up Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fade-in 0.6s ease forwards;
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    to { opacity: 1; }
}

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

/* Legacy intro-section support */
.intro-section {
    background: var(--white);
    padding: 100px 0;
}

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

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 16px;
}

/* ============================================
   Expertise Section - PREMIUM ANIMATED
   ============================================ */
.expertise-section-premium {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Animated Background */
.expertise-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.expertise-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        #f8faf9 0%,
        #e8f5e9 30%,
        #d4edda 60%,
        #e8f5e9 100%
    );
}

.expertise-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 166, 81, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 166, 81, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.expertise-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.expertise-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-green);
    top: -200px;
    left: -100px;
    animation: glow-pulse 8s ease-in-out infinite;
}

.expertise-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-green-light);
    bottom: -150px;
    right: -100px;
    animation: glow-pulse 8s ease-in-out infinite 4s;
}

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

/* Section Header */
.expertise-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.expertise-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.15);
}

.expertise-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-green);
    fill: var(--primary-green);
}

.expertise-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.expertise-header > p {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards Grid */
.expertise-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Premium Expertise Card - NEW DESIGN
   ============================================ */
.expertise-card-premium {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 166, 81, 0.08);
}

.expertise-card-premium:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 166, 81, 0.2),
        0 0 0 2px rgba(0, 166, 81, 0.15);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 20;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
}

/* Card Header Zone */
.card-header-zone {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Card Photo */
.card-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1.1);
}

.expertise-card-premium:hover .card-photo {
    transform: scale(1.08);
    filter: brightness(0.9) saturate(1.2);
}

.card-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0) 0%, rgba(0, 133, 66, 0) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.card-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.expertise-card-premium:hover .card-header-bg {
    transform: scale(1.1);
}

/* Card Number */
.card-number {
    position: absolute;
    bottom: 10px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.85;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1;
    transition: all 0.5s ease;
}

.expertise-card-premium:hover .card-number {
    color: var(--primary-green);
    opacity: 1;
    transform: scale(1.1) translateX(-5px);
}

/* Icon Wrapper */
.card-icon-wrapper {
    position: relative;
    z-index: 2;
}

.card-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 -2px 10px rgba(0, 166, 81, 0.1);
    transition: all 0.5s ease;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid var(--primary-green-pale);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.card-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-green);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.expertise-card-premium:hover .card-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.25),
        inset 0 -2px 10px rgba(0, 166, 81, 0.2);
}

.expertise-card-premium:hover .card-icon::after {
    border-color: var(--primary-green);
    transform: rotate(180deg);
}

/* Card Content Zone */
.card-content-zone {
    padding: 28px 28px 32px;
}

/* Card Tag */
.card-tag {
    display: inline-block;
    background: var(--primary-green-pale);
    color: var(--primary-green-dark);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.card-content-zone h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.expertise-card-premium:hover .card-content-zone h3 {
    color: var(--primary-green);
}

.card-content-zone > p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Card Features List */
.card-features {
    list-style: none;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-green);
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-dark);
    padding: 6px 0;
}

.card-features li svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-green);
    flex-shrink: 0;
}

/* Card Highlight Box */
.card-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.highlight-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
    position: relative;
}

.highlight-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

/* Card Button */
.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-green);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.card-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.card-btn:hover {
    background: var(--primary-green-dark);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

.card-btn:hover svg {
    transform: translateX(4px);
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--primary-green-pale);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.expertise-card-premium:hover .card-decoration {
    transform: scale(1.5);
    opacity: 0.8;
}

/* Featured Card Special Styles */
.expertise-card-premium.featured {
    box-shadow:
        0 8px 30px rgba(0, 166, 81, 0.15),
        0 0 0 2px var(--primary-green);
}

.expertise-card-premium.featured .card-header-bg {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0) 0%, rgba(0, 38, 26, 0) 100%);
}

.expertise-card-premium.featured .card-photo {
    filter: brightness(1) saturate(1.2);
}

/* Legacy Expertise Card Support */
.expertise-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 166, 81, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.expertise-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 166, 81, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 40px rgba(0, 166, 81, 0.15),
        0 0 0 1px rgba(0, 166, 81, 0.1);
    border-color: transparent;
}

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

.expertise-card:hover::after {
    opacity: 1;
}

/* Card Number */
.expertise-card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 166, 81, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-card-number {
    color: rgba(0, 166, 81, 0.15);
    transform: scale(1.1);
}

/* Card Icon */
.expertise-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green-pale), rgba(0, 166, 81, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.expertise-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-green);
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-card-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.4);
}

.expertise-card:hover .expertise-card-icon svg {
    stroke: var(--white);
}

/* Card Content */
.expertise-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.expertise-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Card Link */
.expertise-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.expertise-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.expertise-card:hover .expertise-card-link {
    color: var(--primary-green-dark);
}

.expertise-card:hover .expertise-card-link svg {
    transform: translateX(5px);
}

/* Card Shine Effect */
.expertise-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: none;
    z-index: 2;
    pointer-events: none;
}

.expertise-card:hover .expertise-card-shine {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    to { left: 100%; }
}

/* Bottom CTA */
.expertise-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 166, 81, 0.15);
    position: relative;
    z-index: 1;
}

.expertise-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.expertise-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.expertise-cta .btn-primary svg {
    transition: transform 0.3s ease;
}

.expertise-cta .btn-primary:hover svg {
    transform: translateX(4px);
}

/* Legacy services-section support */
.services-section {
    background: var(--light-gray);
    padding: 100px 0;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--medium-gray);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-green-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-green);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--primary-green);
    transform: scale(1.05);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* ============================================
   Stats Section - ULTRA PREMIUM (Super Compact & Sleek)
   ============================================ */
.stats-ultra {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.stats-ultra-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ultra-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        #003d1f 0%,
        #005a2e 20%,
        var(--primary-green) 50%,
        #005a2e 80%,
        #003d1f 100%
    );
    background-size: 300% 300%;
    animation: gradient-shift 12s ease-in-out infinite;
}

/* Geometric pattern overlay */
.stats-ultra-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(255,255,255,0.02) 30px,
            rgba(255,255,255,0.02) 60px
        );
    z-index: 1;
}

/* Top edge glow */
.stats-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    z-index: 3;
}

/* Bottom edge glow */
.stats-ultra::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    z-index: 3;
}

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

.ultra-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    animation: ultra-shimmer 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes ultra-shimmer {
    0% { left: -30%; }
    100% { left: 130%; }
}

/* Stats Wrapper - COMPACT */
.stats-ultra-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    position: relative;
    z-index: 2;
    gap: 0;
}

/* Stat Item - COMPACT */
.stat-ultra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.stat-ultra-item:hover {
    transform: translateY(-2px);
}

.stat-ultra-item:hover .stat-ultra-icon {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.stat-ultra-item:hover .stat-ultra-number {
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* Featured Item - SLEEK */
.stat-ultra-item.featured {
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    margin: 0;
    padding: 12px 22px;
}

.stat-ultra-badge {
    position: absolute;
    top: -6px;
    right: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

/* Icon - COMPACT */
.stat-ultra-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-ultra-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    stroke-width: 1.5;
}

/* Data - COMPACT */
.stat-ultra-data {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.stat-ultra-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.stat-ultra-number small {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    margin-left: 1px;
}

.stat-ultra-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Decorative Line - Hidden for cleaner look */
.stat-ultra-line {
    display: none;
}

/* Divider - SUBTLE */
.stat-ultra-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    margin: 0 8px;
}

/* Legacy stats-section-premium support */
.stats-section-premium {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stats-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #00693e 50%, var(--primary-green-dark) 100%);
}

.stats-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Legacy Stats Section Support */
.stats-section {
    background: var(--primary-green);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm20 0a7 7 0 1 0 0-14 7 7 0 0 0 0 14zM10 37a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm10-17h20v20H20V20zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ============================================
   Tools Section - Premium with Mockups
   ============================================ */
.tools-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 120px 0;
}

.tools-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.tool-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tool-item:nth-child(even) {
    direction: rtl;
}

.tool-item:nth-child(even) > * {
    direction: ltr;
}

.tool-content {
    padding: 20px 0;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-green-pale);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.tool-badge svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.tool-content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.tool-content > p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.tool-features {
    margin-bottom: 32px;
}

.tool-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--medium-gray);
}

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

.tool-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-green);
    flex-shrink: 0;
}

/* Tablet Mockup */
.mockup-tablet {
    position: relative;
    perspective: 1000px;
}

.tablet-frame {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 16px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateX(8deg) rotateY(-8deg);
    transition: transform 0.5s ease;
    position: relative;
}

.mockup-tablet:hover .tablet-frame {
    transform: rotateX(2deg) rotateY(-2deg);
}

/* Camera dot */
.tablet-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #334155;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tablet-screen {
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

/* Home button */
.tablet-home {
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, #334155, #1e293b);
    border-radius: 50%;
    margin: 12px auto 0;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Green tablet variant */
.tablet-frame.tablet-green {
    background: linear-gradient(145deg, var(--primary-green-dark) 0%, #004d25 100%);
}

.tablet-frame.tablet-green .tablet-screen {
    background: var(--off-white);
}

.tablet-frame.tablet-green .tablet-home {
    background: linear-gradient(145deg, var(--primary-green), var(--primary-green-dark));
}

.tablet-frame.tablet-green::before {
    background: rgba(255, 255, 255, 0.2);
}

/* Dashboard Mockup Content */
.dashboard-mockup {
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dashboard-logo {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.9rem;
}

.dashboard-nav {
    display: flex;
    gap: 16px;
}

.dashboard-nav span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
}

.dashboard-nav span:first-child {
    color: var(--primary-green);
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    flex: 1;
}

.dash-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.dash-card.large {
    grid-column: span 2;
}

.dash-card-title {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.dash-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.dash-card-value.green {
    color: var(--primary-green);
}

.dash-progress {
    margin-top: 10px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.dash-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
    border-radius: 2px;
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-top: 10px;
}

.dash-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 3px 3px 0 0;
    min-height: 10px;
}

/* Browser Mockup */
.mockup-browser {
    position: relative;
    perspective: 1000px;
}

.browser-frame {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: rotateX(5deg) rotateY(5deg);
    transition: transform 0.5s ease;
    border: 1px solid var(--medium-gray);
}

.mockup-browser:hover .browser-frame {
    transform: rotateX(0deg) rotateY(0deg);
}

.browser-header {
    background: var(--light-gray);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--medium-gray);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27ca3f; }

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
    border: 1px solid var(--medium-gray);
}

.browser-content {
    padding: 20px;
    background: var(--off-white);
    min-height: 280px;
}

/* Marketplace Mockup Content */
.marketplace-mockup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.market-logo {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1rem;
}

.market-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--medium-gray);
    font-size: 0.75rem;
    color: var(--text-light);
}

.market-search svg {
    flex-shrink: 0;
}

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

.market-card {
    background: var(--white);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--medium-gray);
    transition: var(--transition-fast);
}

.market-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.market-card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.market-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-green);
}

.market-card h4 {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.market-card p {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}

.market-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.market-price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.85rem;
}

.market-discount {
    background: #fef3c7;
    color: #d97706;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* ============================================
   Laptop Mockup - Premium
   ============================================ */
.mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-laptop {
    position: relative;
    perspective: 1000px;
}

.laptop-screen {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px 12px 0 0;
    padding: 8px 8px 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
    width: 320px;
}

.mockup-laptop:hover .laptop-screen {
    transform: rotateX(0deg);
}

.laptop-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #1a1a2e;
    border-radius: 8px 8px 0 0;
}

.laptop-dots {
    display: flex;
    gap: 5px;
}

.laptop-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.laptop-dots span:nth-child(1) { background: #ff5f56; }
.laptop-dots span:nth-child(2) { background: #ffbd2e; }
.laptop-dots span:nth-child(3) { background: #27ca3f; }

.laptop-title {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.laptop-content {
    display: flex;
    background: #0f172a;
    min-height: 180px;
    border-radius: 0 0 4px 4px;
}

.app-sidebar {
    width: 50px;
    background: #1e293b;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-item.active {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
}

.app-main {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-chart {
    flex: 1;
    background: linear-gradient(180deg, rgba(0, 166, 81, 0.2), rgba(0, 166, 81, 0.05));
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.app-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(0, 166, 81, 0.3));
    clip-path: polygon(0 100%, 20% 60%, 40% 80%, 60% 40%, 80% 70%, 100% 30%, 100% 100%);
}

.app-stats {
    display: flex;
    gap: 8px;
}

.mini-stat {
    flex: 1;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.laptop-base {
    height: 12px;
    background: linear-gradient(180deg, #334155, #1e293b);
    border-radius: 0 0 4px 4px;
    margin: 0 -20px;
    position: relative;
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #475569;
    border-radius: 2px;
}

.mockup-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 5px 20px rgba(0, 166, 81, 0.4);
    z-index: 10;
}

/* Legacy tool-card support */
.tool-card {
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.tool-card.formatissia {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
}

.tool-card.training-market {
    background: linear-gradient(145deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.tool-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.tool-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 600;
}

.tool-card p {
    opacity: 0.9;
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.tool-card .tool-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    opacity: 0.9;
    font-size: 0.95rem;
    border: none;
    color: var(--white);
}

.tool-card .tool-features li svg {
    display: none;
}

.tool-card .tool-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 600;
}

.tool-card .btn-primary {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.tool-card .btn-primary:hover {
    background: var(--accent-gold);
    color: var(--white);
}

/* ============================================
   Quality Section - PREMIUM ANIMATED
   ============================================ */
.quality-section-premium {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Animated Background */
.quality-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.quality-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}

/* Floating Particles */
.quality-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.quality-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.quality-particles span:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; }
.quality-particles span:nth-child(3) { left: 35%; top: 30%; animation-delay: 4s; }
.quality-particles span:nth-child(4) { left: 50%; top: 70%; animation-delay: 1s; }
.quality-particles span:nth-child(5) { left: 65%; top: 25%; animation-delay: 3s; }
.quality-particles span:nth-child(6) { left: 75%; top: 85%; animation-delay: 5s; }
.quality-particles span:nth-child(7) { left: 85%; top: 40%; animation-delay: 2.5s; }
.quality-particles span:nth-child(8) { left: 90%; top: 60%; animation-delay: 1.5s; }
.quality-particles span:nth-child(9) { left: 5%; top: 50%; animation-delay: 3.5s; }
.quality-particles span:nth-child(10) { left: 45%; top: 10%; animation-delay: 4.5s; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

/* Animated Lines */
.quality-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    opacity: 0.2;
}

.line-1 {
    top: 30%;
    left: 0;
    right: 0;
    animation: line-move 8s linear infinite;
}

.line-2 {
    top: 50%;
    left: 0;
    right: 0;
    animation: line-move 12s linear infinite reverse;
}

.line-3 {
    top: 70%;
    left: 0;
    right: 0;
    animation: line-move 10s linear infinite 2s;
}

@keyframes line-move {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header */
.quality-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 166, 81, 0.15);
    border: 1px solid rgba(0, 166, 81, 0.3);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.quality-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-green-light);
}

.quality-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.quality-header > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Main Grid */
.quality-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Values Section */
.quality-values-section h3,
.quality-certs-section h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.quality-values-section h3::after,
.quality-certs-section h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-green);
}

/* Value Cards */
.values-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.value-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.value-card:hover .value-card-inner {
    background: rgba(0, 166, 81, 0.1);
    border-color: rgba(0, 166, 81, 0.3);
    transform: translateX(10px);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.4);
    transition: all 0.4s ease;
}

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

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.value-content {
    flex: 1;
}

.value-content h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}

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

.value-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.value-glow {
    position: absolute;
    top: 50%;
    left: -50px;
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover .value-glow {
    opacity: 0.3;
}

/* Certifications Section */
.certs-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cert-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.cert-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.cert-card:hover .cert-card-bg {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.15), rgba(0, 166, 81, 0.05));
    border-color: rgba(0, 166, 81, 0.3);
}

.cert-card:hover {
    transform: translateY(-4px);
}

/* Medal Design */
.cert-medal {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    z-index: 1;
}

.medal-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed rgba(0, 166, 81, 0.4);
    border-radius: 50%;
    animation: spin-slow 15s linear infinite;
}

.medal-inner {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 25px rgba(0, 166, 81, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.medal-inner svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.cert-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.cert-label {
    font-size: 0.7rem;
    color: var(--primary-green-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cert-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

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

.cert-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
    pointer-events: none;
}

.cert-card:hover .cert-shine {
    animation: shine 0.8s ease forwards;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 28px;
    background: rgba(0, 166, 81, 0.1);
    border: 1px solid rgba(0, 166, 81, 0.2);
    border-radius: var(--radius-lg);
}

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

.trust-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green-light);
    line-height: 1;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Legacy Quality Section Support */
.quality-section {
    background: var(--light-gray);
    padding: 100px 0;
}

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

.quality-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.quality-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 28px;
    line-height: 1.8;
}

.quality-values {
    list-style: none;
}

.quality-values li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--medium-gray);
}

.quality-values li:last-child {
    border-bottom: none;
}

.quality-values li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--primary-green);
    border-radius: 50%;
}

.quality-values li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
}

.quality-certs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cert-badge {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.cert-badge:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.cert-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green-pale);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.cert-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-green);
    transition: var(--transition-normal);
}

.cert-badge:hover .cert-icon {
    background: var(--primary-green);
}

.cert-badge:hover .cert-icon svg {
    stroke: var(--white);
}

.cert-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
}

/* ============================================
   CTA Section - PREMIUM
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0a1628 0%, #132744 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 166, 81, 0.2) 0%, transparent 60%);
    animation: cta-pulse 4s ease-in-out infinite;
}

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

/* Animated particles */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(0, 166, 81, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(0, 166, 81, 0.3), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(0, 166, 81, 0.4), transparent),
        radial-gradient(2px 2px at 80% 60%, rgba(0, 166, 81, 0.3), transparent);
    animation: cta-stars 8s linear infinite;
}

@keyframes cta-stars {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}

.cta-logo {
    height: 50px;
    width: auto;
    margin: 0 auto 24px;
    display: block;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0, 166, 81, 0.3));
}

.cta-section h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    font-size: 1rem;
    padding: 16px 40px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.4);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 166, 81, 0.5);
}

/* ============================================
   Page Hero - PREMIUM Interior Pages
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #0a1628 0%, #132744 50%, #1a3a5c 100%);
    padding: 160px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-logo {
    height: 44px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
    position: relative;
    z-index: 2;
    opacity: 0.85;
    filter: drop-shadow(0 2px 8px rgba(0, 166, 81, 0.25));
    animation: fadeInUp 0.6s ease-out;
}

/* Animated gradient overlay */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(0, 166, 81, 0.1) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 166, 81, 0.1) 100%
    );
    background-size: 200% 200%;
    animation: hero-gradient 8s ease-in-out infinite;
}

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

/* Grid pattern */
.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 166, 81, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 166, 81, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Page Hero Background Photo */
.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.18;
    filter: grayscale(30%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Floating shapes for page-hero */
.page-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    animation: float-shape 15s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-green-light) 0%, transparent 70%);
    bottom: -50px;
    left: -30px;
    animation: float-shape 12s ease-in-out infinite 2s;
}

.hero-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    top: 50%;
    left: 10%;
    animation: float-shape 10s ease-in-out infinite 1s;
}

/* Badge in hero */
.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 166, 81, 0.2);
    border: 1px solid rgba(0, 166, 81, 0.4);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out;
}

.page-hero-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-green-light);
}

/* ============================================
   Content Section - PREMIUM
   ============================================ */
.content-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.content-section-dark {
    background: linear-gradient(135deg, #0a1628 0%, #132744 100%);
    color: var(--white);
}

.content-section-dark .content-text h2 {
    color: var(--white);
}

.content-section-dark .content-text p {
    color: rgba(255, 255, 255, 0.8);
}

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

.content-text h2 {
    font-size: 1.875rem;
    margin-bottom: 24px;
    position: relative;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
    border-radius: 2px;
}

.content-text p {
    font-size: 1.025rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-image {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 56px 36px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 166, 81, 0.25);
}

/* Animated ring around content-image */
.content-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: transform 0.4s ease;
}

.content-image:hover .icon-large {
    transform: scale(1.1) rotate(-5deg);
}

/* Rotating ring */
.icon-large::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

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

.icon-large svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
    stroke-width: 1.5;
}

.content-image h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.content-image p {
    opacity: 0.9;
}

/* Benefits list premium */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.benefits-list li {
    position: relative;
    padding: 10px 0 10px 32px;
    font-size: 1rem;
    color: var(--text-medium);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    padding-left: 38px;
    color: var(--primary-green);
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
}

.benefits-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 9px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin-top: 24px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--medium-gray);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* ============================================
   Timeline - PREMIUM
   ============================================ */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    opacity: 0;
    transform: translateX(-20px);
    animation: timeline-appear 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes timeline-appear {
    to { opacity: 1; transform: translateX(0); }
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -50px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    box-shadow: 0 0 0 4px var(--primary-green-pale), 0 5px 15px rgba(0, 166, 81, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px var(--primary-green-pale), 0 8px 25px rgba(0, 166, 81, 0.4);
}

.timeline-content {
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 166, 81, 0.1);
    margin-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 14px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-left: 1px solid rgba(0, 166, 81, 0.1);
    border-bottom: 1px solid rgba(0, 166, 81, 0.1);
    transform: rotate(45deg);
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 166, 81, 0.3);
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-green);
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   Features Grid
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--medium-gray);
    transition: var(--transition-normal);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: transparent;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.feature-content h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.contact-info h3 {
    font-size: 1.625rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details .icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details .icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.contact-details strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.925rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px var(--primary-green-pale);
}

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

/* ============================================
   Lexique Styles
   ============================================ */
.lexique-list {
    max-width: 850px;
    margin: 0 auto;
}

.lexique-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.lexique-item:last-child {
    border-bottom: none;
}

.lexique-item h3 {
    color: var(--primary-green) !important;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.lexique-item p {
    color: var(--text-medium) !important;
    line-height: 1.7;
}

/* ============================================
   Footer - Premium
   ============================================ */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    font-size: 1.375rem;
    margin-bottom: 16px;
}

.footer-brand .logo-text span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand .logo-img-footer {
    margin-bottom: 20px;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-contact strong {
    color: var(--white);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--primary-green);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.footer-legal {
    margin-top: 12px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.45);
    margin: 0 8px;
    font-size: 0.8rem;
}

.footer-legal a:hover {
    color: var(--primary-green);
}

.current-date {
    color: var(--primary-green) !important;
    font-weight: 600;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

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

    .tool-item {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tool-item:nth-child(even) {
        direction: ltr;
    }

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

    .tool-content h3 {
        font-size: 2rem;
    }

    .tool-features {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 32px;
    }

    .tool-content .btn {
        margin: 0 auto;
    }

    /* Mockups on Tablet - Premium centered */
    .mockup-tablet,
    .mockup-browser {
        max-width: 500px;
        margin: 0 auto;
    }

    .tablet-frame {
        transform: rotateX(5deg);
        box-shadow:
            0 40px 80px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .browser-frame {
        transform: rotateX(3deg);
        box-shadow:
            0 40px 80px rgba(0, 0, 0, 0.12);
    }

    .mockup-tablet:hover .tablet-frame {
        transform: rotateX(0deg);
    }

    .mockup-browser:hover .browser-frame {
        transform: rotateX(0deg);
    }
}

@media (max-width: 992px) {
    /* Intro Premium Section Responsive */
    .intro-premium-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .intro-premium-content {
        order: 1;
    }

    .intro-premium-visual {
        order: 2;
        min-height: 400px;
    }

    .intro-badge {
        justify-content: center;
    }

    .intro-features {
        max-width: 500px;
        margin: 0 auto 36px;
    }

    .intro-premium-content .btn-primary {
        margin: 0 auto;
    }

    .intro-visual-container {
        width: 350px;
        height: 350px;
    }

    .intro-central-circle {
        width: 150px;
        height: 150px;
    }

    .circle-number {
        font-size: 2.5rem;
    }

    .orbit-1 {
        width: 240px;
        height: 240px;
        margin: -120px 0 0 -120px;
    }

    .orbit-2 {
        width: 290px;
        height: 290px;
        margin: -145px 0 0 -145px;
    }

    .orbit-3 {
        width: 350px;
        height: 350px;
        margin: -175px 0 0 -175px;
    }

    .floating-stat.stat-1 {
        right: 10px;
    }

    .floating-stat.stat-2 {
        left: 10px;
    }

    /* Expertise Section Responsive 992px */
    .expertise-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .expertise-card {
        padding: 32px 28px;
    }

    .expertise-card-number {
        font-size: 2.5rem;
    }

    /* Premium Cards 992px */
    .card-header-zone {
        height: 180px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon svg {
        width: 32px;
        height: 32px;
    }

    .card-icon-ring {
        width: 90px;
        height: 90px;
    }

    .card-number {
        font-size: 3.5rem;
    }

    .card-content-zone {
        padding: 24px;
    }

    .card-content-zone h3 {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo::before {
        display: none;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 34px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--text-dark);
        flex-direction: column;
        padding: 100px 0 40px;
        gap: 0;
        border: none;
        box-shadow: none;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        justify-content: space-between;
        padding: 14px 28px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-transform: none;
        letter-spacing: 0;
        font-size: 1.05rem;
        color: var(--white);
        font-weight: 500;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        color: var(--primary-green);
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .has-submenu > a {
        padding-right: 24px !important;
    }

    .has-submenu > a::before {
        display: block !important;
        position: absolute;
        right: 28px;
        top: 50%;
        transform: translateY(-60%) rotate(45deg);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .has-submenu.active > a::before {
        transform: translateY(-40%) rotate(-135deg);
        border-color: var(--primary-green);
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        border: none;
        padding: 0;
        display: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0;
        min-width: auto;
        left: 0;
    }

    .submenu::before {
        display: none;
    }

    .submenu li a {
        padding: 12px 28px 12px 44px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.92rem;
    }

    .submenu li a:hover {
        color: var(--primary-green);
    }

    .submenu li a::before,
    .submenu li a::after {
        display: none;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-btn span {
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span {
        background: var(--white);
    }

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

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

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

    /* CTA Button Mobile */
    .nav-cta {
        margin: 20px 28px;
    }

    .nav-cta a {
        background: var(--primary-green) !important;
        color: var(--white) !important;
        border-color: var(--primary-green) !important;
        width: 100%;
        text-align: center;
        padding: 14px 28px;
        border-radius: var(--radius-full);
        font-size: 1rem;
    }

    .nav-cta a {
        width: 100%;
        justify-content: center;
        padding: 16px 24px !important;
    }

    .content-grid,
    .quality-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Quality Premium 992px */
    .quality-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .trust-bar {
        flex-wrap: wrap;
        gap: 24px;
    }

    .trust-divider {
        display: none;
    }

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

    /* Stats Ultra 992px - More Compact */
    .stats-ultra-wrapper {
        flex-wrap: wrap;
        gap: 5px;
        padding: 16px 10px;
    }

    .stat-ultra-item {
        padding: 8px 14px;
    }

    .stat-ultra-item.featured {
        padding: 10px 16px;
    }

    .stat-ultra-number {
        font-size: 1.25rem;
    }

    .stat-ultra-icon {
        width: 32px;
        height: 32px;
    }

    .stat-ultra-icon svg {
        width: 16px;
        height: 16px;
    }

    .stat-ultra-divider {
        height: 28px;
        margin: 0 4px;
    }

    /* Stats Premium 992px */
    .stats-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card-inner {
        padding: 28px 20px;
    }

    .stat-value {
        font-size: 2.25rem;
    }

    .stats-tagline {
        margin-top: 40px;
    }

    .quality-certs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-info::before {
        display: none;
    }

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

    .hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .hero-video-layout .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-video-layout .hero-content h1 {
        text-align: center;
    }

    .hero-video-layout .hero-buttons {
        justify-content: center;
    }

    /* Mobile: show inline video, hide desktop video */
    .hero-video-mobile {
        display: block;
        width: 100%;
        margin: 20px 0 24px;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 166, 81, 0.12);
    }

    .hero-video-mobile .hero-video-wrapper {
        box-shadow: none;
    }

    .hero-video-desktop {
        display: none;
    }

    .hero::before {
        width: 100%;
        clip-path: none;
        opacity: 0.3;
    }

    .hero::after {
        display: none;
    }

    .hero h1 {
        font-size: 1.875rem;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

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

    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    /* Page Hero Mobile */
    .page-hero {
        padding: 180px 20px 60px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .page-hero-shapes {
        opacity: 0.5;
    }

    .hero-shape-1 {
        width: 150px;
        height: 150px;
    }

    .hero-shape-2 {
        width: 100px;
        height: 100px;
    }

    .hero-shape-3 {
        width: 60px;
        height: 60px;
    }

    .page-hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .page-hero-badge svg {
        width: 14px;
        height: 14px;
    }

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

    /* Stats Ultra Mobile 768px - COMPACT */
    .stats-ultra-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 14px 12px;
    }

    .stat-ultra-item {
        padding: 10px;
        flex-direction: row;
        text-align: left;
        gap: 8px;
        justify-content: flex-start;
    }

    .stat-ultra-item.featured {
        padding: 10px;
        margin: 0;
        border-radius: 8px;
    }

    .stat-ultra-divider {
        display: none;
    }

    .stat-ultra-badge {
        top: -5px;
        right: 5px;
        font-size: 0.5rem;
        padding: 2px 6px;
    }

    .stat-ultra-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .stat-ultra-icon svg {
        width: 15px;
        height: 15px;
    }

    .stat-ultra-number {
        font-size: 1.15rem;
    }

    .stat-ultra-number small {
        font-size: 0.75rem;
    }

    .stat-ultra-label {
        font-size: 0.58rem;
    }

    .stat-ultra-label {
        font-size: 0.65rem;
    }

    .stat-ultra-line {
        display: none;
    }

    .stat-ultra-badge {
        top: 4px;
        right: 4px;
        font-size: 0.5rem;
        padding: 2px 6px;
    }

    /* Stats Premium Mobile 768px */
    .stats-section-premium {
        padding: 70px 0;
    }

    .stats-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card-inner {
        padding: 24px 16px;
    }

    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

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

    .stat-unit {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-highlight {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .stats-tagline {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .tagline-line {
        display: none;
    }

    .tagline-text {
        font-size: 0.9rem;
    }

    /* Hide glows on mobile */
    .stats-glow {
        display: none;
    }

    /* Intro Premium Mobile */
    .intro-section-premium {
        padding: 80px 0;
    }

    .intro-premium-grid {
        gap: 50px;
    }

    .intro-premium-content h2 {
        font-size: 1.75rem;
    }

    .intro-lead {
        font-size: 1.05rem;
    }

    .intro-feature {
        padding: 14px 16px;
    }

    .intro-feature-icon {
        width: 42px;
        height: 42px;
    }

    .intro-feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .intro-feature-text strong {
        font-size: 0.95rem;
    }

    .intro-feature-text span {
        font-size: 0.8rem;
    }

    .intro-premium-visual {
        min-height: 320px;
    }

    .intro-visual-container {
        width: 280px;
        height: 280px;
    }

    .intro-central-circle {
        width: 120px;
        height: 120px;
    }

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

    .circle-label {
        font-size: 0.65rem;
    }

    .orbit-1 {
        width: 180px;
        height: 180px;
        margin: -90px 0 0 -90px;
    }

    .orbit-2 {
        width: 230px;
        height: 230px;
        margin: -115px 0 0 -115px;
    }

    .orbit-3 {
        width: 280px;
        height: 280px;
        margin: -140px 0 0 -140px;
    }

    .orbit-item {
        width: 40px;
        height: 40px;
    }

    .orbit-item svg {
        width: 18px;
        height: 18px;
    }

    .orbit-item-1 { top: -20px; margin-left: -20px; }
    .orbit-item-2 { right: -20px; margin-top: -20px; }
    .orbit-item-3 { bottom: -20px; margin-left: -20px; }

    .floating-stat {
        padding: 12px 18px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-text {
        font-size: 0.65rem;
    }

    .floating-stat.stat-1 {
        top: 10px;
        right: 0;
    }

    .floating-stat.stat-2 {
        bottom: 20px;
        left: 0;
    }

    /* Hide some shapes on mobile */
    .shape-3, .shape-4, .shape-5 {
        display: none;
    }

    /* Expertise Section Mobile 768px */
    .expertise-section-premium {
        padding: 80px 0;
    }

    .expertise-header {
        margin-bottom: 50px;
    }

    .expertise-header h2 {
        font-size: 1.75rem;
    }

    .expertise-header > p {
        font-size: 1rem;
    }

    .expertise-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .expertise-card {
        padding: 28px 24px;
    }

    .expertise-card-icon {
        width: 60px;
        height: 60px;
    }

    .expertise-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .expertise-card-number {
        font-size: 2rem;
        top: 16px;
        right: 20px;
    }

    .expertise-card h3 {
        font-size: 1.15rem;
    }

    .expertise-cta {
        margin-top: 40px;
        padding-top: 40px;
    }

    .expertise-cta p {
        font-size: 1rem;
    }

    /* Premium Cards Mobile 768px */
    .expertise-card-premium {
        max-width: 500px;
        margin: 0 auto;
    }

    .card-header-zone {
        height: 180px;
    }

    .card-icon {
        width: 75px;
        height: 75px;
    }

    .card-icon svg {
        width: 34px;
        height: 34px;
    }

    .card-icon-ring {
        width: 95px;
        height: 95px;
    }

    .card-number {
        font-size: 3.5rem;
    }

    .card-content-zone {
        padding: 26px;
    }

    .card-content-zone h3 {
        font-size: 1.3rem;
    }

    .featured-badge {
        font-size: 0.65rem;
        padding: 5px 35px;
    }

    .card-highlight {
        padding: 18px;
    }

    .highlight-value {
        font-size: 2.25rem;
    }

    /* Hide glows on mobile for performance */
    .expertise-glow {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .quality-certs {
        grid-template-columns: 1fr;
    }

    /* Quality Premium Mobile 768px */
    .quality-section-premium {
        padding: 80px 0;
    }

    .quality-header {
        margin-bottom: 50px;
    }

    .quality-header h2 {
        font-size: 1.75rem;
    }

    .quality-header > p {
        font-size: 1rem;
    }

    .quality-main-grid {
        gap: 40px;
    }

    .value-card-inner {
        padding: 22px;
        flex-direction: column;
        text-align: center;
    }

    .value-icon {
        margin: 0 auto;
    }

    .value-number {
        display: none;
    }

    .cert-card {
        padding: 20px;
    }

    .cert-medal {
        width: 60px;
        height: 60px;
    }

    .medal-inner svg {
        width: 24px;
        height: 24px;
    }

    .cert-title {
        font-size: 1.1rem;
    }

    .trust-bar {
        padding: 24px 20px;
        gap: 20px;
    }

    .trust-value {
        font-size: 1.75rem;
    }

    .trust-label {
        font-size: 0.7rem;
    }

    /* Hide particles on mobile for performance */
    .quality-particles {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
        padding-bottom: 30px;
    }

    footer {
        padding-top: 40px;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
    }

    /* Footer Brand - compact on mobile, pushed to bottom */
    .footer-brand {
        order: 10;
        padding-top: 20px;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand .logo-img-footer {
        margin: 0 auto 12px;
        height: 32px;
    }

    .footer-brand > p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .footer-contact {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 16px;
    }

    .footer-contact p {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    /* Footer Links - horizontal compact on mobile */
    .footer-links {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-links h4 {
        font-size: 0.85rem;
        margin-bottom: 10px;
        padding-bottom: 0;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--primary-green);
    }

    .footer-links h4::after {
        display: none;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 8px;
    }

    .footer-links ul li {
        margin-bottom: 0;
    }

    .footer-links ul li a {
        font-size: 0.8rem;
        padding: 4px 12px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: var(--radius-full);
        display: inline-block;
    }

    .footer-links ul li a:hover {
        background: rgba(0, 166, 81, 0.2);
        transform: none;
    }

    /* Footer Bottom - compact */
    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 0.78rem;
    }

    .footer-legal {
        margin-top: 8px;
    }

    .footer-legal a {
        font-size: 0.72rem;
        margin: 0 4px;
    }

    /* Laptop Mockup Mobile 768px */
    .mockup-container {
        margin-top: 30px;
    }

    .laptop-screen {
        width: 280px;
    }

    .laptop-content {
        min-height: 150px;
    }

    .mockup-badge {
        top: -8px;
        right: -8px;
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    /* Tools & Mockups responsive */
    .tools-section {
        padding: 70px 0;
    }

    .tools-grid {
        gap: 60px;
    }

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

    .tool-content h3 {
        font-size: 1.5rem;
    }

    .tool-content > p {
        font-size: 0.95rem;
    }

    .tool-features {
        text-align: left;
    }

    .tool-features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    .tool-content .btn {
        width: 100%;
    }

    /* Tablet Mockup Mobile - PREMIUM STYLE */
    .mockup-tablet {
        max-width: 90%;
        margin: 0 auto;
    }

    .tablet-frame {
        padding: 12px;
        border-radius: 20px;
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.25),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }

    .tablet-screen {
        border-radius: 10px;
    }

    .tablet-home {
        width: 32px;
        height: 32px;
        margin-top: 10px;
    }

    .dashboard-mockup {
        padding: 14px;
        gap: 10px;
    }

    .dashboard-header {
        padding-bottom: 10px;
    }

    .dashboard-logo {
        font-size: 0.85rem;
    }

    .dashboard-nav {
        display: flex;
        gap: 10px;
    }

    .dashboard-nav span {
        font-size: 0.6rem;
    }

    .dashboard-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .dash-card {
        padding: 12px;
        border-radius: 10px;
        background: rgba(255,255,255,0.08);
    }

    .dash-card.large {
        grid-column: span 2;
    }

    .dash-card-title {
        font-size: 0.6rem;
        margin-bottom: 6px;
    }

    .dash-card-value {
        font-size: 1.25rem;
    }

    .dash-progress {
        margin-top: 8px;
        height: 5px;
    }

    .dash-chart {
        height: 50px;
        margin-top: 8px;
    }

    /* Browser Mockup Mobile - PREMIUM STYLE */
    .mockup-browser {
        max-width: 100%;
    }

    .browser-frame {
        border-radius: 12px;
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.15),
            0 0 0 1px var(--medium-gray);
    }

    .browser-header {
        padding: 10px 14px;
    }

    .browser-dots span {
        width: 10px;
        height: 10px;
    }

    .browser-url {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .browser-content {
        padding: 16px;
        min-height: 240px;
    }

    .marketplace-mockup {
        gap: 14px;
    }

    .market-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .market-logo {
        font-size: 1rem;
    }

    .market-search {
        width: auto;
        font-size: 0.7rem;
        padding: 8px 14px;
    }

    .market-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .market-card {
        padding: 12px;
        border-radius: 10px;
    }

    .market-card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .market-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .market-card h4 {
        font-size: 0.75rem;
    }

    .market-card p {
        font-size: 0.65rem;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .market-price {
        font-size: 0.8rem;
    }

    .market-discount {
        font-size: 0.6rem;
        padding: 3px 6px;
    }

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

@media (max-width: 480px) {
    /* Hero Extra Small - Visible & Premium */
    .hero {
        padding: 180px 16px 60px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
    }

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

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

    /* Page Hero Extra Small - Visible & Premium */
    .page-hero {
        padding: 170px 16px 50px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .page-hero-shapes {
        display: none;
    }

    .page-hero-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .page-hero-badge svg {
        width: 12px;
        height: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    /* Intro Premium Extra Small */
    .intro-section-premium {
        padding: 60px 0;
    }

    .intro-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .intro-badge svg {
        width: 14px;
        height: 14px;
    }

    .intro-premium-content h2 {
        font-size: 1.5rem;
    }

    .intro-lead {
        font-size: 1rem;
    }

    .intro-premium-content > p {
        font-size: 0.95rem;
    }

    .intro-features {
        gap: 12px;
    }

    .intro-feature {
        padding: 12px 14px;
        gap: 12px;
    }

    .intro-feature-icon {
        width: 38px;
        height: 38px;
    }

    .intro-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .intro-premium-visual {
        min-height: 280px;
    }

    .intro-visual-container {
        width: 240px;
        height: 240px;
    }

    .intro-central-circle {
        width: 100px;
        height: 100px;
    }

    .circle-number {
        font-size: 1.75rem;
    }

    .circle-label {
        font-size: 0.55rem;
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
        margin: -75px 0 0 -75px;
    }

    .orbit-2 {
        width: 195px;
        height: 195px;
        margin: -97px 0 0 -97px;
    }

    .orbit-3 {
        width: 240px;
        height: 240px;
        margin: -120px 0 0 -120px;
    }

    .orbit-item {
        width: 34px;
        height: 34px;
    }

    .orbit-item svg {
        width: 16px;
        height: 16px;
    }

    .orbit-item-1 { top: -17px; margin-left: -17px; }
    .orbit-item-2 { right: -17px; margin-top: -17px; }
    .orbit-item-3 { bottom: -17px; margin-left: -17px; }

    .floating-stat {
        padding: 10px 14px;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .stat-text {
        font-size: 0.6rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .tool-card {
        padding: 28px 20px;
    }

    /* Expertise Section 480px */
    .expertise-section-premium {
        padding: 60px 0;
    }

    .expertise-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .expertise-badge svg {
        width: 14px;
        height: 14px;
    }

    .expertise-header h2 {
        font-size: 1.5rem;
    }

    .expertise-card {
        padding: 24px 20px;
    }

    .expertise-card-icon {
        width: 54px;
        height: 54px;
    }

    .expertise-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .expertise-card-number {
        font-size: 1.75rem;
    }

    .expertise-card h3 {
        font-size: 1.1rem;
    }

    .expertise-card p {
        font-size: 0.9rem;
    }

    /* Premium Cards 480px */
    .expertise-card-premium {
        max-width: 100%;
    }

    .card-header-zone {
        height: 120px;
    }

    .card-icon {
        width: 65px;
        height: 65px;
    }

    .card-icon svg {
        width: 30px;
        height: 30px;
    }

    .card-icon-ring {
        width: 85px;
        height: 85px;
    }

    .card-number {
        font-size: 3rem;
    }

    .card-content-zone {
        padding: 22px 20px 26px;
    }

    .card-tag {
        font-size: 0.65rem;
        padding: 5px 12px;
    }

    .card-content-zone h3 {
        font-size: 1.15rem;
    }

    .card-content-zone > p {
        font-size: 0.9rem;
    }

    .card-features {
        padding: 14px;
        margin-bottom: 20px;
    }

    .card-features li {
        font-size: 0.8rem;
        padding: 5px 0;
    }

    .card-highlight {
        padding: 16px;
    }

    .highlight-value {
        font-size: 2rem;
    }

    .highlight-label {
        font-size: 0.75rem;
    }

    .card-btn {
        padding: 11px 20px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .card-decoration {
        width: 80px;
        height: 80px;
        bottom: -20px;
        right: -20px;
    }

    .featured-badge {
        font-size: 0.6rem;
        padding: 4px 30px;
        top: 15px;
        right: -38px;
    }

    /* Stats Ultra 480px - SUPER COMPACT */
    .stats-ultra-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 12px 10px;
        gap: 8px;
    }

    .stat-ultra-divider {
        display: none;
    }

    .stat-ultra-item {
        padding: 8px 10px;
        gap: 8px;
        justify-content: flex-start;
    }

    .stat-ultra-item.featured {
        padding: 8px 10px;
        grid-column: span 1;
    }

    .stat-ultra-badge {
        top: -4px;
        right: 4px;
        font-size: 0.45rem;
        padding: 2px 6px;
    }

    .stat-ultra-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .stat-ultra-icon svg {
        width: 14px;
        height: 14px;
    }

    .stat-ultra-number {
        font-size: 1.1rem;
    }

    .stat-ultra-number small {
        font-size: 0.7rem;
    }

    .stat-ultra-label {
        font-size: 0.55rem;
    }

    /* Stats Premium 480px */
    .stats-section-premium {
        padding: 60px 0;
    }

    .stats-premium-grid {
        gap: 12px;
    }

    .stat-card-inner {
        padding: 20px 14px;
    }

    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }

    .stat-icon {
        width: 42px;
        height: 42px;
    }

    .stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .stat-icon-ring {
        display: none;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-unit {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-highlight {
        font-size: 0.6rem;
        padding: 4px 8px;
    }

    .tagline-text {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    /* Quality Premium 480px */
    .quality-section-premium {
        padding: 60px 0;
    }

    .quality-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .quality-header h2 {
        font-size: 1.5rem;
    }

    .quality-values-section h3,
    .quality-certs-section h3 {
        font-size: 1.1rem;
    }

    .value-card-inner {
        padding: 20px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }

    .value-icon svg {
        width: 24px;
        height: 24px;
    }

    .value-content h4 {
        font-size: 1rem;
    }

    .value-content p {
        font-size: 0.85rem;
    }

    .cert-card {
        padding: 16px;
    }

    .cert-medal {
        width: 55px;
        height: 55px;
    }

    .medal-inner svg {
        width: 22px;
        height: 22px;
    }

    .cert-title {
        font-size: 1rem;
    }

    .cert-desc {
        font-size: 0.8rem;
    }

    .trust-bar {
        padding: 20px 16px;
    }

    .trust-value {
        font-size: 1.5rem;
    }

    .trust-item {
        flex: 1;
        min-width: 80px;
    }

    /* Mockups Extra Small - Keep Premium Look */
    .tools-section {
        padding: 60px 0;
    }

    .tools-grid {
        gap: 50px;
    }

    .tool-content h3 {
        font-size: 1.35rem;
    }

    .tool-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .tool-features li {
        font-size: 0.85rem;
        gap: 10px;
    }

    .tool-features li svg {
        width: 18px;
        height: 18px;
    }

    /* Tablet Mockup Extra Small - PREMIUM */
    .mockup-tablet {
        max-width: 100%;
    }

    .tablet-frame {
        padding: 10px;
        border-radius: 18px;
    }

    .tablet-home {
        width: 28px;
        height: 28px;
        margin-top: 8px;
    }

    .dashboard-mockup {
        padding: 12px;
        gap: 8px;
    }

    .dashboard-nav {
        display: none;
    }

    .dashboard-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .dash-card {
        padding: 10px;
    }

    .dash-card.large {
        grid-column: span 2;
    }

    .dash-card-title {
        font-size: 0.55rem;
    }

    .dash-card-value {
        font-size: 1.1rem;
    }

    .dash-chart {
        height: 40px;
    }

    /* Browser Mockup Extra Small - PREMIUM */
    .browser-header {
        padding: 8px 12px;
        gap: 10px;
    }

    .browser-dots span {
        width: 8px;
        height: 8px;
    }

    .browser-url {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .browser-content {
        padding: 12px;
        min-height: 200px;
    }

    .market-header {
        flex-direction: row;
    }

    .market-search {
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    .market-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .market-card {
        padding: 10px;
    }

    .market-card-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 8px;
    }

    .market-card-icon svg {
        width: 14px;
        height: 14px;
    }

    .market-card h4 {
        font-size: 0.65rem;
    }

    .market-card p {
        font-size: 0.55rem;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .market-price {
        font-size: 0.7rem;
    }

    .market-discount {
        font-size: 0.55rem;
        padding: 2px 5px;
    }
}

@media (max-width: 360px) {
    /* Extra Small Devices - Keep it Premium */
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 170px 16px 50px;
    }

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .page-hero {
        padding: 160px 16px 40px;
    }

    .page-hero h1 {
        font-size: 1.35rem;
    }

    .page-hero-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    /* Laptop Mockup 360px */
    .mockup-container {
        margin-top: 20px;
    }

    .laptop-screen {
        width: 240px;
    }

    .laptop-content {
        min-height: 120px;
    }

    .laptop-header {
        padding: 6px 8px;
    }

    .laptop-dots span {
        width: 6px;
        height: 6px;
    }

    .laptop-title {
        font-size: 0.6rem;
    }

    .app-sidebar {
        width: 35px;
        padding: 8px 5px;
    }

    .sidebar-item {
        height: 20px;
    }

    .mockup-badge {
        font-size: 0.55rem;
        padding: 4px 8px;
    }

    /* Intro Premium 360px */
    .intro-section-premium {
        padding: 50px 0;
    }

    .intro-premium-content h2 {
        font-size: 1.35rem;
    }

    .intro-premium-visual {
        min-height: 250px;
    }

    .intro-visual-container {
        width: 220px;
        height: 220px;
    }

    .intro-central-circle {
        width: 90px;
        height: 90px;
    }

    .circle-number {
        font-size: 1.5rem;
    }

    .orbit-1 { width: 140px; height: 140px; margin: -70px 0 0 -70px; }
    .orbit-2 { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
    .orbit-3 { width: 220px; height: 220px; margin: -110px 0 0 -110px; }

    .orbit-item { width: 30px; height: 30px; }
    .orbit-item svg { width: 14px; height: 14px; }
    .orbit-item-1 { top: -15px; margin-left: -15px; }
    .orbit-item-2 { right: -15px; margin-top: -15px; }
    .orbit-item-3 { bottom: -15px; margin-left: -15px; }

    .floating-stat {
        padding: 8px 12px;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    /* Tablet Mockup 360px - Stay Premium */
    .mockup-tablet {
        max-width: 100%;
    }

    .tablet-frame {
        padding: 8px;
        border-radius: 16px;
    }

    .tablet-home {
        width: 24px;
        height: 24px;
        margin-top: 6px;
    }

    .dashboard-mockup {
        padding: 10px;
    }

    .dashboard-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .dash-card {
        padding: 8px;
    }

    .dash-card-value {
        font-size: 1rem;
    }

    .dash-card-title {
        font-size: 0.5rem;
    }

    .dash-chart {
        height: 35px;
    }

    /* Browser Mockup 360px */
    .browser-header {
        padding: 6px 10px;
    }

    .browser-dots span {
        width: 7px;
        height: 7px;
    }

    .browser-url {
        display: none;
    }

    .browser-content {
        padding: 10px;
        min-height: 180px;
    }

    .market-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .market-search {
        width: 100%;
    }

    .market-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .market-card {
        padding: 8px;
    }

    .market-card-icon {
        width: 26px;
        height: 26px;
        margin-bottom: 6px;
    }

    .market-card-icon svg {
        width: 12px;
        height: 12px;
    }

    .market-card h4 {
        font-size: 0.6rem;
    }

    .market-card p {
        display: none;
    }

    .market-price {
        font-size: 0.65rem;
    }

    .market-discount {
        font-size: 0.5rem;
        padding: 2px 4px;
    }

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

    .stat-item {
        padding: 16px;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.tool-card,
.cert-badge,
.feature-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

/* Stagger animations */
.services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.15s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.25s; }
.services-grid .service-card:nth-child(5) { animation-delay: 0.3s; }
.services-grid .service-card:nth-child(6) { animation-delay: 0.35s; }
