/* =========================
   VIXION DESIGN SYSTEM - WHITE & BLACK/GRAY
========================= */

:root {
    --vx-bg: #ffffff;
    --vx-dark: #111111;
    --vx-gray: #555555;
    --vx-muted: #888888;
    --vx-primary: #111111;
    --vx-white: #ffffff;
    --vx-radius: 28px;
    --vx-max-width: 1240px;
    --vx-transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    background: var(--vx-bg);
    color: var(--vx-dark);
    line-height: 1.6;
}

/* Container */
.vx-container {
    max-width: var(--vx-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--vx-transition);
}

.vx-form-btn:hover {
    background: #333333;
}

.cta-btns {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* BOTTOM ROW */
.vx-contact-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* CTA CARD */
.vx-contact-cta {
    background: #f5f5f5;
    color: #000;
    border-radius: 32px;
    padding: 48px;
}

.vx-contact-cta h3 {
    font-size: 32px;
    margin-bottom: 14px;
}

.vx-contact-cta p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 28px;
}

.vx-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #000000;
    color: #fff;
    border-radius: 40px;
    font-weight: 500;
    transition: var(--vx-transition);
}

.vx-cta-btn:hover {
    background: #f0f0f0;
    color: #111111;
}

/* FOOTER CARD */
.vx-footer-card {
    background: #000;
    color: #ffffff;
    border-radius: 32px;
    padding: 48px;
    display: grid;
    gap: 24px;
}

/* Brand */
.vx-footer-brand h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.vx-footer-brand span {
    font-size: 14px;
    opacity: 0.8;
}

/* Links */
.vx-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.vx-footer-links a {
    font-size: 14px;
    color: #cccccc;
}

.vx-footer-links a:hover {
    color: #fff;
}

/* Socials */
.vx-footer-socials {
    display: flex;
    gap: 14px;
}

.vx-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: #fff;
}

/* Copy */
.vx-footer-copy {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 12px;
}

/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .vx-contact-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vx-contact-bottom {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

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

    .vx-contact-info h2 {
        font-size: 30px;
    }

    .vx-contact-cta h3 {
        font-size: 26px;
    }

}


/* Buttons */
.vx-btn-outline {
    padding: 12px 26px;
    border: 1px solid var(--vx-primary);
    border-radius: 40px;
    color: var(--vx-primary);
    font-weight: 500;
}

.vx-btn-outline:hover {
    background: var(--vx-primary);
    color: #fff;
}

/* =========================
   FIXED / STICKY HEADER
========================= */

.vx-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: all 0.3s ease;
}

/* When scrolled */
.vx-header-fixed.scrolled {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Prevent content hiding under header */
body {
    padding-top: 96px;
}


/* =========================
   HEADER – PREMIUM PILL NAV
========================= */

.vx-header {
    padding: 24px 0 !important;
    background: #000000;
    /* position: relative; */
    z-index: 100;
}

.vx-header-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* Logo */
.vx-logo a {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.02em;
}

/* Center Pill Navigation */
.vx-nav-pill {
    justify-self: center;
    /*background: #f5f5f5;*/
    border-radius: 60px;
    padding: 10px 28px;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);*/
}

.vx-nav-list {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    margin: 0px !important;
}

/* Nav Links */
.vx-nav-list a {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    padding: 8px 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Hover + Active */
.vx-nav-list a:hover,
.vx-nav-list a.active {
    background: #e5e5e5;
    color: #111111;
}

/* Right Action */
.vx-header-actions {
    display: flex;
    align-items: center;
}

/* CTA Button */
.vx-header-btn {
    padding: 12px 26px;
    background: #111111;
    color: #fff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.vx-header-btn:hover {
    background: #333333;
}

/* =========================
   HEADER RESPONSIVE
========================= */

@media (max-width: 900px) {

    .vx-header-wrap {
        grid-template-columns: auto auto;
    }

    .vx-nav-pill {
        display: none;
        /* later mobile menu */
    }

}

/* =========================
   FOOTER STYLES
========================= */
.vx-footer {
    padding: 40px 0 40px;
    background: #111111;
    color: #cfcfcf;
    margin-top: 0;
}

.vx-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.vx-footer-brand h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 12px;
}

