/* ========================================
   CyproFood — Global Styles + Hero v2
   ======================================== */

:root {
    --orange: #E8650A;
    --orange-light: #FF8C38;
    --orange-bright: #FF9A4D;
    --orange-glow: rgba(232, 101, 10, 0.15);
    --bg-primary: #080808;
    --bg-secondary: #0E0E0E;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.55);
    --text-tertiary: rgba(255, 255, 255, 0.35);
    --font-heading: 'General Sans', sans-serif;
    --font-body: 'General Sans', sans-serif;
    --font-ui: 'Inter', sans-serif;
    --nav-height: 72px;
    --container: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Global dot grid + lines pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 200px 200px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========================================
   Navbar — Clean, no border, pure blur
   ======================================== */

.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    height: var(--nav-height);
    width: calc(100% - 48px);
    max-width: var(--container);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-container {
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.nav-logo:hover { opacity: 0.8; }

.logo-icon { width: 34px; height: 34px; }
.logo-icon svg { width: 100%; height: 100%; }

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

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.nav-active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switch */
.lang-switch {
    display: flex;
    gap: 4px;
    margin-right: 12px;
}

.lang-switch .lang-btn {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: none;
    color: var(--text-tertiary);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.04em;
}

.lang-switch .lang-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.lang-switch .lang-btn:hover:not(.active) {
    border-color: var(--border-hover);
    color: var(--text-secondary);
}

.mobile-lang-switch {
    display: flex;
    gap: 8px;
    margin: 24px 0;
}

.mobile-lang-switch .lang-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: none;
    color: var(--text-tertiary);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.mobile-lang-switch .lang-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Nav CTA — glass style with gradient border */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px 7px 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    isolation: isolate;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--orange) 0%, #1a1a1a 40%, var(--orange-light) 70%, var(--orange) 100%);
    background-size: 300% 300%;
    opacity: 0.45;
    z-index: -1;
    transition: opacity 0.4s var(--ease-out-expo);
    animation: glassGlow 6s ease infinite;
}

.nav-cta:hover::before { opacity: 1; }

.nav-cta-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 30px rgba(232, 101, 10, 0.2);
}

.nav-cta:hover .nav-cta-arrow {
    background: rgba(232, 101, 10, 0.3);
    border-color: rgba(232, 101, 10, 0.4);
    transform: rotate(-45deg);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(30px);
    padding: 40px 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active { opacity: 1; pointer-events: auto; }

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-links a {
    display: block;
    padding: 12px 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-links a:hover {
    color: var(--orange);
    padding-left: 16px;
}

.mobile-cta {
    display: inline-flex;
    margin-top: 24px;
    padding: 14px 28px;
    background: var(--orange);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* Mobile menu contact info */
.mobile-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.mobile-contact-item:hover {
    color: var(--text-primary);
}

.mobile-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(232, 101, 10, 0.1);
    border: 1px solid rgba(232, 101, 10, 0.2);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-contact-icon svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
}

/* Hero Background — overflows into next section */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero shape — PNG image, full hero, zoom on scroll */
.hero-shape-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 80%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    animation: shapeReveal 2s var(--ease-out-expo) 0.3s forwards;
}

.hero-shape-img-inner {
    width: 100%;
    height: 100%;
    background: url('assets/shapes/hero-shape.png') center/cover no-repeat;
    mix-blend-mode: lighten;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    transform-origin: center center;
    animation: shapeTilt 12s ease-in-out infinite;
}

@keyframes shapeTilt {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(1.5deg) scale(1.02); }
    50% { transform: rotate(-1deg) scale(1); }
    75% { transform: rotate(1deg) scale(1.01); }
}

@keyframes shapeReveal {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Noise texture overlay */
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}



/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0;
    animation: particleFloat var(--duration) ease-in-out var(--particle-delay) infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    15% { opacity: 0.6; transform: translateY(-20px) scale(1); }
    85% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-150px) scale(0); }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 32px 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

