/*
Theme Name: Upfue
Theme URI: https://upfue.com
Author: Upfue
Author URI: https://upfue.com
Description: Modern digital agency WordPress theme for Upfue
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: upfue
Tags: business, digital-agency, modern, responsive
*/

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

:root {
    --color-black: #0A0A0A;
    --color-dark: #111111;
    --color-dark-2: #1A1A1A;
    --color-gray-800: #2D2D2D;
    --color-gray-600: #555555;
    --color-gray-400: #888888;
    --color-gray-200: #D4D4D4;
    --color-gray-100: #F0F0F0;
    --color-gray-50: #F8F8F8;
    --color-white: #FFFFFF;
    --color-accent: #FF6B2B;
    --color-accent-dark: #E05A1E;
    --color-green: #22C55E;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

    --container-max: 1280px;
    --container-padding: 24px;

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-dark-2);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.text-xs   { font-size: 11px; }
.text-sm   { font-size: 13px; }
.text-base { font-size: 15px; }
.text-lg   { font-size: 18px; }
.text-xl   { font-size: 22px; }
.text-2xl  { font-size: 28px; }
.text-3xl  { font-size: 36px; }
.text-4xl  { font-size: 48px; }
.text-5xl  { font-size: 60px; }

.font-medium  { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold    { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-muted  { color: var(--color-gray-400); }
.text-white  { color: var(--color-white); }

/* =========================================
   LAYOUT
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 96px 0;
}

.section-sm {
    padding: 64px 0;
}

/* =========================================
   BUTTONS
   ========================================= */
/* =========================================
   BUTTON SYSTEM — unified across all sections
   Base → .btn
   Variants → .btn-primary  .btn-secondary  .btn-ghost
   Sizes    → (default)     .btn-lg
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease,
                color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* PRIMARY — dark fill, white text (main CTAs) */
.btn-primary,
.btn-white    /* legacy alias: white bg on dark sections */
{
    background: var(--color-black);
    color: #fff;
    border-color: var(--color-black);
}
.btn-primary:hover,
.btn-white:hover {
    background: #222;
    border-color: #222;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

/* SECONDARY — outline on light bg */
.btn-secondary {
    background: transparent;
    color: var(--color-black);
    border-color: #d0d0d0;
}
.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #bbb;
    color: var(--color-black);
}

/* OUTLINE — outline on dark bg */
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

/* GHOST — text-only, no border, subtle hover */
.btn-ghost {
    background: transparent;
    color: var(--color-black);
    border-color: transparent;
    padding: 10px 16px;
}
.btn-ghost:hover {
    background: #f2f2f2;
    color: var(--color-black);
}

/* SIZE: large */
.btn-lg {
    padding: 15px 28px;
    font-size: 15px;
    border-radius: 12px;
}

/* SIZE: small */
.btn-sm {
    padding: 9px 16px;
    font-size: 13px;
    border-radius: 8px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =========================================
   SECTION LABELS
   ========================================= */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray-400);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--color-gray-400);
    flex-shrink: 0;
}

.section-label-white {
    color: rgba(255,255,255,0.5);
}

.section-label-white::before {
    background: rgba(255,255,255,0.4);
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Slightly more opaque when scrolled */
#site-header.scrolled {
    background: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(0,0,0,0.07);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 0;
    position: relative;
}

/* ── Logo ── */
.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
}

.site-logo .logo-img,
.footer-logo .logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ── Primary Nav – absolutely centred ── */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.primary-nav a {
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    padding: 7px 20px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
    letter-spacing: -0.005em;
    white-space: nowrap;
    text-decoration: none;
}

.primary-nav a:hover {
    color: #000;
    background: rgba(0,0,0,0.05);
}

.primary-nav a.current-menu-item {
    color: #000;
    font-weight: 600;
}

/* ── Dropdown menu ── */
.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-item.has-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.dropdown-chevron {
    display: inline-flex;
    align-items: center;
    opacity: 0.55;
    transition: transform 0.2s ease;
}
.nav-item.has-dropdown:hover .dropdown-chevron,
.nav-item.has-dropdown.is-open .dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
}
.dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 8px;
    min-width: 200px;
    z-index: 1001;
}
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.is-open .dropdown-menu {
    display: flex;
}
.dropdown-link {
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    padding: 9px 14px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
    display: block;
}
.dropdown-link:hover,
.dropdown-link.current-menu-item {
    background: rgba(0,0,0,0.05);
    color: #000;
}
.dropdown-link.current-menu-item {
    font-weight: 600;
}

