/* ============================================
   DISTI MIDDLE EAST — ASBIS Layout Match
   ============================================ */

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

:root {
    --blue-900: #0b1a2e;
    --blue-800: #0f2340;
    --blue-700: #143054;
    --blue-600: #1a3f6b;
    --blue-500: #2563eb;
    --blue-400: #3b82f6;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ============================================
   TOP BAR
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar {
    background: var(--blue-800);
    display: none;
}
@media (min-width: 1280px) {
    .topbar { display: block; }
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
}

.topbar-links {
    display: flex;
    gap: 32px;
    flex-grow: 1;
}

.topbar-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.topbar-links a:hover { color: #fff; }

.topbar-countries { margin-left: auto; position: relative; }

.country-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 12px 12px 0 0;
    font-family: inherit;
}
.country-btn:hover { background: var(--blue-700); }

.country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
}
.country-dropdown.open { display: block; }

.country-dropdown-inner {
    background: var(--blue-700);
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    min-width: 480px;
    border-radius: 0 0 12px 12px;
}

.country-dropdown-inner a {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.country-dropdown-inner a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--white);
    border-bottom: 2px solid var(--gray-100);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.navbar-logo {
    flex-shrink: 0;
    margin-right: 48px;
}

.navbar-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.navbar-links {
    display: none;
    align-items: flex-end;
    gap: 4px;
    margin-right: auto;
}
@media (min-width: 1280px) {
    .navbar-links { display: flex; }
}

.navbar-links > li > a {
    display: block;
    padding: 20px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 0.01em;
}
.navbar-links > li > a:hover {
    color: var(--gray-900);
}

/* Nav Dropdown */
.has-dropdown { position: relative; }

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
}

.has-dropdown:hover .nav-dropdown { display: block; }

.nav-dropdown-inner {
    background: var(--gray-50);
    border-radius: 0 0 12px 12px;
    padding: 8px;
    min-width: 280px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.nav-dropdown-inner a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}
.nav-dropdown-inner a:hover {
    background: var(--white);
    color: var(--blue-500);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--blue-500);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}