/* Hero Content */
.hero-content { max-width: 700px; }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    border: 1px solid rgba(232, 101, 10, 0.25);
    border-radius: var(--radius-full);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--orange-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    background: rgba(232, 101, 10, 0.05);
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(232, 101, 10, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 101, 10, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(232, 101, 10, 0); }
}

/* Hero Title — text reveal animation */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.title-line-wrap {
    display: block;
    overflow: hidden;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 50%, var(--orange) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* Text reveal animation */
.animate-text-reveal {
    display: block;
    transform: translateY(110%);
    animation: textReveal 1s var(--ease-out-expo) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes textReveal {
    0% { transform: translateY(110%) skewY(4deg); opacity: 0; }
    100% { transform: translateY(0) skewY(0deg); opacity: 1; }
}

/* Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
}

/* ========================================
   CTA Buttons — Aset Style
   ======================================== */

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Glass button base */
.btn-glass {
    position: relative;
    border-radius: var(--radius-full);
    isolation: isolate;
}

/* Gradient border glow wrapper */
.btn-glass::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--orange) 0%, #1a1a1a 40%, var(--orange-light) 70%, var(--orange) 100%);
    background-size: 300% 300%;
    opacity: 0.5;
    z-index: -1;
    transition: opacity 0.4s var(--ease-out-expo);
    animation: glassGlow 6s ease infinite;
}

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

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

/* Primary button — orange solid */
.btn-aset-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 10px 24px;
    background: var(--orange);
    color: white;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(232, 101, 10, 0.3);
}

.btn-arrow-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-expo);
    border: none;
}

.btn-aset-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(232, 101, 10, 0.4);
}

.btn-aset-primary:hover .btn-arrow-circle {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(-45deg);
}

/* Secondary button — dark glass */
.btn-aset-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.btn-aset-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ========================================
   Trust Bar — Glowing capsule like Aset
   ======================================== */

.hero-trust-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.trust-glow-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(232, 101, 10, 0.5);
}

.trust-glow-icon svg { display: none; }

.trust-bar-track {
    display: flex;
    align-items: center;
}

.trust-bar-fill { display: none; }

.trust-bar-text {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.trust-bar-text strong { color: var(--text-primary); }

.trust-globe-icon { display: none; }

/* ========================================
   Stats Strip — Horizontal
   ======================================== */

.hero-stats-strip {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 32px 0;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-col {
    flex: 1;
    padding: 0 24px;
}

.stat-col:first-child { padding-left: 0; }
.stat-col:last-child { padding-right: 0; }

.stat-sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    margin-bottom: 6px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--orange);
}

.stat-suffix {
    color: var(--text-primary);
    font-weight: 600;
}

/* ========================================
   Scroll Indicator
   ======================================== */

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll span {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-tertiary);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 12px;
    background: var(--orange);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    box-shadow: 0 0 8px rgba(232, 101, 10, 0.5);
    animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: -12px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 40px; opacity: 0; }
}

/* ========================================
   Animations
   ======================================== */

.animate-fade-up {
    opacity: 0;
    transform: translateY(35px);
    animation: fadeUp 1s var(--ease-out-expo) forwards;
    animation-delay: var(--delay, 0s);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeLeft 1s var(--ease-out-expo) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .hero-stats-strip { flex-wrap: nowrap; gap: 0; }
    .stat-sep { display: block; height: 40px; }
    .stat-col { flex: 1; padding: 0 16px; }
    .stat-col:first-child { padding-left: 0; }
    .stat-col:last-child { padding-right: 0; }
    .stat-number { font-size: 2rem; }
}

