/* =========================================================
   VILL Consulting Group — Premium Landing Page Stylesheet
   ========================================================= */

/* ---------- 1. Variables & Reset ---------- */
:root {
    --black: #0a0a0a;
    --black-soft: #141414;
    --ink: #1c1c1c;
    --ink-2: #2a2a2a;
    --muted: #6b6b6b;
    --muted-soft: #8b8b8b;
    --line: #e8e8e8;
    --line-soft: #f0f0f0;
    --bg: #ffffff;
    --bg-soft: #fafaf9;
    --bg-cream: #f7f5f0;
    --gold: #d4af37;
    --gold-light: #e8c860;
    --gold-soft: #f5e6a8;
    --gold-deep: #b8941f;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f5d680 50%, #b8941f 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 100%);
    --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.04);
    --shadow-md: 0 8px 30px rgba(10, 10, 10, 0.06);
    --shadow-lg: 0 20px 60px rgba(10, 10, 10, 0.08);
    --shadow-gold: 0 16px 50px rgba(212, 175, 55, 0.18);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;
    --font-display: 'Playfair Display', 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1240px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --transition: 0.35s var(--ease);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* ---------- 2. Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-cream);
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 24px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

/* ---------- 3. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.01em;
    transition: all var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13.5px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--black);
    color: #fff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    color: var(--black);
    border-color: var(--line);
}

.btn-ghost:hover {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(212, 175, 55, 0.32);
}

/* ---------- 4. Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--gradient-gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    animation: pulse 1.4s ease-in-out infinite;
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background: var(--bg-cream);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--gradient-gold);
    animation: loading 1.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ---------- 5. Scroll progress ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 9998;
    transition: width 0.1s linear;
}

/* ---------- 6. Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--line);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gradient-dark);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.logo-mark::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition);
}

.logo:hover .logo-mark::after {
    opacity: 1;
}

.logo-mark {
    z-index: 1;
}

.logo-text {
    font-size: 18px;
    color: var(--black);
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text small {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 500;
}

.logo-img {
    height: 46px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: height var(--transition);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.footer-logo-img {
    height: 48px;
    max-width: 230px;
}

.nav-menu-cta {
    display: none;
}

.nav-menu ul {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: 50px;
    position: relative;
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--black);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    border: 1px solid var(--line);
    transition: all var(--transition);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 7. Hero Section ---------- */
.hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 14s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #d4af37, transparent 65%);
    top: -10%;
    right: -10%;
    opacity: 0.35;
}

.blob-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #f5d680, transparent 65%);
    bottom: -20%;
    left: -10%;
    animation-delay: -5s;
    opacity: 0.3;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffe9a8, transparent 70%);
    top: 30%;
    left: 30%;
    animation-delay: -10s;
    opacity: 0.18;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(0.97); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10,10,10,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,10,10,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--black);
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    display: block;
    margin-top: 4px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-left: -10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trust-avatars span:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

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

.trust-stars span:first-child {
    color: var(--gold);
    letter-spacing: 1px;
    margin-right: 6px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 480px;
}

.visual-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.visual-main {
    top: 0;
    right: 0;
    width: 92%;
    height: 360px;
    padding: 32px;
    overflow: hidden;
    animation: floatY 6s ease-in-out infinite;
}

.visual-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 0% 100%, rgba(212,175,55,0.06), transparent 50%);
    pointer-events: none;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
}

.card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.card-tag {
    margin-left: auto;
    font-size: 10.5px;
    padding: 3px 8px;
    background: rgba(34, 197, 94, 0.1);
    color: rgb(22, 163, 74);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgb(22, 163, 74);
}

.card-stat {
    padding-top: 24px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.card-stat h3 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    margin: 8px 0 28px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    margin-top: auto;
}

.chart-bars span {
    flex: 1;
    background: linear-gradient(to top, var(--gold-deep), var(--gold-light));
    border-radius: 4px 4px 0 0;
    opacity: 0.85;
    animation: barRise 1.5s ease-out backwards;
}