/* ── Header right actions ── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

/* "Let's Talk" — black rounded-rectangle button matching design */
.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a0a0a;
    color: #ffffff !important;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 10px 20px;
    border-radius: 10px;          /* moderate rounded rect, NOT pill */
    transition: background var(--transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-header-cta:hover {
    background: #222222;
    color: #fff !important;
}

.btn-header-cta .arrow {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    transition: transform var(--transition);
}

.btn-header-cta:hover .arrow {
    transform: translateX(2px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--color-gray-100);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--color-black);
    border-radius: 2px;
    position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--color-black);
    border-radius: 2px;
    left: 0;
}

.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after  { top: 6px; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    margin-top: 0;           /* nav overlays the hero */
    min-height: 84vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--color-white);
    position: relative;
}

.hero-inner {
    display: flex;
    width: 100%;
    align-items: stretch;
    min-height: 84vh;
}

/* Left: white content panel */
.hero-content {
    flex: 0 0 46%;
    max-width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 68px;     /* clear the overlaid transparent nav */
    padding-bottom: 72px;
    padding-right: 0;
    padding-left: 0;
    position: relative;
    z-index: 2;
    background: var(--color-white);
}

/* Computed using the container's left offset so content aligns with container */
@media (min-width: 1280px) {
    .hero-content {
        padding-left: calc((100vw - 1280px) / 2 + 24px);
        padding-right: 20px;
    }
}
@media (max-width: 1279px) {
    .hero-content {
        padding-left: 24px;
        padding-right: 20px;
    }
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4A6CF7;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--color-black);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 400px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Hero primary CTA — inherits from .btn system */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 12px;
    border: 1.5px solid var(--color-black);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    background: #222;
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-hero-primary .btn-arrow {
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    transition: transform var(--transition);
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(3px);
}

/* "See our work" — text link */
.hero-text-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark-2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    text-decoration: none;
}

.hero-text-link:hover {
    color: var(--color-black);
    gap: 10px;
}

/* Right: full-bleed image panel */
.hero-image-panel {
    flex: 0 0 54%;
    max-width: 54%;
    position: relative;
    overflow: hidden;
}

.hero-image-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
}

/* Gradient fade on left edge of image blending into white */
.hero-image-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* =========================================
   TRUSTED BY / LOGOS STRIP
   ========================================= */
.logos-section {
    padding: 20px 0 25px;
    background: var(--color-white);
}

.logos-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logos-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: var(--font-primary);
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
}

.logos-row .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.logos-row .logo-item:first-child {
    justify-content: flex-start;
}

.logos-row .logo-item:last-child {
    justify-content: flex-end;
}

.logos-row .logo-item img {
    height: 68px;
    width: auto;
    max-width: 175px;
    object-fit: contain;
    display: block;
    /* filter: grayscale(1) brightness(0.5); */
    transition: filter var(--transition);
}

.logos-row .logo-item:hover img {
    filter: grayscale(1) brightness(0.25);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 80px 0 0;
    background: var(--color-white);
}

.services-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 40px;
}

.services-header-left {
    max-width: 520px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--color-black);
}

.section-title-white {
    color: var(--color-white);
}

/* ── Alternating grid — no borders, light content bg ── */
.services-grid {
    border-radius: 16px;
    overflow: hidden;
    /* no border — clean open layout matching design */
}

/* Each row — flex, 310px fixed height */
.service-row {
    display: flex;
    height: 310px;
    overflow: hidden;
}

.service-row + .service-row {
    border-top: 1px solid #ebebeb;
}

/* Even rows: row-reverse pushes image to right */
.service-row-2,
.service-row-4 {
    flex-direction: row-reverse;
}

/* Image cell — fixed 52%, no shrink/grow */
.service-img-cell {
    flex: 0 0 50%;
    width: 50%;
    height: 310px;
    overflow: hidden;
    position: relative;
}

.service-img-cell img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
    transform: scale(1.02);
}

.service-img-cell:hover img {
    transform: scale(1.04);
}

/* Content cell — flex: 1 fills exactly the remaining space, zero gap */
.service-content-cell {
    flex: 1 1 auto;
    min-width: 0;
    height: 310px;
    background: #F7F7F7;
    padding: 36px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Service icon — black rounded square */
.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon-box svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.service-num {
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
    display: block;
    letter-spacing: 0.02em;
}

.service-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.25;
}

.service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 340px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    text-decoration: none;
    transition: gap var(--transition);
}

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

/* Icon header row (icon + number side by side) */
.service-icon-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.service-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    flex-shrink: 0;
}

/* =========================================
   PORTFOLIO SECTION
   ========================================= */
/* =========================================
   OUR WORK / PORTFOLIO SECTION
   ========================================= */