.vx-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-end;
}

.vx-footer-links a {
    color: #cfcfcf;
    font-size: 14px;
}

.vx-footer-links a:hover {
    color: #fff;
}

.vx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    font-size: 13px;
    color: #999;
    display: flex;
    justify-content: space-between;
}

/* =========================
   RESPONSIVE BASE
========================= */

@media (max-width: 900px) {

    .vx-nav {
        display: none;
        /* later mobile menu */
    }

    .vx-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vx-footer-links {
        justify-content: flex-start;
    }

}

/* =========================
   HERO SECTION
========================= */

.vx-hero {
    padding: 120px 0 200px;
    background: var(--vx-bg);
    position: relative;
    overflow: hidden;
}

/* Top layout */
.vx-hero-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

/* Left title */
.vx-hero-left h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--vx-dark);
}

/* Right text */
.vx-hero-right p {
    font-size: 18px;
    color: var(--vx-gray);
    max-width: 420px;
    margin-bottom: 28px;
}

/* CTA */
.vx-hero-btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--vx-primary);
    color: #fff;
    border-radius: 40px;
    font-weight: 500;
    transition: var(--vx-transition);
}

.vx-hero-btn:hover {
    background: #333333;
}

/* Hero Image */
.vx-hero-image-wrap {
    border-radius: var(--vx-radius);
    overflow: hidden;
}