.chart-bars span:nth-child(1) { animation-delay: 0.1s; }
.chart-bars span:nth-child(2) { animation-delay: 0.2s; }
.chart-bars span:nth-child(3) { animation-delay: 0.3s; }
.chart-bars span:nth-child(4) { animation-delay: 0.4s; }
.chart-bars span:nth-child(5) { animation-delay: 0.5s; }
.chart-bars span:nth-child(6) { animation-delay: 0.6s; }
.chart-bars span:nth-child(7) {
    animation-delay: 0.7s;
    background: var(--gradient-gold);
    opacity: 1;
}

@keyframes barRise {
    from { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    to { transform: scaleY(1); opacity: 0.85; }
}

.visual-float-1 {
    left: -10px;
    top: 60px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatY 5s ease-in-out infinite;
    animation-delay: -1s;
}

.visual-float-2 {
    right: 40px;
    bottom: 0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatY 7s ease-in-out infinite;
    animation-delay: -2s;
}

.visual-float-1 strong,
.visual-float-2 strong {
    display: block;
    font-size: 16px;
    color: var(--black);
    font-weight: 700;
    line-height: 1.1;
}

.visual-float-1 small,
.visual-float-2 small {
    font-size: 11.5px;
    color: var(--muted);
}

.float-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon.gold {
    background: var(--gradient-gold);
    color: var(--black);
}

/* Hero marquee */
.hero-marquee {
    margin-top: 100px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.6);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--muted);
    text-transform: uppercase;
}

.marquee-track i {
    color: var(--gold);
    font-style: normal;
    font-size: 12px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- 8. About Section ---------- */
.about {
    background: var(--bg-soft);
}

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

.about-feature {
    padding: 36px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}

.about-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-soft);
}

.about-feature:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: 14px;
    margin-bottom: 24px;
    color: var(--gold-deep);
    transition: all var(--transition);
}

.about-feature:hover .about-icon {
    background: var(--gradient-gold);
    color: var(--black);
    transform: rotate(-8deg) scale(1.05);
}

.about-feature h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.about-feature p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* ---------- 9. Services Section ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.45s var(--ease);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
    transform: translateY(100%);
    transition: transform 0.55s var(--ease);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(10,10,10,0.18);
    border-color: var(--black);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-num,
.service-card:hover .service-link {
    color: #fff;
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--black);
    transform: scale(1.05);
}

.service-num {
    position: absolute;
    top: 28px;
    right: 32px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.08em;
    transition: color var(--transition);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: 16px;
    margin-bottom: 28px;
    color: var(--gold-deep);
    transition: all var(--transition);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color var(--transition);
}

.service-card p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 24px;
    transition: color var(--transition);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all var(--transition);
}

.service-link svg {
    transition: transform var(--transition);
}

.service-link:hover svg,
.service-card:hover .service-link svg {
    transform: translateX(6px);
}

.service-card-wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: center;
    padding: 40px;
}

.service-card-wide .service-icon {
    margin-bottom: 0;
}

.service-card-wide h3 {
    margin-bottom: 6px;
}

.service-card-wide p {
    margin-bottom: 0;
}

.service-card-wide .service-num {
    position: static;
}

/* ---------- 10. Why Choose Us ---------- */
.why {
    background: var(--bg-cream);
    overflow: hidden;
}

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

.why-content .section-tag,
.why-content .section-title,
.why-content .section-subtitle {
    text-align: left;
}

.why-content .section-title {
    text-align: left;
}

.why-list {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

.why-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    box-shadow: 0 4px 10px rgba(212,175,55,0.25);
}

.why-list strong {
    display: block;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 4px;
    font-weight: 600;
}

.why-list p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
}

.stats-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 36px;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.stats-panel::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
    top: -80px;
    right: -80px;
    border-radius: 50%;
}

.stat-item {
    padding: 28px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    position: relative;
    transition: all var(--transition);
}

.stat-item:hover {
    background: rgba(212,175,55,0.08);
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    display: inline-block;
}

.stat-item span {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    font-weight: 700;
    margin-left: 4px;
}