.portfolio-section {
    padding: 96px 0;
    background: var(--color-white);
}

.portfolio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 40px;
}

.portfolio-header .section-title {
    margin-bottom: 0;
}

/* "View all case studies" — uses shared btn system */
.btn-view-cases {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--color-black);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 1.5px solid var(--color-black);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-view-cases:hover {
    background: #222;
    border-color: #222;
    transform: translateY(-1px);
}

/* ── Slider wrapper ── */
.portfolio-slider-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.portfolio-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.portfolio-track:active {
    cursor: grabbing;
}

/* Each card = exactly 1/3 of wrapper minus gaps */
.portfolio-track .portfolio-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

/* Slider controls row */
.portfolio-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

/* Dots */
.portfolio-slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, width 0.25s;
}

.slider-dot.active {
    background: var(--color-black);
    width: 24px;
    border-radius: 4px;
}

/* Arrow buttons */
.portfolio-slider-arrows {
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-black);
}

.slider-arrow:hover {
    background: var(--color-black);
    border-color: var(--color-black);
    color: #fff;
}

.slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.slider-arrow:disabled:hover {
    background: #fff;
    border-color: #e0e0e0;
    color: var(--color-black);
}

.portfolio-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebebeb;
    transition: all var(--transition);
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

/* Image area */
.portfolio-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-gray-100);
    display: block;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.04);
}

/* Card content */
.portfolio-card-info {
    padding: 22px 24px 20px;
}

.portfolio-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 8px;
}

.portfolio-desc {
    font-size: 14px;
    color: var(--color-gray-400);
    line-height: 1.55;
    margin: 0;
}

/* Arrow link bottom-right of card */
.portfolio-arrow-link {
    position: absolute;
    bottom: 22px;
    right: 24px;
}

.portfolio-arrow-link a {
    font-size: 18px;
    color: var(--color-black);
    text-decoration: none;
    line-height: 1;
    transition: transform 0.2s ease;
    display: inline-block;
}

.portfolio-card:hover .portfolio-arrow-link a {
    transform: translate(2px, -2px);
}

/* =========================================
   STATS / ABOUT SECTION
   ========================================= */
/* =========================================
   WHY CHOOSE US / STATS SECTION
   ========================================= */
.stats-section {
    padding: 64px 0;
    background: #0d0d0d;
    color: var(--color-white);
}

/* Single horizontal row: text | divider | stat | divider | stat | divider | stat */
.stats-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Left text block */
.stats-left {
    flex: 0 0 300px;
    padding-right: 56px;
}

.stats-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--color-white);
    margin: 8px 0 14px;
}

.stats-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* "Learn more about us" — outline on dark bg */
.btn-stats-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.btn-stats-white:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
}

/* Vertical divider */
.stats-divider {
    flex: 0 0 1px;
    width: 1px;
    height: 100px;
    background: rgba(255,255,255,0.12);
    margin: 0 56px;
}

/* Each stat column */
.stat-item {
    flex: 1;
    min-width: 0;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* =========================================
   TEAM SECTION
   ========================================= */
/* =========================================
   TEAM SECTION
   ========================================= */
.team-section {
    padding: 80px 0;
    background: #fff;
}

/* Two-column: left heading + right cards */
.team-inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.team-left {
    flex: 0 0 280px;
    padding-top: 4px;
}

.team-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--color-black);
    margin-top: 10px;
    margin-bottom: 0;
}

/* Right column: button + 4 cards */
.team-right {
    flex: 1;
    min-width: 0;
}

.team-right-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

/* "Meet the team" */
.btn-meet-team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--color-black);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 1.5px solid var(--color-black);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-meet-team:hover {
    background: #222;
    border-color: #222;
    transform: translateY(-1px);
}

/* 4-column card grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Card */
.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Photo area — fixed height, light gray bg */
.team-card-image {
    height: 200px;
    overflow: hidden;
    background: #f0eeeb;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.03);
}

/* Placeholder: light warm gray fill */
.team-img-placeholder {
    width: 100%;
    height: 200px;
    background: #ece9e4;
}

/* Info row below photo */
.team-card-info {
    padding: 14px 16px 16px;
}

.team-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.team-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: -0.015em;
    margin-bottom: 3px;
}

.team-role {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* LinkedIn "in" badge */
.team-linkedin {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
    color: #666;
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s;
}

.team-linkedin:hover {
    color: #0077b5;
}

/* =========================================
   TESTIMONIAL SECTION
   ========================================= */
/* =========================================
   TESTIMONIAL SECTION
   ========================================= */

/* Full-bleed section — bg image covers entire area */
.testimonial-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark gradient overlay: very dark left → fades to transparent right */
.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 8, 8, 0.97) 0%,
        rgba(8, 8, 8, 0.97) 42%,
        rgba(8, 8, 8, 0.65) 65%,
        rgba(8, 8, 8, 0.15) 100%
    );
    z-index: 1;
}