.vx-hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Floating Bar */
.vx-hero-bar {
    position: absolute;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    background: #f8f8f8;
    border-radius: 60px;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 42px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Bar Items */
.vx-hero-bar-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vx-hero-bar-item span {
    font-size: 13px;
    color: var(--vx-muted);
}

.vx-hero-bar-item strong {
    font-size: 15px;
    color: var(--vx-dark);
    font-weight: 600;
}

/* CTA circle */
.vx-hero-bar-cta a {
    width: 46px;
    height: 46px;
    background: var(--vx-primary);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    transition: var(--vx-transition);
}

.vx-hero-bar-cta a:hover {
    background: #333333;
}

/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 900px) {

    .vx-hero {
        padding: 80px 0 140px;
    }

    .vx-hero-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vx-hero-left h1 {
        font-size: 42px;
    }

    .vx-hero-bar {
        position: static;
        transform: none;
        margin-top: 24px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .vx-hero-image-wrap img {
        height: 300px;
    }

}

/* =========================
   INTRO + STATS SECTION
========================= */

.vx-intro {
    padding: 120px 0;
    background: var(--vx-bg);
}

.vx-intro-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT CARD */
.vx-intro-card {
    background: #fafafa;
    border-radius: 32px;
    padding: 48px 48px 56px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* Top Tabs */
.vx-intro-tabs {
    display: flex;
    /* gap: 24px; */
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.vx-intro-tabs span {
    font-size: 13px;
    color: var(--vx-muted);
    cursor: pointer;
}

.vx-intro-tabs span.active {
    color: var(--vx-primary);
    font-weight: 600;
}

/* Content */
.vx-intro-content h2 {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.vx-intro-content p {
    font-size: 16px;
    color: var(--vx-gray);
    max-width: 480px;
    margin-bottom: 28px;
}

/* Button */
.vx-intro-btn {
    display: inline-block;
    padding: 12px 26px;
    border: 1px solid var(--vx-primary);
    border-radius: 40px;
    color: var(--vx-primary);
    font-weight: 500;
    transition: var(--vx-transition);
}

.vx-intro-btn:hover {
    background: var(--vx-primary);
    color: #fff;
}

/* Stats Grid */
.vx-intro-stats {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vx-stat-card {
    background: #f0f0f0;
    border-radius: 20px;
    padding: 15px 20px;
    text-align: center;
}

.vx-stat-card strong {
    font-size: 32px;
    color: var(--vx-primary);
    display: block;
    margin-bottom: 6px;
}

.vx-stat-card span {
    font-size: 14px;
    color: var(--vx-gray);
}

/* RIGHT IMAGE */
.vx-intro-image {
    border-radius: 32px;
    overflow: hidden;
}

.vx-intro-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* =========================
   INTRO RESPONSIVE
========================= */

@media (max-width: 900px) {

    .vx-intro-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vx-intro-content h2 {
        font-size: 28px;
    }

    .vx-intro-image img {
        height: 320px;
    }

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

}

/* =========================
   STRATEGY FRAMEWORK SECTION
========================= */

.vx-framework {
    padding: 120px 0;
    background: var(--vx-bg);
}

.vx-framework-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT SIDE */
.vx-framework-left h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.vx-framework-left p {
    font-size: 16px;
    color: var(--vx-gray);
    max-width: 520px;
    margin-bottom: 40px;
}

/* Visual */
.vx-framework-visual {
    background: #ffffff;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 20px 50px rgb(0 0 0 / 17%);
}

.vx-framework-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* RIGHT STACK */
.vx-framework-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Feature Card */
.vx-framework-card {
    background: #1a1a1a;
    border-radius: 28px;
    padding: 28px 32px;
    color: #ffffff;
    display: grid;
    gap: 20px;
    align-items: center;
}

/* Icon Placeholder */
.vx-framework-icon {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 14px;
}

/* Text */
.vx-framework-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.vx-framework-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

/* =========================
   FRAMEWORK RESPONSIVE
========================= */

@media (max-width: 900px) {

    .vx-framework-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vx-framework-left h2 {
        font-size: 30px;
    }

    .vx-framework-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vx-framework-icon {
        margin: 0 auto 12px;
    }

}

/* =========================
   WORK / CASE STUDIES SECTION
========================= */

.vx-work {
    padding: 120px 0;
    background: var(--vx-bg);
}

/* Main rounded container */
.vx-work-card {
    background: #fafafa;
    border-radius: 36px;
    padding: 0 48px 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

/* Header */
.vx-work-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.vx-work-head h2 {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.vx-work-head span {
    font-size: 14px;
    color: var(--vx-muted);
}

/* Grid */
.vx-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Card */
.vx-work-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

/* Image */
.vx-work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Hover zoom */
.vx-work-item:hover img {
    transform: scale(1.05);
}

/* Overlay */
.vx-work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 96%), rgba(0, 0, 0, 0.05));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}

.vx-work-overlay h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.vx-work-overlay span {
    font-size: 13px;
    opacity: 0.85;
}

/* Footer */
.vx-work-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* CTA */
.vx-work-btn {
    padding: 12px 28px;
    background: var(--vx-primary);
    color: #fff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--vx-transition);
}

.vx-work-btn:hover {
    background: #333333;
}

/* Nav arrows */
.vx-work-nav {
    display: flex;
    gap: 12px;
}

.vx-work-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: var(--vx-transition);
}

.vx-work-nav button:hover {
    background: #f0f0f0;
    color: var(--vx-primary);
}

/* =========================
   WORK RESPONSIVE
========================= */

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

@media (max-width: 600px) {

    .vx-work-card {
        padding: 32px 24px 40px;
    }

    .vx-work-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .vx-work-grid {
        grid-template-columns: 1fr;
    }

    .vx-work-item {
        height: 240px;
    }

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

}

/* =========================
   ENGAGEMENT MODELS SECTION
========================= */

.vx-engage {
    padding: 120px 0;
    background: var(--vx-bg);
}

/* Title */
.vx-engage-head {
    text-align: center;
    margin-bottom: 60px;
}

.vx-engage-head h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Grid */
.vx-engage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card Base */
.vx-engage-card {
    border-radius: 28px;
    padding: 36px 32px 60px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vx-engage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Light Card */
.vx-engage-card.light {
    background: #f5f5f5;
    color: var(--vx-dark);
}

/* Dark Card */
.vx-engage-card.dark {
    background: #1a1a1a;
    color: #ffffff;
}

/* Text */
.vx-engage-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.vx-engage-card p {
    font-size: 15px;
    line-height: 1.6;
    color: inherit;
    opacity: 0.85;
}

/* Arrow Button */
.vx-engage-arrow {
    position: absolute;
    bottom: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e5e5e5;
    color: var(--vx-primary);
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: var(--vx-transition);
}

/* Dark card arrow variant */
.vx-engage-card.dark .vx-engage-arrow {
    background: #333333;
    color: #fff;
}

.vx-engage-arrow:hover {
    transform: rotate(-45deg);
}

/* =========================
   ENGAGE RESPONSIVE
========================= */

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

@media (max-width: 600px) {

    .vx-engage-grid {
        grid-template-columns: 1fr;
    }

    .vx-engage-head h2 {
        font-size: 28px;
    }

}

/* =========================
   ABOUT / EXPERTISE SECTION
========================= */

.vx-about {
    padding: 120px 0;
    background: var(--vx-bg);
}

/* Header */
.vx-about-head {
    margin-bottom: 60px;
}

/* Small label */
.vx-about-label {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 12px;
    color: var(--vx-muted);
    margin-bottom: 24px;
}

/* Top layout */
.vx-about-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.vx-about-top h2 {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.vx-about-top p {
    font-size: 16px;
    color: var(--vx-gray);
    /* max-width: 420px; */
    text-align: justify;
}

/* Mosaic Grid */
.vx-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 24px;
}

/* Base item */
.vx-about-item {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

/* Image items */
.vx-about-item.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Large image */
.vx-about-item.large {
    grid-row: span 2;
}

/* Wide stat */
.vx-about-item.wide {
    grid-column: span 2;
}

/* Stat Cards */
.vx-about-item.stat {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Dark Stat */
.vx-about-item.stat.dark {
    background: #1a1a1a;
    color: #ffffff;
}

.vx-about-item.stat.dark strong {
    font-size: 48px;
    margin-bottom: 12px;
}

.vx-about-item.stat.dark span {
    font-size: 15px;
    opacity: 0.85;
}

/* Gray Stat */
.vx-about-item.stat.blue {
    background: #2a2a2a;
    color: #ffffff;
}

.vx-about-item.stat.blue strong {
    font-size: 48px;
    margin-bottom: 12px;
}

.vx-about-item.stat.blue p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .vx-about-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vx-about-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .vx-about-item.wide {
        grid-column: span 2;
    }

}

@media (max-width: 600px) {

    .vx-about-top h2 {
        font-size: 28px;
    }

    .vx-about-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .vx-about-item.large {
        grid-row: span 1;
    }

    .vx-about-item.wide {
        grid-column: span 1;
    }

}

/* =========================
   FINAL CONTACT + FOOTER
========================= */

.vx-contact {
    padding: 140px 0 80px;
    background: var(--vx-bg);
}

/* TOP ROW */
.vx-contact-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

/* LEFT INFO */
.vx-contact-info h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.vx-contact-info p {
    font-size: 16px;
    color: var(--vx-gray);
    max-width: 520px;
    margin-bottom: 48px;
}

/* Info Grid */
.vx-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.vx-contact-grid h4 {
    font-size: 14px;
    color: var(--vx-muted);
    margin-bottom: 6px;
}

.vx-contact-grid span {
    font-size: 15px;
    color: var(--vx-dark);
    font-weight: 500;
}

/* RIGHT FORM CARD */
.vx-contact-form {
    background: #f5f5f5;
    border-radius: 32px;
    /*padding: 40px;*/
}

/* Form */
.vx-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.vx-contact-form input,
.vx-contact-form textarea {
    padding: 14px 16px;
    border-radius: 20px;
    border: none;
    background: #e8e8e8;
    font-size: 14px;
    outline: none;
}

.vx-contact-form input::placeholder,
.vx-contact-form textarea::placeholder {
    color: #888888;
}

/* Button */
.vx-form-btn {
    margin-top: 12px;
    padding: 14px 28px;
    background: var(--vx-primary);
    color: #fff;
    border-radius: 40px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--vx-transition);
}

.vx-form-btn:hover {
    background: #1746c7;
}

/* BOTTOM ROW */
.vx-contact-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* CTA CARD */

.vx-contact-cta h3 {
    font-size: 32px;
    margin-bottom: 14px;
}

.vx-contact-cta p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 28px;
}

.vx-cta-btn:hover {
    background: #e6f0ff;
    color: var(--vx-primary);
}

/* FOOTER CARD */

/* Brand */
.vx-footer-brand h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.vx-footer-brand span {
    font-size: 14px;
    opacity: 0.8;
}

/* Links */
.vx-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.vx-footer-links a {
    font-size: 14px;
    color: #cfd6ff;
}

.vx-footer-links a:hover {
    color: #fff;
}

/* Socials */
.vx-footer-socials {
    display: flex;
    gap: 14px;
}

/* Copy */
.vx-footer-copy {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 12px;
}

/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .vx-contact-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vx-contact-bottom {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

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

    .vx-contact-info h2 {
        font-size: 30px;
    }

    .vx-contact-cta h3 {
        font-size: 26px;
    }

}

/* =========================
   MAIN HERO (DARK PREMIUM)
========================= */

.main-hero {
    position: relative;
    /*padding: 160px 0 140px;*/
    /* background: radial-gradient(circle at top, #111827, #000000 70%); */
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    text-align: center;
}

/* Wrapper */
.main-hero-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Badge */
.main-hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 40px;
    background: rgb(0 0 0 / 8%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 12px;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    color: #000000;
}

/* Headline */
.main-hero h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 22px;
    color: #000;
    letter-spacing: -0.02em;
}

/* Sub text */
.main-hero p {
    font-size: 17px;
    line-height: 1.7;
    color: #000000;
    max-width: 680px;
    margin: 0 auto 44px;
}

/* Actions */
.main-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* Button */
.main-hero-btn {
    padding: 14px 32px;
    background: rgb(0 0 0 / 8%);
    color: #000000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.main-hero-btn:hover {
    background: #e6f0ff;
    color: var(--vx-primary);
    transform: translateY(-2px);
}

/* Social proof */
.main-hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: #000;
}

/* Avatars */
.main-hero-avatars {
    display: flex;
}

.main-hero-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000;
    margin-left: -10px;
    background-color: #fff;
}