.stat-item p {
    margin-top: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ---------- 11. Industries Grid ---------- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    padding: 32px 24px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: left;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.industry-card:hover {
    background: #fff;
    border-color: var(--gold-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.industry-card:hover::after {
    opacity: 1;
}

.industry-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--ink);
    transition: all var(--transition);
}

.industry-card:hover .industry-icon {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--black);
    transform: scale(1.05) rotate(-5deg);
}

.industry-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
}

.industry-cta {
    background: var(--gradient-dark);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-cta h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.industry-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 18px;
}

.industry-cta .service-link.light {
    color: var(--gold);
}

.industry-cta:hover {
    background: var(--gradient-dark);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.industry-cta:hover .industry-icon {
    background: var(--gradient-gold);
}

/* ---------- 12. Process Section ---------- */
.process {
    background: var(--bg-soft);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(to right, var(--gold-soft), var(--gold), var(--gold-soft));
    z-index: 0;
    opacity: 0.5;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: #fff;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-deep);
    box-shadow: 0 8px 24px rgba(212,175,55,0.18);
    transition: all var(--transition);
}

.process-step:hover .step-num {
    background: var(--gradient-gold);
    color: var(--black);
    transform: scale(1.1);
}

.step-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.process-step:hover .step-card {
    border-color: var(--gold-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-cream);
    border-radius: 12px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-deep);
    transition: all var(--transition);
}

.process-step:hover .step-icon {
    background: var(--gradient-gold);
    color: var(--black);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

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

.testimonial-card {
    padding: 36px 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 1;
    color: var(--gold-soft);
    opacity: 0.7;
}

.testimonial-card:hover {
    border-color: var(--gold-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card.featured-card {
    background: var(--gradient-dark);
    border-color: transparent;
    color: #fff;
}

.testimonial-card.featured-card::before {
    color: var(--gold);
    opacity: 0.45;
}

.testimonial-card.featured-card p {
    color: rgba(255,255,255,0.92);
}

.testimonial-card.featured-card .testimonial-author strong {
    color: #fff;
}

.testimonial-card.featured-card .testimonial-author small {
    color: rgba(255,255,255,0.6);
}

.testimonial-stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-2);
    margin-bottom: 28px;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.featured-card .testimonial-author {
    border-top-color: rgba(255,255,255,0.1);
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14.5px;
    color: var(--black);
    font-weight: 600;
}

.testimonial-author small {
    font-size: 12.5px;
    color: var(--muted);
}

/* ---------- 14. CTA Banner ---------- */
.cta-banner {
    padding: 80px 0;
    background: var(--bg);
}

.cta-wrap {
    position: relative;
    padding: 80px 60px;
    background: var(--gradient-dark);
    border-radius: 32px;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px circle at 0% 100%, rgba(212,175,55,0.22), transparent 60%),
        radial-gradient(500px circle at 100% 0%, rgba(245,214,128,0.15), transparent 60%);
    pointer-events: none;
}

.cta-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}

.cta-wrap h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    position: relative;
}

.cta-wrap p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-wrap .btn-gold {
    position: relative;
}