/* Container sits above overlay — inherits standard gutters */
.testimonial-section .container {
    position: relative;
    z-index: 2;
}

.testi-body {
    padding: 52px 0 40px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Slides — constrained to left ~48% */
.testi-slides {
    max-width: 48%;
    margin-bottom: 36px;
}

.testi-slide {
    display: none;
}

.testi-slide.active {
    display: block;
}

/* Large open-quote mark */
.testi-quote-mark {
    font-size: 64px;
    line-height: 0.55;
    color: rgba(255, 255, 255, 0.9);
    font-family: Georgia, serif;
    margin-bottom: 20px;
    display: block;
}

/* Quote text */
.testi-quote {
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
}

/* Author */
.testi-author strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.testi-author span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

/* Bottom bar: arrows LEFT, logos CENTER */
.testi-bottom-bar {
    display: flex;
    align-items: center;
    gap: 32px;
}

.testi-bottom-bar .testi-logos {
    flex: 1;
    justify-content: center;
}

/* Arrows */
.testi-arrows {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.testi-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.testi-arrow:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Logos — white, centered in the bottom bar */
.testi-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.testi-logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    opacity: 0.6;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.testi-logos img:hover {
    opacity: 1;
}

/* =========================================
   CTA SECTION
   ========================================= */
/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 72px 0 64px;
    background: #fff;
    border-bottom: 1px solid #ebebeb;
}

/* Horizontal layout: text left, button right */
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-text {
    flex: 1;
    min-width: 0;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-black);
    margin: 0 0 14px;
}

.cta-desc {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* CTA section button — large primary */
.btn-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-black);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: 1.5px solid var(--color-black);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-dark span {
    font-size: 17px;
    line-height: 1;
}

.btn-cta-dark:hover {
    background: #222;
    border-color: #222;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
    background: #fff;
    padding: 4px 0;
    border-top: 1px solid var(--color-gray-100);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

/* Logo: image + decorative asterisk icon */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}


.footer-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 13px;
    color: #999;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-copy {
    font-size: 12px;
    color: #bbb;
    white-space: nowrap;
}

/* =========================================
   SVG ICONS INLINE
   ========================================= */
.icon-arrow-right {
    display: inline-block;
    transition: transform var(--transition);
}

a:hover .icon-arrow-right,
button:hover .icon-arrow-right {
    transform: translateX(3px);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
    .hero-title { font-size: 46px; }
    .section-title { font-size: 36px; }
    .stats-title { font-size: 36px; }
    .cta-title { font-size: 44px; }
}

@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
    }
    .hero-content {
        flex: none;
        max-width: 100%;
        padding: 110px 24px 56px; /* extra top padding clears the nav */
        min-height: auto;
    }
    .hero-image-panel {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 380px;
        position: relative;
    }
    .hero-image-panel img {
        position: absolute;
    }
    .hero-title { font-size: 44px; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5 { grid-column: span 1; }

    /* Slider: show 2 cards on tablet */
    .portfolio-track .portfolio-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    /* Stats: stack on tablet */
    .stats-inner {
        flex-wrap: wrap;
        gap: 32px;
    }
    .stats-left { flex: 0 0 100%; padding-right: 0; }
    .stats-divider { display: none; }
    .stat-item { flex: 0 0 calc(33% - 16px); }

    /* Team: stack on tablet */
    .team-inner { flex-direction: column; gap: 32px; }
    .team-left { flex: none; }
    .team-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    .section { padding: 64px 0; }
    .hero-section { padding: 56px 0; }
    .hero-title { font-size: 38px; }
    .section-title { font-size: 30px; }
    .cta-title { font-size: 32px; }
    .cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .stats-title { font-size: 24px; }

    .primary-nav { display: none; }
    .mobile-toggle { display: flex; }

    .services-header,
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    /* Slider: show 1 card on mobile */
    .portfolio-track .portfolio-card {
        flex: 0 0 100%;
    }

    /* Stats: full width each on mobile */
    .stats-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .stats-divider { display: none; }
    .stat-item { flex: none; width: 100%; }
    .stat-number { font-size: 40px; }

    /* Team: 2-col on mobile */
    .team-inner { flex-direction: column; gap: 24px; }
    .team-left { flex: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }

    .logos-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .logos-divider { display: none; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }

    .testi-body { padding: 44px 32px 36px; }
    .testi-slides { max-width: 70%; }
    .testi-quote { font-size: 18px; }
    .testi-logos { gap: 20px; }
    .testi-logos img { height: 16px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; }
}