/* Tablet — hide nav links, show burger + keep CTA */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-menu { display: block; }
    .lang-switch { display: none; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }

    .navbar {
        width: calc(100% - 32px);
        top: 12px;
    }

    .nav-cta { display: none; }

    .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
    .hero-container { padding: 40px 20px; }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-aset-primary, .btn-aset-secondary { width: 100%; justify-content: center; }

    .hero-trust-bar { max-width: 100%; }
    .trust-bar-text { font-size: 0.7rem; }
    .hero-shape-img { width: 85%; height: 65%; opacity: 0.7; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.6rem; }
    .hero-stats-strip { flex-direction: row; flex-wrap: nowrap; gap: 0; }
    .stat-col { flex: 1; padding: 0 10px; }
    .stat-col:first-child { padding-left: 0; }
    .stat-col:last-child { padding-right: 0; }
    .stat-sep { display: block; height: 36px; }
    .hero-shape-img { width: 100%; height: 50%; opacity: 0.5; }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-shape-img { width: 75%; height: 75%; }
}

/* ========================================
   Section Badge — Generic
   ======================================== */

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid rgba(232, 101, 10, 0.25);
    border-radius: 999px;
    background: rgba(232, 101, 10, 0.06);
    margin-bottom: 20px;
}

/* ========================================
   About Section
   ======================================== */

.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('assets/img/img-crane-night.jpg') center/cover no-repeat;
    opacity: 0.04;
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
    pointer-events: none;
}

.about-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

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

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

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

.about-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Dim siblings when one card is hovered */
.about-grid:hover .about-card:not(:hover) {
    opacity: 0.45;
    transform: scale(0.98);
}

.about-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232, 101, 10, 0.15);
    border: 1px solid rgba(232, 101, 10, 0.25);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 12px rgba(232, 101, 10, 0.1);
    transition: all 0.4s var(--ease-out-expo);
}