.main-hero-avatars img:first-child {
    margin-left: 0;
}

/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 900px) {

    .main-hero h1 {
        font-size: 46px;
    }

    .main-hero p {
        font-size: 16px;
    }

}

@media (max-width: 600px) {

    .main-hero {
        /*padding: 120px 0 100px;*/
    }

    .main-hero h1 {
        font-size: 36px;
    }

    .main-hero-actions {
        flex-direction: column;
        gap: 24px;
    }

}


/* =========================
   INTRO TABS INTERACTION
========================= */

/* Tabs */
.vx-intro-tabs span {
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    /* background: #f1f4f8; */
    transition: all 0.3s ease;
}

.vx-intro-tabs span.active {
    background: var(--vx-primary);
    color: #ffffff;
}

/* Panels */
.vx-intro-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.vx-intro-panel.active {
    display: block;
}

/* Smooth fade */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

/* =========================
   WHY CHOOSE SECTION
========================= */

.why-choose-section {
    padding: 120px 0;
}

/* Header */
.why-header {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vx-primary);
    margin-bottom: 14px;
}

.why-left h2 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.why-right p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--vx-gray);
    max-width: 480px;
}

/* Features Grid */
.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Feature Card */
.why-item {
    background: #ffffff;
    border-radius: 28px;
    padding: 36px 28px 40px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.why-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 80, 255, 0.06),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-item:hover::after {
    opacity: 1;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

/* Icon */
.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

/* Title */
.why-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Text */
.why-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--vx-gray);
}

/* =========================
   RESPONSIVE
========================= */

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

@media (max-width: 900px) {
    .why-header {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-left h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .vx-framework {
    padding: 40px 0 !important;
}
    .why-choose-section {
        padding: 40px 0 !important;
    }

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

    .why-left h2 {
        font-size: 32px;
    }
}