/* =========================================
   CONTACT PAGE
   ========================================= */

/* Hero — full-width bg image, left text, centered button */
.contact-hero {
    position: relative;
    min-height: 42vh;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-gray-100);
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(255,255,255,0.78) 0%,
        rgba(255,255,255,0.62) 35%,
        rgba(255,255,255,0.28) 60%,
        rgba(255,255,255,0.04) 100%);
    z-index: 0;
}
.contact-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}
.contact-hero-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 110px 0 60px;
}
.contact-hero-text {
    flex: 1 1 auto;
    text-align: left;
}
.contact-hero-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--color-black);
    margin-top: 8px;
    margin-bottom: 14px;
    max-width: 480px;
}
.contact-hero-desc {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.65;
    max-width: 380px;
}

/* Info cards — stacked column on right */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-lg);
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 220px;
}
.contact-info-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    flex-shrink: 0;
}
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-gray-400);
    margin-bottom: 2px;
}
.contact-info-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-black);
    text-decoration: none;
}
.contact-info-value:hover { color: var(--color-accent); }

/* Main section */
.contact-main {
    background: #fff;
    padding: 80px 0 100px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

/* Form */
.contact-form-wrap {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-xl);
    padding: 48px 48px 44px;
}
.contact-form-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: 6px;
}
.contact-form-subtitle {
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 32px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}
.contact-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: -0.01em;
}
.contact-form .required { color: var(--color-accent); }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-primary);
    color: var(--color-black);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--color-gray-400); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-black);
    box-shadow: 0 0 0 3px rgba(10,10,10,0.07);
}
.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* Service chips */
.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}
.chip {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.chip input[type="checkbox"] {
    display: none;
}
.chip span {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-gray-200);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-600);
    background: #fff;
    transition: all 0.15s ease;
    white-space: nowrap;
    width: auto;
    display: inline-block;
}
.chip:hover span {
    border-color: var(--color-black);
    color: var(--color-black);
}
.chip input:checked + span {
    background: var(--color-black);
    border-color: var(--color-black);
    color: #fff;
}

/* Submit button */
.contact-submit {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 24px;
    border-radius: var(--radius-md);
    background: var(--color-black);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-submit:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.form-notice {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-size: 12px;
    color: var(--color-gray-400);
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}
.contact-sidebar-card {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
}
.sidebar-card-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: 22px;
}
.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.sidebar-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.sidebar-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-black);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.sidebar-list strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 2px;
}
.sidebar-list p {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* Sidebar stats */
.contact-sidebar-stats {
    display: flex;
    gap: 0;
    background: var(--color-black);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.sidebar-stat {
    flex: 1;
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.sidebar-stat:last-child { border-right: none; }
.sidebar-stat-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.sidebar-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Socials */
.contact-socials {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-xl);
    padding: 22px 28px;
}
.contact-socials-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray-400);
    margin-bottom: 12px;
}
.contact-socials-row {
    display: flex;
    gap: 10px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1.5px solid var(--color-gray-200);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-black);
    text-decoration: none;
    transition: all 0.15s ease;
}
.social-link:hover {
    border-color: var(--color-black);
    transform: translateY(-1px);
}

/* Contact page responsive */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-sidebar { position: static; }
    .contact-sidebar-stats { max-width: 380px; }
}
@media (max-width: 1024px) {
    .contact-hero-content { flex-direction: column; align-items: flex-start; gap: 28px; }
    .contact-info-cards { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .contact-hero-title { font-size: 32px; }
    .contact-hero-content { padding: 100px 20px 48px; }
    .contact-info-cards { flex-direction: column; }
    .contact-form-wrap { padding: 32px 24px 28px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-sidebar-stats { max-width: 100%; }
}

/* =========================================
   WMS PAGE
   ========================================= */

:root {
    --wms-blue: #2563EB;
    --wms-blue-dark: #1D4ED8;
    --wms-blue-light: #EFF6FF;
}

/* WMS Hero */
.wms-hero {
    position: relative;
    background-color: #ffffff;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
}
.wms-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.95) 30%, rgba(255,255,255,0.6) 42%, rgba(255,255,255,0.0) 52%);
    z-index: 0;
}
.wms-hero .container {
    position: relative;
    z-index: 1;
}
.wms-hero-inner {
    display: flex;
    align-items: center;
    padding: 110px 0 72px;
    min-height: 62vh;
}
.wms-hero-left {
    flex: 0 0 52%;
    max-width: 52%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* Label — matches hero-eyebrow exactly */
.wms-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4A6CF7;
    margin-bottom: 20px;
    display: block;
}
/* Heading — matches hero-title scale */
.wms-hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.06;
    color: var(--color-black);
    margin-bottom: 20px;
}
/* Description — matches hero-desc */
.wms-hero-desc {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 36px;
}
.wms-hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
/* Primary — matches btn-hero-primary (black) */
.btn-wms-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-black);
    color: var(--color-white);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
}
.btn-wms-primary:hover {
    background: #222;
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
/* Secondary — matches hero-text-link (plain text) */
.btn-wms-secondary {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark-2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
}
.btn-wms-secondary:hover {
    color: var(--color-black);
    gap: 10px;
}

/* Trust badges */
.wms-trust-badges {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.wms-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-600);
    line-height: 1.3;
}
.wms-badge svg {
    color: var(--wms-blue);
    flex-shrink: 0;
}