.about-card:hover .about-card-icon {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(232, 101, 10, 0.3);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-card p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

@media (max-width: 768px) {
    .about { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Image Gallery Strip */
.img-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.img-strip-item {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.img-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.img-strip-item:hover img {
    transform: scale(1.05);
}

.img-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.6) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .img-strip { grid-template-columns: repeat(2, 1fr); }
    .img-strip-item { height: 150px; }
}

/* ========================================
   Services / Categories — Pricing card style
   ======================================== */

.services {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.services::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('assets/img/img-port-aerial.jpg') center/cover no-repeat;
    opacity: 0.03;
    mask-image: linear-gradient(to right, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
    pointer-events: none;
}

.services-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

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

.services-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.services-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* Base card — glass style */
.service-card {
    position: relative;
    border-radius: 20px;
    padding: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.service-card-inner {
    background: rgba(12, 12, 12, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 19px;
    padding: 40px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Highlighted card — orange gradient border + bg */
.service-card--highlight {
    background: none;
}

.service-card--highlight::before {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 30%, var(--orange) 60%, rgba(232,101,10,0.3) 100%);
    background-size: 200% 200%;
    animation: borderShimmerServices 6s ease infinite;
}

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

.service-card--highlight .service-card-inner {
    background: linear-gradient(145deg, rgba(232,101,10,0.2) 0%, rgba(12,12,12,0.85) 50%, rgba(12,12,12,0.9) 100%);
}

.service-card--highlight::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(232, 101, 10, 0.15), 0 0 120px rgba(232, 101, 10, 0.05);
    pointer-events: none;
}

.service-badge {
    display: inline-flex;
    align-self: flex-end;
    padding: 5px 14px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--orange);
    border: 1px solid rgba(232, 101, 10, 0.35);
    border-radius: var(--radius-full);
    background: rgba(232, 101, 10, 0.08);
    margin-bottom: 12px;
}

.service-percent {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.service-card--highlight .service-percent {
    background: linear-gradient(135deg, #fff 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    flex: 1;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.service-list li svg { flex-shrink: 0; }

/* CTA buttons */
.service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    text-align: center;
}

.service-cta--primary {
    background: var(--orange);
    color: white;
}

.service-cta--primary::before {
    display: none;
}

.service-cta--primary .btn-arrow-circle {
    background: rgba(0, 0, 0, 0.25);
    border: none;
}

.service-cta--primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(232, 101, 10, 0.35);
}

.service-cta--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.service-cta--secondary .btn-arrow-circle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card-inner { padding: 32px 24px; }
}

/* ========================================
   Features — Alternating rows
   ======================================== */

.features {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.features-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 40px;
    position: sticky;
    top: 100px;
    background: var(--bg-primary);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.feature-row:nth-child(2) { z-index: 2; }
.feature-row:nth-child(3) { z-index: 3; }
.feature-row:nth-child(4) { z-index: 4; }
.feature-row:nth-child(5) { z-index: 5; }
.feature-row:nth-child(6) { z-index: 6; }
.feature-row:nth-child(7) { z-index: 7; }

.feature-row--reverse .feature-visual {
    order: 2;
}

.feature-row--reverse .feature-text {
    order: 1;
}

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

.feature-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

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

.feature-number {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.1em;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.feature-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 440px;
}

@media (max-width: 768px) {
    .features { padding: 80px 0; }
    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 20px;
        top: 84px;
    }
    .feature-visual svg { max-width: 300px; }
}

/* ========================================
   Brands — Infinite scroll
   ======================================== */

.brands {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    overflow: hidden;
}

.brands-header {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 32px;
}

.brands-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.scroll-row {
    position: relative;
    overflow: hidden;
    padding: 8px 0;
    mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.scroll-track {
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
}

.scroll-left {
    animation: scrollLeft 35s linear infinite;
}

.scroll-right {
    animation: scrollRight 40s linear infinite;
}

.scroll-left-slow {
    animation: scrollLeft 50s linear infinite;
}

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

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

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: none;
    border: none;
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-pill img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
}

@media (max-width: 768px) {
    .brands { padding: 80px 0; }
    .brand-pill { padding: 8px 16px; font-size: 0.78rem; }
}

/* ========================================
   Catalog CTA
   ======================================== */

.catalog-cta {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.catalog-cta-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.catalog-card {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, #0e0e0e 0%, #0a0a0a 100%);
    overflow: hidden;
}

.catalog-card-glow {
    position: absolute;
    top: -40%;
    left: 30%;
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(232, 101, 10, 0.25) 0%, rgba(232, 101, 10, 0.05) 50%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.catalog-card-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 60px;
}

.catalog-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.catalog-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.catalog-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 420px;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: var(--orange);
    color: white;
    font-family: var(--font-ui);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out-expo);
    margin-top: 8px;
    box-shadow: 0 0 40px rgba(232, 101, 10, 0.25);
}

.catalog-btn:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 50px rgba(232, 101, 10, 0.4);
}

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

.catalog-visual svg {
    width: 100%;
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
    .catalog-cta { padding: 80px 0; }
    .catalog-card-content {
        grid-template-columns: 1fr;
        padding: 48px 32px;
    }
    .catalog-visual { order: -1; }
    .catalog-visual svg { max-width: 200px; }
}

/* ========================================
   Partners Section
   ======================================== */

.partners {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: url('assets/img/img-ship-sunset.jpg') center/cover no-repeat;
    opacity: 0.04;
    mask-image: linear-gradient(to right, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
    pointer-events: none;
}

.partners-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
}

.partners-left {
    position: sticky;
    top: 120px;
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.partners-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.partners-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 16px;
}

.partners-stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--orange);
    line-height: 1;
}

.partners-stat-label {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.partners-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.partners-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partners-col:nth-child(2) {
    margin-top: 40px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px 24px;
    backdrop-filter: blur(16px);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.partner-card-accent {
    position: absolute;
    top: 0;
    left: 24px;
    width: 40px;
    height: 3px;
    background: var(--orange);
    border-radius: 0 0 3px 3px;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.partner-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    padding: 4px;
    object-fit: contain;
    margin-bottom: 12px;
}

.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.partner-type {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    display: block;
    margin-bottom: 12px;
}

.partner-card p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .partners { padding: 80px 0; }
    .partners-container { grid-template-columns: 1fr; gap: 48px; }
    .partners-left { position: static; }
    .partners-right { grid-template-columns: 1fr; }
    .partners-col:nth-child(2) { margin-top: 0; }
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.contact-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

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

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

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232, 101, 10, 0.1);
    border: 1px solid rgba(232, 101, 10, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
}

.contact-item-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 4px;
    display: block;
}