/* ---------- 15. FAQ Section ---------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
    border-top: 1px solid var(--line);
}

.faq-question {
    width: 100%;
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    font-family: var(--font-display);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gold-deep);
}

.faq-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-cream);
    border: 1px solid var(--line);
    position: relative;
    transition: all var(--transition);
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--ink);
    border-radius: 2px;
    transition: transform var(--transition);
}

.faq-toggle::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle {
    background: var(--gradient-gold);
    border-color: transparent;
}

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-answer p {
    padding: 0 0 26px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    padding-right: 60px;
}

/* ---------- 16. Contact ---------- */
.contact {
    background: var(--bg-soft);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-tag,
.contact-info .section-title,
.contact-info .section-subtitle {
    text-align: left;
}

.contact-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-list li {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.contact-list li:hover {
    border-color: var(--gold-soft);
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-cream);
    border-radius: 12px;
    color: var(--gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.contact-list li:hover .contact-icon {
    background: var(--gradient-gold);
    color: var(--black);
}

.contact-list small {
    display: block;
    font-size: 11.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
    font-weight: 500;
}

.contact-list strong {
    font-size: 15px;
    color: var(--black);
    font-weight: 600;
}

.contact-form {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    transition: all var(--transition);
    font-size: 14.5px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}

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

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e63946;
    background: #fff5f5;
}

.form-error {
    display: block;
    font-size: 12px;
    color: #e63946;
    margin-top: 6px;
    min-height: 1em;
    font-weight: 500;
}

.form-success {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.25);
    color: rgb(22,163,74);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-success.show {
    display: block;
}

.form-success.error {
    background: rgba(230,57,70,0.08);
    border-color: rgba(230,57,70,0.25);
    color: #e63946;
}

/* ---------- 17. Footer ---------- */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at top, #000 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top, #000 25%, transparent 70%);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.footer-brand p {
    margin: 20px 0 24px;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 320px;
    color: rgba(255,255,255,0.6);
}

.footer .logo-text {
    color: #fff;
}

.footer .logo-text small {
    color: var(--gold);
}

.footer-contact {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a {
    font-size: 14.5px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}

.footer-socials a:hover {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.footer-col li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-col li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-col li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.footer-col li a:hover::before {
    width: 6px;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 4px;
    transition: all var(--transition);
}

.newsletter-form:focus-within {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.06) rotate(-5deg);
}

.newsletter-status {
    display: block;
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--gold);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    position: relative;
}

.footer-bottom ul {
    display: flex;
    gap: 24px;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ---------- 18. Floating WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 40px rgba(37,211,102,0.55);
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- 19. Back to top ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
}

/* ---------- 20. Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger for grids */
.about-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.about-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.about-grid .reveal:nth-child(3) { transition-delay: 0.25s; }
.about-grid .reveal:nth-child(4) { transition-delay: 0.35s; }

.services-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.18s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.30s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.36s; }
.services-grid .reveal:nth-child(7) { transition-delay: 0.42s; }