.btn-nav-cta:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
@media (min-width: 1280px) {
    .hamburger { display: none; }
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 80px 24px 24px;
    overflow-y: auto;
}
.mobile-menu.open { display: block; }

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-inner a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    min-height: 520px;
    position: relative;
}
.hero-slide.active {
    display: block;
    animation: fadeSlide 0.6s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.hero-slide-bg-gradient {
    width: 100%;
    height: 100%;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-slide-text {
    color: #fff;
    max-width: 680px;
}

.hero-slide-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-slide-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-slide-controls {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--transition);
    gap: 8px;
}

.btn-white {
    background: var(--white);
    color: var(--blue-900);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-primary {
    background: var(--blue-500);
    color: #fff;
}
.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 32px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.hero-arrow:hover {
    background: rgba(255,255,255,0.22);
}

.hero-progress {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    overflow: hidden;
}

.hero-progress-bar {
    height: 100%;
    background: #fff;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

/* ============================================
   BENEFITS BAR
   ============================================ */
.benefits-bar {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

.benefits-list {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.benefits-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.benefits-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
}

.benefits-item span {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.4;
}
.benefits-item strong {
    color: var(--gray-900);
    font-weight: 700;
}

/* ============================================
   BUSINESS CARDS GRID (ASBIS pattern)
   ============================================ */
.section {
    padding: 64px 0;
}
.section-gray { background: var(--gray-50); }

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

/* Large card spans 2 cols, 1 row */
.business-card--large {
    grid-column: span 2;
}
/* Small cards span 1 col, 1 row */
.business-card--small {
    grid-column: span 1;
}

.business-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    cursor: pointer;
    transition: var(--transition);
}
.business-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Card Colors */
.business-card--blue { background: #e8f0fe; }
.business-card--dark { background: var(--blue-900); color: #fff; }
.business-card--gray { background: var(--gray-100); }
.business-card--navy { background: #0f2340; color: #fff; }
.business-card--teal { background: #e0f2fe; }

/* Card Decoration (lines + boxes like ASBIS) */
.business-card-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-line {
    position: absolute;
    background: rgba(0,0,0,0.04);
}
.deco-line:nth-child(1) {
    width: 1px;
    height: 100%;
    left: 30%;
}
.deco-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 65%;
}

.deco-box {
    position: absolute;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 8px;
}
.deco-box:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
}
.deco-box:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 40px;
    right: 90px;
}
.deco-box:nth-child(5) {
    width: 80px;
    height: 30px;
    bottom: 20px;
    right: 20px;
}

.business-card--dark .deco-line { background: rgba(255,255,255,0.05); }
.business-card--dark .deco-box { border-color: rgba(255,255,255,0.05); }
.business-card--navy .deco-line { background: rgba(255,255,255,0.05); }
.business-card--navy .deco-box { border-color: rgba(255,255,255,0.05); }

/* Card Body */
.business-card-body {
    position: relative;
    z-index: 2;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.business-card-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.business-card--small .business-card-text h2 {
    font-size: 1.15rem;
}

.business-card-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.75;
}

.business-card-img {
    margin-top: 24px;
    object-fit: contain;
    align-self: flex-end;
}
.business-card-img--large {
    width: 200px;
    height: 200px;
    opacity: 0.15;
}
.business-card-img--small {
    width: 140px;
    height: 140px;
    opacity: 0.12;
}

.business-card--blue .business-card-img { opacity: 0.2; }

/* ============================================
   AI BANNER
   ============================================ */
.ai-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 48px 0;
}

.ai-banner-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.ai-banner-text p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.75;
}

.ai-banner-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-graphic {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-graphic-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(37,99,235,0.15);
    animation: spinSlow 25s linear infinite;
}
.ai-graphic-ring--2 {
    inset: 20px;
    border-color: rgba(37,99,235,0.1);
    animation-direction: reverse;
    animation-duration: 35s;
}

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

.ai-graphic-icon {
    font-size: 4rem;
    position: relative;
    z-index: 2;
}

/* ============================================
   CTA BANNER (ASBIS pattern)
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 0;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-500) 0%, #1d4ed8 50%, #1e40af 100%);
}
.cta-banner-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 100% at 0% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 100% at 100% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-banner-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.brand-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.brand-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.brand-card-img {
    flex-shrink: 0;
}

.brand-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.brand-card-body {
    padding: 28px;
}

.brand-card-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.brand-list li {
    padding: 5px 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-600);
}

.brand-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue-500);
}
.brand-link:hover { color: #1d4ed8; }

/* ============================================
   AWARDS SECTION
   ============================================ */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.award-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.award-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.award-card-inner {
    padding: 32px 24px;
    text-align: center;
}

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

.award-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.award-card p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.news-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.news-card-img {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.news-card-title {
    padding: 20px;
}

.news-card-title h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
}

.news-more {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

.news-more a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.news-more a:hover { color: #1d4ed8; }

/* ============================================
   FOOTER (ASBIS pattern)
   ============================================ */
.footer {
    background: var(--blue-800);
    color: #fff;
    padding: 48px 0 40px;
}

.footer-logo-row {
    margin-bottom: 32px;
}

.footer-logo {
    display: inline-block;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.footer-nav a:hover { color: #fff; }

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 32px 0 32px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-right: auto;
}

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

.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-legal a:hover { color: #fff; }

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

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--blue-500);
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1280px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .business-card--large { grid-column: span 2; }
    .business-card--small { grid-column: span 1; }

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

@media (max-width: 1024px) {
    .ai-banner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .ai-banner-text p { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .hero-slide { min-height: 420px; }
    .hero-slide-content { min-height: 420px; padding: 40px 0; }
    .hero-slide-text h1 { font-size: 2rem; }
    .hero-slider-controls { display: none; }

    .benefits-list {
        flex-wrap: wrap;
        gap: 16px;
    }
    .benefits-item { flex: 0 0 calc(50% - 8px); }

    .cards-grid {
        grid-template-columns: 1fr;
    }
    .business-card--large,
    .business-card--small { grid-column: span 1; }
    .business-card { min-height: 260px; }

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

    .brand-card {
        grid-template-columns: 1fr;
    }

    .footer-nav { gap: 16px; }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .about-stats-row {
        gap: 24px;
        flex-wrap: wrap;
    }

    .product-section {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .product-section-reverse .product-content { order: 1; }
    .product-section-reverse .product-visual { order: 2; }

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

    .two-col-grid,
    .three-col-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 480px) {
    .hero-slide-text h1 { font-size: 1.6rem; }
    .hero-slide-text p { font-size: 0.95rem; }

    .benefits-item { flex: 0 0 100%; }

    .awards-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 { font-size: 1.5rem; }
}

/* ============================================
   INNER PAGE STYLES
   ============================================ */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 40%, var(--blue-700) 100%);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    max-width: 700px;
}

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    line-height: 1.7;
}

/* Section Heading (inner pages) */
.section-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Product Section */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.product-content p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.75;
    font-size: 0.95rem;
}

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

.product-icon {
    font-size: 8rem;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.06));
}

.product-section-reverse .product-content { order: 2; }
.product-section-reverse .product-visual { order: 1; }

/* Checklist */
.checklist {
    list-style: none;
    margin-bottom: 28px;
}

.checklist li {
    padding: 9px 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
}

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

/* Card Badge */
.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(37,99,235,0.06);
    color: var(--blue-500);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 650;
    margin-bottom: 18px;
}

/* Two Col Grid */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.mission-card:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.mission-card h3 {
    font-size: 1.2rem;
    font-weight: 750;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.mission-card p {
    color: var(--gray-500);
    line-height: 1.75;
    font-size: 0.93rem;
}

/* Three Col Grid */
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: var(--transition);
}
.why-card:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.why-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(37,99,235,0.04));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    margin-bottom: 14px;
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Four Col Grid */
.four-col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 34px 26px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.feature-card:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 18px;
}

.feature-card h4 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 0.86rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* Partners Track */
.partners-track {
    overflow: hidden;
    padding: 24px 0;
}

.partners-slide {
    display: flex;
    gap: 24px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

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

.partner-logo {
    flex-shrink: 0;
    padding: 16px 32px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-500);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: var(--transition);
}
.partner-logo:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

/* About Page */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-story-text p {
    color: var(--gray-500);
    margin-bottom: 18px;
    line-height: 1.75;
    font-size: 0.95rem;
}

.about-stats-row {
    display: flex;
    gap: 44px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-200);
}

.about-stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue-500);
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-stat-label {
    font-size: 0.84rem;
    color: var(--gray-500);
    margin-top: 6px;
    font-weight: 500;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    border: 2px dashed var(--gray-200);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 40px;
    line-height: 1.75;
}

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

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

.contact-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    font-size: 0.95rem;
    color: var(--gray-800);
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 0.84rem;
    font-weight: 650;
    color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

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

.btn-full { width: 100%; }

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

.location-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.location-card:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.location-flag {
    font-size: 3rem;
    display: block;
    margin-bottom: 18px;
}

.location-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.location-card > p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 4px;
}