.contact-item-value {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Contact form */
.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

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

.contact-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: var(--text-tertiary);
}

.contact-input:focus {
    border-color: rgba(232, 101, 10, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(232, 101, 10, 0.08);
}

textarea.contact-input {
    min-height: 130px;
    resize: vertical;
}

.contact-submit {
    width: 100%;
    padding: 16px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    margin-top: 8px;
    box-shadow: 0 0 30px rgba(232, 101, 10, 0.2);
}

.contact-submit:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(232, 101, 10, 0.35);
}

@media (max-width: 768px) {
    .contact { padding: 80px 0; }
    .contact-container { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-card { padding: 28px 20px; }
}

/* ========================================
   Footer
   ======================================== */

.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 48px;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-logo-c {
    color: var(--orange);
    font-size: 1.5rem;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

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

.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.footer-col a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-mfa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px 24px;
    border-top: 1px solid var(--border);
    margin-top: 40px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius);
    transition: background var(--transition);
}

.footer-mfa:hover {
    background: rgba(255,255,255,0.05);
}

.footer-mfa-logo {
    height: 32px;
    width: auto;
    opacity: 0.85;
    transition: opacity var(--transition);
}

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

.footer-mfa span {
    color: var(--text-tertiary);
    font-size: 0.78rem;
}

.footer-mfa a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
    font-size: 0.9rem;
}

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

.footer-mfa a strong {
    color: var(--text-primary);
    font-weight: 700;
}

.footer-mfa-text {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin-top: 10px;
}

.footer-mfa-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.legal-mfa-note {
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-mfa-note strong {
    color: var(--text-primary);
}

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

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
}

/* ========================================
   Decorative Corner Shapes
   ======================================== */

.corner-shape {
    position: fixed;
    width: 400px;
    height: 400px;
    background: url('assets/shapes/corner-shape.png') center/contain no-repeat;
    pointer-events: none;
    z-index: -1;
    opacity: 0.15;
    mix-blend-mode: lighten;
}

.corner-shape--right {
    right: -80px;
    transform: rotate(0deg);
}

.corner-shape--left {
    left: -80px;
    transform: scaleX(-1);
}

@media (max-width: 768px) {
    .corner-shape { width: 250px; height: 250px; opacity: 0.1; }
}

/* ========================================
   Floating Gradient Orbs
   ======================================== */

.bg-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
    animation: orbDrift 20s ease-in-out infinite;
}

@keyframes orbDrift {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(40px, -30px);
    }
    50% {
        transform: translate(-30px, 45px);
    }
    75% {
        transform: translate(35px, 40px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Grid light pulses */
.grid-pulse {
    position: fixed;
    z-index: -1;
    pointer-events: none;
    border-radius: 2px;
    opacity: 0.8;
    box-shadow: 0 0 8px rgba(232, 101, 10, 0.3);
}

.grid-pulse[style*="height: 2px"] {
    background: linear-gradient(90deg, transparent, rgba(232, 101, 10, 0.7), rgba(255, 140, 56, 0.9), rgba(232, 101, 10, 0.7), transparent);
}

.grid-pulse[style*="width: 2px"] {
    background: linear-gradient(180deg, transparent, rgba(232, 101, 10, 0.7), rgba(255, 140, 56, 0.9), rgba(232, 101, 10, 0.7), transparent);
}

@keyframes pulseRight {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateX(100vw); opacity: 0; }
}

@keyframes pulseLeft {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateX(-100vw); opacity: 0; }
}

@keyframes pulseDown {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes pulseUp {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 680px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%) translateY(20px);
}

.cookie-banner.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner-inner p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.cookie-banner-inner a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn--accept {
    background: var(--orange);
    color: white;
}

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

.cookie-btn--decline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn--decline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-actions { width: 100%; }
    .cookie-btn { flex: 1; }
}

/* ========================================
   Legal Pages
   ======================================== */

/* Simple legal navbar */
.legal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 32px;
}

