:root {
    --primary: #365B6D;
    --primary-light: #4a7a90;
    --primary-dark: #243e4c;
    --accent: #e8f4f8;
    --accent2: #c5e3ef;
    --text: #1a2530;
    --text-muted: #6b8090;
    --surface: #ffffff;
    --surface2: #f4f8fa;
    --border: #dde8ed;
    --highlight: #43c6ac;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--surface);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────── */
.ww-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}

.ww-nav.scrolled {
    box-shadow: 0 4px 24px rgba(54, 91, 109, 0.10);
}

.ww-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.ww-logo img {
    height: 40px;
    border-radius: 6px;
}

.ww-logo span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.ww-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.ww-nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.ww-nav-links a:hover {
    color: var(--primary);
    background: var(--accent);
}

.ww-nav-links .dropdown {
    position: relative;
}

.ww-nav-links .dropdown>a::after {
    content: ' ▼';
    font-size: 0.7rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(54, 91, 109, 0.14);
    min-width: 240px;
    padding: 0.5rem;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text);
}

.dropdown-menu a .dm-icon {
    color: var(--primary);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-menu a:hover {
    background: var(--surface2);
    color: var(--primary);
}

.dropdown-menu a span.dm-icon {
    font-size: 1rem;
}

.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.55rem 1.2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    transition: background 0.2s, transform 0.2s !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ─── HERO ────────────────────────────── */
.ww-hero {
    min-height: 100vh;
    padding: 7rem 2rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f0f7fa 0%, #ffffff 55%, #e8f4f8 100%);
}

/* Decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #c5e3ef, transparent);
    top: -100px;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #43c6ac44, transparent);
    bottom: 0px;
    left: -80px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.05);
    }
}

/* Dot grid pattern */
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #365b6d18 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.ww-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    border: 1px solid var(--accent2);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--highlight);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.4);
    }
}

.ww-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
    letter-spacing: -0.5px;
}

.ww-hero h1 em {
    font-style: normal;
    color: var(--primary);
    position: relative;
}

.ww-hero h1 em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    right: 0;
    height: 4px;
    background: var(--highlight);
    border-radius: 2px;
    opacity: 0.5;
}

.ww-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 480px;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.3s ease both;
}

.hero-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: white;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(54, 91, 109, 0.06);
}

.hero-chip i {
    font-size: 0.75rem;
    color: var(--highlight);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.4s ease both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(54, 91, 109, 0.25);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(54, 91, 109, 0.3);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(54, 91, 109, 0.1);
}

/* Hero right: visual card stack */
.hero-visual {
    position: relative;
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(54, 91, 109, 0.18);
    display: block;
}

.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(54, 91, 109, 0.14);
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
    animation: cardFloat 5s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    bottom: -18px;
    left: -18px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    top: -18px;
    right: -18px;
    animation-delay: 2s;
}

.hero-floating-card .fc-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.fc-icon.green {
    background: #e8f9f3;
}

.fc-icon.blue {
    background: var(--accent);
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ─── TRUST BAR ───────────────────────── */
.trust-bar {
    background: var(--primary);
    padding: 1.25rem 2rem;
    overflow: hidden;
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--highlight);
    font-size: 0.9rem;
}

.trust-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

/* ─── SERVICES ────────────────────────── */
.ww-services {
    padding: 6rem 2rem;
    background: var(--surface);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-label {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.svc-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(54, 91, 109, 0.12);
    border-color: var(--primary-light);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-icon {
    width: 52px;
    height: 52px;
    background: var(--surface2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    transition: background 0.25s, transform 0.25s;
    position: relative;
    color: var(--primary);
}

.svc-card:hover .svc-icon {
    background: var(--primary);
    transform: scale(1.05);
    color: white;
}

.svc-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.svc-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

.svc-arrow {
    margin-top: 1.25rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    transition: opacity 0.25s, gap 0.25s;
}

.svc-card:hover .svc-arrow {
    opacity: 1;
    gap: 0.5rem;
}

/* ─── HOW WE WORK ─────────────────────── */
.ww-process {
    padding: 6rem 2rem;
    background: var(--surface2);
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.process-new-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
}

.process-new-steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 10%;
    right: 10%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
    z-index: 0;
}

.process-new-step {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.process-new-step.visible {
    opacity: 1;
    transform: none;
}

.step-num {
    width: 52px;
    height: 52px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.process-new-step:hover .step-num {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(54, 91, 109, 0.25);
}

.process-new-step h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.process-new-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── CASE STUDY ──────────────────────── */
.ww-case {
    padding: 6rem 2rem;
    background: var(--surface);
}

.case-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.case-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff3cd;
    color: #856404;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.case-inner h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.case-inner>div>p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.case-tag {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
}

.case-quote {
    background: var(--surface2);
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.case-quote q {
    font-style: italic;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.65;
    display: block;
    margin-bottom: 0.5rem;
}

.case-quote footer {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.case-img {
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 24px 60px rgba(54,91,109,0.15); */
}

.case-img img {
    width: 100%;
    display: block;
}

/* ─── STATS ───────────────────────────── */
.ww-stats {
    background: var(--primary);
    padding: 5rem 2rem;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-num span {
    color: var(--highlight);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ─── WHY WITHWEB ─────────────────────── */
.ww-why {
    padding: 6rem 2rem;
    background: var(--surface2);
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-list {
    margin-top: 2rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

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

.why-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    transition: background 0.25s, border-color 0.25s;
}

.why-item:hover .why-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.why-item:hover .why-icon i {
    color: white;
}

.why-icon i {
    color: var(--primary);
    transition: color 0.25s;
}

.why-item h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.why-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(54, 91, 109, 0.1);
}

.why-card.featured {
    background: var(--primary);
    border-color: var(--primary);
    grid-column: span 2;
}

.why-card-icon {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    display: block;
    color: var(--primary);
}

.why-card.featured .why-card-icon {
    color: rgba(255, 255, 255, 0.85);
}

.why-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.why-card.featured h4 {
    color: white;
}

.why-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.why-card.featured p {
    color: rgba(255, 255, 255, 0.75);
}

/* ─── INNOVATION ──────────────────────── */
.ww-innovation {
    padding: 6rem 2rem;
    background: var(--surface);
}

.innovation-grid {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.inno-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
    background: var(--surface);
}

.inno-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(54, 91, 109, 0.12);
}

.inno-img {
    height: 200px;
    overflow: hidden;
}

.inno-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.inno-card:hover .inno-img img {
    transform: scale(1.05);
}

.inno-body {
    padding: 1.5rem;
}

.inno-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.inno-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.inno-body p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ─── CTA BAND ────────────────────────── */
.ww-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ww-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.ww-cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
    margin-bottom: 1rem;
}

.ww-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    font-weight: 600;
    transition: border-color 0.25s, background 0.25s;
}

.btn-cta-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
}

/* ─── FOOTER CONTACT ──────────────────── */
.ww-footer-contact {
    background: var(--surface2);
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 2px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.footer-bottom {
    background: var(--surface2);
    border-top: 1px solid var(--border);
    padding: 1.25rem 2rem;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ─── ANIMATIONS ──────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s, transform 0.6s;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: none;
}

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .ww-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-visual {
        display: none;
    }

    .ww-hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    .ww-hero h1 {
        font-size: 2.4rem;
    }

    .process-new-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-new-steps::before {
        display: none;
    }

    .case-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ww-nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .trust-bar-inner {
        gap: 1.5rem;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .process-new-steps {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .why-visual {
        grid-template-columns: 1fr;
    }

    .why-card.featured {
        grid-column: span 1;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
    }
}