/* WMS Logos trust bar */
.wms-trust-bar {
    background: #fff;
    /* border-bottom: 1px solid var(--color-gray-100); */
    padding: 24px 0 28px;
}
.wms-trust-bar-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-400);
    margin-bottom: 20px;
}
.wms-trust-bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.wms-trust-bar-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}
.wms-trust-bar-logos img {
    height: 60px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 0.2s ease, filter 0.2s ease;
}
.wms-trust-bar-logos img:hover {
    opacity: 0.85;
    filter: grayscale(0);
}
.wms-edg-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid #E0E7FF;
    border-radius: 14px;
    padding: 14px 20px;
    flex-shrink: 0;
    min-width: 220px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.07);
}
.wms-edg-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wms-edg-icon svg {
    color: #2563EB;
    width: 22px;
    height: 22px;
}
.wms-edg-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 3px;
}
.wms-edg-text span {
    font-size: 12px;
    color: var(--color-gray-600);
    line-height: 1.45;
}

/* WMS Problems section */
.wms-problems {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid var(--color-gray-100);
}
.wms-problems-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.wms-problems-left {
    flex: 0 0 300px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wms-problem-cards {
    display: flex;
    flex: 1;
    gap: 14px;
}
.wms-problem-card {
    flex: 1;
    padding: 24px 22px;
    background: #F7F8FA;
    border-radius: 14px;
    border: 1px solid var(--color-gray-100);
}
.wms-problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.wms-problem-icon svg { width: 24px; height: 24px; }
.wms-problem-icon.blue   { background: #EEF2FF; color: #4F46E5; }
.wms-problem-icon.green  { background: #ECFDF5; color: #059669; }
.wms-problem-icon.red    { background: #FFF1F2; color: #E11D48; }
.wms-problem-icon.purple { background: #F5F3FF; color: #7C3AED; }
.wms-problem-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    line-height: 1.3;
}
.wms-problem-card p {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.65;
}

/* WMS Workflow section */
.wms-workflow {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid var(--color-gray-100);
}
.wms-workflow-header {
    margin-bottom: 52px;
}
.wms-workflow-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.wms-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
/* Arrow connector between steps */
.wms-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 1px;
    background: linear-gradient(to right, #CBD5E1, #CBD5E1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='2'%3E%3Cline x1='0' y1='1' x2='100%25' y2='1' stroke='%23CBD5E1' stroke-width='1.5' stroke-dasharray='6 4'/%3E%3C/svg%3E");
}
/* Arrowhead */
.wms-step:not(:last-child)::before {
    content: '›';
    position: absolute;
    top: 26px;
    right: -6px;
    font-size: 18px;
    color: #94A3B8;
    line-height: 1;
    z-index: 1;
}
.wms-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid #CBD5E1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.wms-step-icon svg {
    width: 28px;
    height: 28px;
    color: #2563EB;
}
.wms-step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    padding: 0 8px;
}
.wms-step-desc {
    font-size: 12px;
    color: var(--color-gray-600);
    line-height: 1.6;
    padding: 0 8px;
}

/* WMS Features section */
.wms-features {
    background: #F8F9FB;
    padding: 80px 0 88px;
    border-bottom: 1px solid var(--color-gray-100);
}
.wms-features-header {
    margin-bottom: 48px;
}
.wms-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.wms-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--color-gray-100);
    border-radius: 16px;
    padding: 20px;
}
.wms-feature-img {
    flex: 0 0 200px;
    width: 200px;
    height: 140px;
    border-radius: 10px;
    background: #F1F3F6;
    overflow: hidden;
    flex-shrink: 0;
}
.wms-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
}
.wms-feature-text {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}
.wms-feature-text h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    line-height: 1.3;
}
.wms-feature-text p {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.65;
    margin-bottom: 16px;
}
.wms-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #2563EB;
    text-decoration: none;
    transition: gap 0.2s ease;
}
.wms-feature-link:hover { gap: 8px; }