.legal-nav-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.legal-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.legal-nav-back:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Legal hero header */
.legal-hero {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(232, 101, 10, 0.08) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 140px 32px 50px;
    margin-bottom: 60px;
}

.legal-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}

.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-hero p {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* Two-column layout */
.legal-page {
    position: relative;
    z-index: 1;
    padding: 0 0 80px;
}

.legal-layout {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sticky sidebar TOC */
.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-toc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-toc-title {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.legal-toc a {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.legal-toc a:hover {
    color: var(--text-primary);
}

/* Legal notice box */
.legal-notice {
    display: flex;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(232, 101, 10, 0.04);
    border: 1px solid rgba(232, 101, 10, 0.12);
    border-radius: 14px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.legal-notice svg { flex-shrink: 0; margin-top: 2px; }

.legal-notice p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Content styles */
.legal-content section {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content section:last-child {
    border-bottom: none;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

.legal-content a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content code {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.88rem;
    color: var(--orange-light);
}

@media (max-width: 768px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .legal-sidebar { position: static; }
    .legal-hero { padding: 40px 20px 36px; }
}

/* ========================================
   Partner Page
   ======================================== */

.partner-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 32px 80px;
    overflow: hidden;
}

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

.partner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.partner-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.partner-hero-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 540px;
}

.partner-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 24px;
    padding: 20px 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    backdrop-filter: blur(16px);
}

.partner-stat { text-align: center; }

.partner-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--orange);
}

.partner-stat-lbl {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.partner-stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

/* Partner sections shared */
.partner-section-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

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

.partner-section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 500;
    color: var(--text-primary);
}

/* Benefits grid */
.partner-why {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.partner-benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(16px);
    transition: all 0.4s var(--ease-out-expo);
}

.partner-card-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.95) 100%);
    border-radius: 20px;
    z-index: 0;
    transition: background 0.4s ease;
}

.partner-benefit-card:hover .partner-card-bg-overlay {
    background: linear-gradient(to bottom, rgba(8,8,8,0.8) 0%, rgba(8,8,8,0.9) 100%);
}

.partner-benefit-card .about-card-icon,
.partner-benefit-card h3,
.partner-benefit-card p {
    position: relative;
    z-index: 1;
}

.partner-benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.partner-benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.partner-benefit-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Steps */
.partner-steps {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.partner-steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.partner-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 36px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
}

.partner-step-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 16px;
}

.partner-step h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.partner-step p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.partner-step-arrow {
    flex-shrink: 0;
    opacity: 0.4;
}

.partner-trust-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.partner-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

/* Form section */
.partner-form-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.partner-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.partner-form-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.partner-form-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 500;
    color: var(--text-primary);
}

.partner-form-info > p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.partner-form-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.partner-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

select.contact-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: var(--text-tertiary);
}

select.contact-input:valid { color: var(--text-primary); }

.form-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-categories-label {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-tertiary);
}

.form-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.form-checkbox input[type="checkbox"]:checked {
    background: var(--orange);
    border-color: var(--orange);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .partner-hero { padding: 100px 20px 60px; min-height: auto; }
    .partner-hero-stats { flex-direction: row; gap: 12px; padding: 14px 20px; flex-wrap: nowrap; }
    .partner-stat-num { font-size: 1.4rem; }
    .partner-stat-lbl { font-size: 0.6rem; }
    .partner-stat-sep { width: 1px; height: 32px; }
    .partner-benefits-grid { grid-template-columns: 1fr; }
    .partner-steps-grid { flex-direction: column; }
    .partner-step-arrow { transform: rotate(90deg); }
    .partner-trust-row { flex-direction: column; gap: 16px; align-items: center; }
    .partner-form-layout { grid-template-columns: 1fr; }
    .partner-form-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .form-checkboxes { grid-template-columns: 1fr; }
}

/* ========================================
   Distribution Map Page
   ======================================== */

.dist-map-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.dist-map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.dist-map-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.dist-map-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.dist-map-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.romania-map {
    width: 100%;
    height: auto;
}