.industries-grid .reveal:nth-child(n) { transition-delay: calc(var(--i, 0) * 0.05s); }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1100px) {
    .hero-container { gap: 36px; }
    .visual-main { height: 320px; padding: 24px; }
    .card-stat h3 { font-size: 2.8rem; }
    .hero-visual { height: 420px; }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card-wide { grid-column: span 2; }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .why-wrap { gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ---- Tablet & mobile navigation ---- */
@media (max-width: 880px) {
    .nav-container { position: relative; }

    .nav-menu {
        position: absolute;
        top: calc(100% + 16px);
        left: 0;
        right: 0;
        background: #fff;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: 0 24px 50px rgba(10, 10, 10, 0.14);
        transform: translateY(-12px) scale(0.97);
        transform-origin: top right;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .nav-link {
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        color: var(--ink-2);
        transition: background var(--transition), color var(--transition);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--bg-cream);
        color: var(--black);
    }

    .nav-link.active::before { display: none; }

    .nav-menu-cta {
        display: flex;
        width: 100%;
        margin-top: 12px;
    }

    .nav-actions .btn-sm { display: none; }
    .nav-toggle { display: flex; }

    .hero {
        padding: 132px 0 70px;
        min-height: auto;
    }
    .hero-container { grid-template-columns: 1fr; gap: 56px; }
    .hero-visual { max-width: 440px; margin: 0 auto; }

    .why-wrap { grid-template-columns: 1fr; gap: 40px; }
    .why-list { grid-template-columns: 1fr 1fr; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-line { display: none; }
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom ul { justify-content: center; }
}

/* ---- Large phones ---- */
@media (max-width: 680px) {
    .container { padding: 0 20px; }
    .section { padding: 76px 0; }
    .section-header { margin-bottom: 44px; }
    .section-title { font-size: clamp(1.7rem, 6.4vw, 2.4rem); }
    .section-subtitle { font-size: 0.98rem; }

    .hero { padding: 116px 0 60px; }
    .hero-container { gap: 44px; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .hero-marquee { margin-top: 56px; }
    .marquee-track { gap: 24px; }

    .about-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-feature { padding: 30px 26px; }

    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 32px 28px; }
    .service-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
        padding: 32px 28px;
    }
    .service-card-wide .service-num { display: none; }

    .why-list { grid-template-columns: 1fr; gap: 20px; }
    .stats-panel { grid-template-columns: 1fr 1fr; padding: 24px; gap: 14px; }
    .stat-item { padding: 24px 18px; }
    .stat-item h3 { font-size: 2.3rem; }
    .stat-item span { font-size: 1.9rem; }

    .industries-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .industry-card { padding: 26px 20px; }

    .process-timeline { grid-template-columns: 1fr; gap: 18px; }

    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card { padding: 30px 26px; }

    .cta-banner { padding: 56px 0; }
    .cta-wrap { padding: 54px 26px; border-radius: 22px; }

    .faq-question { font-size: 1rem; padding: 22px 0; gap: 16px; }
    .faq-answer p { padding-right: 0; }
    .faq-item.active .faq-answer { max-height: 420px; }

    .contact-wrap { gap: 36px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form { padding: 28px 22px; }

    .footer { padding: 70px 0 28px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }

    /* Stack the hero cards in normal flow so they don't collapse/overflow on phones */
    .hero-visual {
        height: auto;
        max-width: 400px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .visual-card {
        position: relative;
        top: auto; right: auto; bottom: auto; left: auto;
        animation: none;
    }
    .visual-main {
        width: 100%;
        height: auto;
        min-height: 240px;
        padding: 24px;
        display: flex;
        flex-direction: column;
    }
    .card-stat h3 { font-size: 2.6rem; margin: 8px 0 22px; }
    .chart-bars { height: 90px; }
    .visual-float-1,
    .visual-float-2 { width: 100%; padding: 14px 18px; }

    .back-to-top { right: 82px; bottom: 22px; width: 44px; height: 44px; }
    .whatsapp-float { width: 54px; height: 54px; bottom: 22px; right: 22px; }
}

/* ---- Small phones ---- */
@media (max-width: 460px) {
    .container { padding: 0 16px; }

    .navbar { padding: 12px 0; }
    .logo-img { height: 36px; }
    .navbar.scrolled .logo-img { height: 33px; }

    .section { padding: 62px 0; }
    .section-header { margin-bottom: 38px; }
    .section-tag { font-size: 11px; padding: 5px 12px; }

    .hero { padding: 100px 0 50px; }
    .eyebrow { font-size: 10.5px; padding: 7px 12px; letter-spacing: 0.08em; }
    .hero-title { font-size: clamp(2rem, 9.5vw, 2.6rem); }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
    .trust-text { font-size: 12.5px; }

    .about-feature { padding: 26px 22px; }
    .service-card { padding: 28px 24px; }
    .service-card-wide { padding: 28px 24px; }

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

    .stats-panel { grid-template-columns: 1fr; gap: 12px; }
    .stat-item { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; padding: 22px 20px; }
    .stat-item p { width: 100%; margin-top: 4px; }

    .hero-visual { max-width: 340px; }
    .visual-main { min-height: 220px; padding: 20px; }
    .card-stat h3 { font-size: 2.2rem; }
    .chart-bars { height: 78px; }
    .visual-float-1 strong,
    .visual-float-2 strong { font-size: 15px; }
    .visual-float-1 small,
    .visual-float-2 small { font-size: 11.5px; }

    .cta-wrap { padding: 46px 22px; }
    .cta-wrap p { font-size: 0.98rem; }

    .contact-list li { padding: 14px 16px; }
    .contact-form { padding: 24px 18px; }

    .footer-socials a { width: 38px; height: 38px; }
    .footer-bottom ul { flex-wrap: wrap; gap: 12px 18px; }
    .footer-bottom { font-size: 12.5px; }

    .back-to-top { right: 78px; }
    .whatsapp-float { width: 50px; height: 50px; }
}