/* WMS Stats / Why section */
.wms-why {
    background: #0A0A0A;
    padding: 64px 0;
}
.wms-why-header {
    margin-bottom: 40px;
}
.wms-why-header .section-label {
    color: #818CF8;
}
.wms-why-header .section-label::before {
    background: #818CF8;
}
.wms-why-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.wms-why-stat {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 36px 0 0;
    border-right: 1px solid rgba(255,255,255,0.1);
    margin-right: 36px;
}
.wms-why-stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.wms-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wms-why-icon svg { width: 24px; height: 24px; }
.wms-why-icon.gray   { background: #2A2A2A; color: #aaa; }
.wms-why-icon.green  { background: #166534; color: #4ADE80; }
.wms-why-icon.purple { background: #4C1D95; color: #C084FC; }
.wms-why-icon.gold   { background: #78350F; color: #FCD34D; }
.wms-why-stat-body {}
.wms-why-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.wms-why-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
.wms-why-stat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.55;
}

/* WMS responsive */
@media (max-width: 1024px) {
    .wms-hero-inner { min-height: auto; padding: 100px 0 56px; }
    .wms-hero-left { flex: none; max-width: 100%; }
    .wms-hero-title { font-size: 44px; }
}
@media (max-width: 768px) {
    .wms-hero-title { font-size: 34px; }
    .wms-trust-badges { gap: 16px; }
}

/* ── WMS EDG Grant Section ── */
.wms-edg-section {
    background: #F0F4FF;
    padding: 56px 0;
    border-top: 1px solid #E0E7FF;
}
.wms-edg-inner {
    display: flex;
    align-items: center;
    gap: 64px;
}
.wms-edg-left {
    flex: 0 0 320px;
}
.wms-edg-desc {
    font-size: 14px;
    color: var(--color-dark-2);
    margin-bottom: 24px;
    line-height: 1.6;
}
.wms-edg-cards {
    flex: 1;
    display: flex;
    gap: 16px;
}
.wms-edg-card {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid #E0E7FF;
}
.wms-edg-card-icon {
    width: 48px;
    height: 48px;
    background: #E0EAFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wms-blue);
    margin-bottom: 14px;
}
.wms-edg-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 6px;
}
.wms-edg-card-desc {
    font-size: 13px;
    color: var(--color-dark-2);
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .wms-edg-inner { flex-direction: column; gap: 40px; }
    .wms-edg-left { flex: none; width: 100%; }
}
@media (max-width: 640px) {
    .wms-edg-cards { flex-direction: column; gap: 24px; }
}

/* ── WMS Demo CTA Section ── */
.wms-demo-section {
    background: #fff;
    padding: 72px 0;
    border-top: 1px solid var(--color-gray-100);
}
.wms-demo-inner {
    display: flex;
    align-items: flex-start;
    gap: 56px;
}
.wms-demo-left {
    flex: 0 0 340px;
    padding-top: 8px;
}
.wms-demo-desc {
    font-size: 14px;
    color: var(--color-dark-2);
    line-height: 1.65;
    margin-bottom: 24px;
}
.wms-demo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wms-demo-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-dark-2);
    font-weight: 500;
}
.wms-demo-list li svg {
    flex-shrink: 0;
    color: var(--wms-blue);
}
.wms-demo-right {
    flex: 1;
}
.wms-demo-card {
    background: #F8F9FB;
    border: 1px solid var(--color-gray-100);
    border-radius: 16px;
    padding: 36px 32px;
}
.wms-demo-form-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 6px;
}
.wms-demo-form-subtitle {
    font-size: 13px;
    color: var(--color-dark-2);
    margin-bottom: 24px;
}
.wms-demo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}
.wms-demo-row-2 {
    grid-template-columns: repeat(2, 1fr);
}
.wms-demo-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark-2);
    margin-bottom: 6px;
}
.wms-demo-field input,
.wms-demo-field select {
    width: 100%;
    box-sizing: border-box;
    height: 42px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 13px;
    color: var(--color-black);
    background: #fff;
    outline: none;
    transition: border-color 0.18s;
    appearance: none;
    -webkit-appearance: none;
}
.wms-demo-field input:focus,
.wms-demo-field select:focus {
    border-color: var(--wms-blue);
}
.wms-demo-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
.wms-demo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.wms-demo-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9CA3AF;
}
.wms-demo-submit {
    white-space: nowrap;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .wms-demo-inner { flex-direction: column; }
    .wms-demo-left { flex: none; width: 100%; }
    .wms-demo-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .wms-demo-row { grid-template-columns: 1fr; }
    .wms-demo-row-2 { grid-template-columns: 1fr; }
    .wms-demo-footer { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
/* Up — default */
.reveal {
    transform: translateY(28px);
}
/* Left */
.reveal--left {
    transform: translateX(-36px);
}
/* Right */
.reveal--right {
    transform: translateX(36px);
}
/* Scale */
.reveal--scale {
    transform: scale(0.94) translateY(16px);
}
/* Fade only */
.reveal--fade {
    transform: none;
}
/* Visible state */
.reveal.is-visible {
    opacity: 1;
    transform: none !important;
}
/* Staggered delays */
.reveal[data-delay="100"] { transition-delay: 0.10s; }
.reveal[data-delay="150"] { transition-delay: 0.15s; }
.reveal[data-delay="200"] { transition-delay: 0.20s; }
.reveal[data-delay="250"] { transition-delay: 0.25s; }
.reveal[data-delay="300"] { transition-delay: 0.30s; }
.reveal[data-delay="400"] { transition-delay: 0.40s; }
.reveal[data-delay="500"] { transition-delay: 0.50s; }
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none !important;
        transition: none;
    }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* ── Hero ── */
.about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 80px;
}
.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 40%, rgba(255,255,255,0.5) 70%, rgba(255,255,255,0.1) 100%);
    z-index: 0;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero__content { max-width: 620px; }