/* Region delivery cards */
.dist-regions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dist-regions-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.dist-region-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.dist-region-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.dist-region-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.4;
    flex-shrink: 0;
}

.dist-region-dot--fast { background: #22c55e; opacity: 1; }
.dist-region-dot--med { background: var(--orange); opacity: 0.7; }

.dist-region-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dist-region-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.dist-region-info strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dist-region-info span {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.map-region {
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-region:hover {
    fill: rgba(232, 101, 10, 0.35);
    filter: drop-shadow(0 0 12px rgba(232, 101, 10, 0.3));
}

.dist-legend {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.dist-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dist-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E8650A;
    flex-shrink: 0;
}

.dist-legend-dot--med { opacity: 0.5; }
.dist-legend-dot--light { opacity: 0.25; }

/* Delivery Table */
.dist-table-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.dist-table-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 48px 40px;
}

.dist-table-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.dist-table {
    width: 100%;
    border-collapse: collapse;
}

.dist-table thead th {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dist-table thead th:last-child { text-align: center; }

.dist-table tbody td {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.dist-table tbody td:last-child { text-align: center; }

.dist-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.dist-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(232, 101, 10, 0.1);
    color: var(--orange);
    border: 1px solid rgba(232, 101, 10, 0.2);
}

.dist-badge--fast {
    background: rgba(232, 101, 10, 0.2);
    color: var(--orange-light);
    border-color: rgba(232, 101, 10, 0.4);
}

.dist-badge--med {
    background: rgba(232, 101, 10, 0.15);
    color: var(--orange);
    border-color: rgba(232, 101, 10, 0.3);
}

@media (max-width: 768px) {
    .dist-table-card { padding: 24px 16px; }
    .dist-table { font-size: 0.85rem; }
    .dist-table thead { display: none; }
    .dist-table tbody td { display: block; padding: 8px 0; border: none; }
    .dist-table tbody td:first-child { padding-top: 16px; }
    .dist-table tbody td:last-child { padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); text-align: left; }
}

/* Distribution hero background */
.dist-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/img/img-port.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.dist-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    z-index: 0;
}

/* Image-backed delivery method cards */
.dist-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.dist-method-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s var(--ease-out-expo);
}

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

.dist-method-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.dist-method-card:hover .dist-method-img { opacity: 0.5; }

.dist-method-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.4) 50%, rgba(8,8,8,0.2) 100%);
}

.dist-method-content {
    position: relative;
    z-index: 1;
    padding: 28px 24px;
}

.dist-method-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.dist-method-content p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .dist-methods-grid { grid-template-columns: 1fr; }
    .dist-method-card { min-height: 180px; }
    .dist-method-card:first-child { grid-row: auto; }
}

.dist-methods {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.dist-cta {
    position: relative;
    z-index: 1;
    padding: 0 0 100px;
}

@media (max-width: 768px) {
    .dist-map-layout { grid-template-columns: 1fr; }
    .dist-map-card { position: static; }
}

/* ========================================
   Catalogue Page
   ======================================== */

.cat-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.cat-block {
    margin-bottom: 48px;
}

.cat-block h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.brand-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.brand-tag img {
    width: 18px;
    height: 18px;
    border-radius: 3px;
}

/* ========================================
   Page Transition — fade to black
   ======================================== */

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #080808;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* Page load fade-in */
body {
    animation: pageIn 0.5s ease forwards;
}

@keyframes pageIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .scroll-track {
        animation: none !important;
    }
    .grid-pulse {
        display: none !important;
    }
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certifications {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.cert-card {
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(232, 101, 10, 0.15);
}

.cert-logo {
    margin-bottom: 20px;
    height: 90px;
    display: flex;
    align-items: center;
}

.cert-logo img {
    max-height: 90px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

.cert-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.cert-card p {
    font-size: 13px;
    color: #5a6a78;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.cert-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 16px;
}

.cert-checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.cert-checks svg {
    flex-shrink: 0;
}

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

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