.about-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0A0A0A;
    margin: 16px 0 20px;
}
.about-hero__title em { font-style: normal; color: #4A6CF7; }
.about-hero__desc {
    font-size: 18px;
    color: #555555;
    line-height: 1.65;
    max-width: 500px;
}

/* ── Stats bar ── */
.about-stats {
    background: #fff;
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
    padding: 48px 0;
}
.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.about-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    border-radius: 12px;
    transition: background 0.2s;
}
.about-stat-item:hover { background: var(--color-gray-50); }
.about-stat__number {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #4A6CF7;
    line-height: 1;
}
.about-stat__label {
    font-size: 14px;
    color: #555555;
    font-weight: 500;
}

/* ── Story ── */
.about-story {
    padding: 100px 0;
    background: #fff;
}
.about-story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-story__body {
    font-size: 16px;
    line-height: 1.75;
    color: #555555;
    margin: 24px 0 36px;
}
.about-founded {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px 24px;
    background: var(--color-gray-50);
    border-radius: 12px;
    border: 1px solid var(--color-gray-100);
}
.about-founded__year {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0A0A0A;
}
.about-founded__text {
    font-size: 14px;
    color: #555555;
    font-weight: 500;
}
.about-story__image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}
.about-story__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.about-story__badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    border: 1px solid var(--color-gray-100);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #0A0A0A;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    white-space: nowrap;
}

/* ── Values ── */
.about-values {
    padding: 100px 0;
    background: var(--color-gray-50);
}
.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-value-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--color-gray-100);
    transition: box-shadow 0.2s, transform 0.2s;
}
.about-value-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.about-value__icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
}
.about-value__title {
    font-size: 17px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 10px;
}
.about-value__desc {
    font-size: 14px;
    line-height: 1.65;
    color: #555555;
}

/* ── Team ── */
.about-team {
    padding: 100px 0;
    background: #fff;
}
.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-100);
    transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.team-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #F0F0F0;
    min-height: 220px;
}
.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.team-card:hover .team-card__image img { transform: scale(1.04); }
.team-card__linkedin {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #0077b5;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s;
}
.team-card:hover .team-card__linkedin {
    opacity: 1;
    transform: translateY(0);
}
.team-card__info {
    padding: 20px;
}
.team-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 4px;
}
.team-card__role {
    font-size: 13px;
    color: #555555;
    font-weight: 500;
}

/* ── CTA ── */
.about-cta {
    padding: 100px 0;
    background: #0A0A0A;
}
.about-cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.about-cta__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
}
.about-cta__desc {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 36px;
}
.about-cta .btn-primary {
    background: #fff;
    color: #0A0A0A;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.about-cta .btn-primary:hover { opacity: 0.9; }

/* ── About responsive ── */
@media (max-width: 1024px) {
    .about-values__grid,
    .about-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .about-story__inner { grid-template-columns: 1fr; gap: 40px; }
    .about-story__image { order: -1; }
    .about-story__image img { height: 280px; }
    .about-story__badge { display: none; }
    .about-values__grid,
    .about-team__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .about-stats__grid { grid-template-columns: 1fr 1fr; }
    .about-values__grid,
    .about-team__grid { grid-template-columns: 1fr; }
}
