/* ═══════════════════════════════════════════════════════
   LAZYDESIGNERS.IN — Master Stylesheet
   Multi-page Premium Agency — Design System
   ═══════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────
   1. DESIGN TOKENS / CUSTOM PROPERTIES
   ───────────────────────────────────────────────────── */
:root {
    /* ── Midnight Slate & Coral/Orange Palette ── */
    --clr-bg-primary: #13151F;
    --clr-bg-secondary: #171922;
    --clr-bg-tertiary: #1C1E2A;
    --clr-bg-light: #F7F5F2;
    --clr-bg-light-alt: #EFECE8;
    --clr-bg-white: #ffffff;
    --clr-text-primary: #F2EEE9;
    --clr-text-dark: #1E1A16;
    --clr-text-muted: #8E8880;
    --clr-text-muted-light: #6E6860;
    --clr-accent: #FF5733;
    --clr-accent-hover: #E8461F;
    --clr-accent-glow: rgba(255, 87, 51, 0.15);
    --clr-accent-secondary: #FFAA3B;
    --clr-accent-secondary-hover: #F09626;
    --clr-border-light: rgba(242, 238, 233, 0.08);
    --clr-border-dark: rgba(19, 21, 31, 0.08);
    --clr-whatsapp: #25D366;

    --font-heading: 'Syne', 'Segoe UI', Arial, sans-serif;
    --font-body: 'DM Sans', 'Segoe UI', Arial, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --container-max: 1200px;
    --container-padding: 1.5rem;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-base: 0.35s var(--ease-out);
    --transition-slow: 0.5s var(--ease-out);

    --radius-sm: 4px;
    --radius-base: 6px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-pill: 100px;
    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.06), 0 12px 28px rgba(0,0,0,0.1);
    --shadow-elevated: 0 8px 30px rgba(0,0,0,0.12);
}


/* ─────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--clr-text-dark);
    background-color: var(--clr-bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }
::selection { background: var(--clr-accent); color: var(--clr-bg-primary); }


/* ─────────────────────────────────────────────────────
   3. UTILITIES
   ───────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--space-sm);
}

.section-tag--light { color: var(--clr-accent); }

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-lg);
}

.section-heading--light { color: var(--clr-text-primary); }

.section-heading--center { text-align: center; }

.section-desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted-light);
    line-height: 1.75;
    max-width: 640px;
}

.section-desc--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
}

.section-desc--light {
    color: rgba(242, 238, 233, 0.5);
}

.required { color: #E74C3C; }

.accent-text { color: var(--clr-accent); }
.accent-secondary-text { color: var(--clr-accent-secondary); }

.text-gradient {
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divider line */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--clr-accent);
    border: none;
    margin-bottom: var(--space-lg);
}

.section-divider--center { margin-left: auto; margin-right: auto; }
.section-divider--light { background: var(--clr-accent); opacity: 0.5; }


/* ─────────────────────────────────────────────────────
   4. BUTTONS
   ───────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--clr-accent);
    color: var(--clr-bg-primary);
}
.btn-primary:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 87, 51, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--clr-text-primary);
    border: 1.5px solid rgba(242, 238, 233, 0.3);
}
.btn-secondary:hover {
    border-color: var(--clr-text-primary);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text-dark);
    border: 1.5px solid var(--clr-text-dark);
}
.btn-outline:hover {
    background: var(--clr-text-dark);
    color: var(--clr-bg-light);
    transform: translateY(-1px);
}

.btn-outline--light {
    color: var(--clr-text-primary);
    border-color: rgba(242, 238, 233, 0.3);
}
.btn-outline--light:hover {
    background: var(--clr-text-primary);
    color: var(--clr-bg-primary);
}

.btn-amber {
    background: var(--clr-accent-secondary);
    color: var(--clr-bg-primary);
}
.btn-amber:hover {
    background: var(--clr-accent-secondary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 170, 59, 0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-arrow::after {
    content: '→';
    transition: transform var(--transition-fast);
}
.btn-arrow:hover::after {
    transform: translateX(4px);
}


/* ─────────────────────────────────────────────────────
   5. NAVIGATION
   ───────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background: rgba(19, 21, 31, 0.97);
    box-shadow: 0 1px 30px rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* For inner pages, header is solid from the start */
.site-header.header-solid {
    background: rgba(19, 21, 31, 0.97);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
}

.logo-lazy { color: var(--clr-text-primary); }
.logo-designers { color: var(--clr-accent); }

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(242, 238, 233, 0.7);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    background: var(--clr-accent);
    color: var(--clr-bg-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─────────────────────────────────────────────────────
   6. HERO — HOMEPAGE
   ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-bg-primary);
    overflow: hidden;
    padding: 120px var(--container-padding) 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 10L110 40V80L60 110L10 80V40L60 10Z' fill='none' stroke='%23F5F5F0' stroke-width='1'/%3E%3Cpath d='M60 30L90 50V70L60 90L30 70V50L60 30Z' fill='none' stroke='%23F5F5F0' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 120px 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 51, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 170, 59, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-accent);
    background: rgba(255, 87, 51, 0.08);
    border: 1px solid rgba(255, 87, 51, 0.2);
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-lg);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero-subheading {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: rgba(242, 238, 233, 0.55);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--clr-border-light);
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--clr-text-primary);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(242, 238, 233, 0.4);
    margin-top: 0.25rem;
    letter-spacing: 0.02em;
}


/* ─────────────────────────────────────────────────────
   7. PAGE HERO — INNER PAGES
   ───────────────────────────────────────────────────── */
.page-hero {
    position: relative;
    background: var(--clr-bg-primary);
    padding: 160px 0 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 87, 51, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 10L110 40V80L60 110L10 80V40L60 10Z' fill='none' stroke='%23F5F5F0' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 120px 120px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(242, 238, 233, 0.35);
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    color: rgba(242, 238, 233, 0.5);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--clr-accent); }

.breadcrumb-sep { font-size: 0.7rem; }

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--clr-text-primary);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    max-width: 700px;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(242, 238, 233, 0.5);
    line-height: 1.7;
    max-width: 560px;
}


/* ─────────────────────────────────────────────────────
   8. MARQUEE STRIP
   ───────────────────────────────────────────────────── */
.marquee-strip {
    background: var(--clr-accent);
    overflow: hidden;
    padding: 0.9rem 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-bg-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.marquee-separator {
    display: inline-block;
    margin: 0 1.5rem;
    color: rgba(19, 21, 31, 0.35);
    font-size: 1rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ─────────────────────────────────────────────────────
   9. SERVICES SECTION
   ───────────────────────────────────────────────────── */
.services {
    background: var(--clr-bg-light);
    padding: var(--space-3xl) 0;
}

.services .section-tag,
.services .section-heading {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: #fff;
    border: 1px solid var(--clr-border-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--clr-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(255, 87, 51, 0.15);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--clr-accent);
    margin-bottom: var(--space-md);
}

.service-icon svg { width: 100%; height: 100%; }

.service-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-xs);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted-light);
    line-height: 1.65;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-accent);
    transition: gap var(--transition-fast);
}

.service-card-link:hover { gap: 0.65rem; }


/* ─────────────────────────────────────────────────────
   10. SERVICE DETAIL SECTIONS (services.html)
   ───────────────────────────────────────────────────── */
.service-detail {
    padding: var(--space-3xl) 0;
}

.service-detail:nth-child(even) {
    background: var(--clr-bg-light-alt);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.service-detail-grid--reverse .service-detail-content {
    order: 1;
}

.service-detail-grid--reverse .service-detail-visual {
    order: 2;
}

.service-detail-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--clr-accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-sm);
}

.service-detail-text {
    font-size: 0.95rem;
    color: var(--clr-text-muted-light);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clr-text-dark);
}

.service-feature-check {
    width: 20px;
    height: 20px;
    background: var(--clr-accent-glow);
    color: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Service visual blocks */
.service-visual-block {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.service-visual-block--seo {
    background: linear-gradient(135deg, #13151F 0%, #2A1810 100%);
}

.service-visual-block--social {
    background: linear-gradient(135deg, #171922 0%, #291A12 100%);
}

.service-visual-block--ads {
    background: linear-gradient(135deg, #1C1E2A 0%, #2E1A0E 100%);
}

.service-visual-block--web {
    background: linear-gradient(135deg, #13151F 0%, #24160D 100%);
}

.service-visual-block--brand {
    background: linear-gradient(135deg, #1C1E2A 0%, #2A1A10 100%);
}

.service-visual-block--content {
    background: linear-gradient(135deg, #171922 0%, #261910 100%);
}

.service-visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.service-visual-icon {
    width: 72px;
    height: 72px;
    color: var(--clr-accent);
    opacity: 0.6;
    margin-bottom: var(--space-sm);
}

.service-visual-icon svg { width: 100%; height: 100%; }

.service-visual-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(242, 238, 233, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Decorative elements inside visual blocks */
.service-visual-block::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 87, 51, 0.1);
    border-radius: var(--radius-lg);
    transform: rotate(15deg);
}

.service-visual-block::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 170, 59, 0.05);
    border-radius: 50%;
}


/* ─────────────────────────────────────────────────────
   11. WHY CHOOSE US
   ───────────────────────────────────────────────────── */
.why-us {
    background: var(--clr-bg-primary);
    padding: var(--space-3xl) 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.why-us-desc {
    font-size: 1rem;
    color: rgba(242, 238, 233, 0.55);
    line-height: 1.75;
    max-width: 480px;
}

.why-us-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.value-point {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--clr-accent);
    background: rgba(255, 87, 51, 0.08);
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.value-icon svg { width: 100%; height: 100%; }

.value-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-primary);
    margin-bottom: 0.2rem;
}

.value-desc {
    font-size: 0.875rem;
    color: rgba(245, 245, 240, 0.45);
    line-height: 1.55;
}


/* ─────────────────────────────────────────────────────
   12. PROCESS SECTION / TIMELINE
   ───────────────────────────────────────────────────── */
.process-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-light);
}

.process-section--dark {
    background: var(--clr-bg-primary);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Vertical connector line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 39px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--clr-accent), var(--clr-accent-secondary));
    opacity: 0.2;
}

.process-step {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.process-step-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--clr-bg-white);
    border: 2px solid var(--clr-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-accent);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(255, 87, 51, 0.08);
}

.process-section--dark .process-step-marker {
    background: var(--clr-bg-secondary);
}

.process-step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.35rem;
}

.process-section--dark .process-step-title {
    color: var(--clr-text-primary);
}

.process-step-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted-light);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.process-section--dark .process-step-desc {
    color: rgba(245, 245, 240, 0.45);
}

.process-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.process-step-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    background: var(--clr-accent-glow);
    color: var(--clr-accent);
    letter-spacing: 0.02em;
}

.process-section--dark .process-step-tag {
    background: rgba(255, 87, 51, 0.08);
}

/* Process - Horizontal compact (homepage) */
.process-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.process-compact-step {
    text-align: center;
    position: relative;
}

.process-compact-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--clr-accent);
    opacity: 0.3;
}

.process-compact-step:last-child::after { display: none; }

.process-compact-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    background: rgba(255, 87, 51, 0.06);
    border: 1.5px solid rgba(255, 87, 51, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.process-section--dark .process-compact-number {
    background: rgba(255, 87, 51, 0.06);
    border-color: rgba(255, 87, 51, 0.15);
}

.process-compact-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.process-section--dark .process-compact-title {
    color: var(--clr-text-primary);
}

.process-compact-desc {
    font-size: 0.8rem;
    color: var(--clr-text-muted-light);
    line-height: 1.5;
}

.process-section--dark .process-compact-desc {
    color: rgba(242, 238, 233, 0.4);
}


/* ─────────────────────────────────────────────────────
   13. PORTFOLIO SECTION
   ───────────────────────────────────────────────────── */
.portfolio {
    background: var(--clr-bg-light);
    padding: var(--space-3xl) 0;
}

.portfolio .section-tag,
.portfolio .section-heading {
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: var(--space-md);
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-card--tall { grid-row: span 2; }

.portfolio-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--thumb-from, #FF5733), var(--thumb-to, #0A3D5C));
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-thumb-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 21, 31, 0.88);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-accent);
    margin-bottom: var(--space-xs);
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-text-primary);
    margin-bottom: 0.35rem;
}

.portfolio-metric {
    font-size: 0.875rem;
    color: rgba(242, 238, 233, 0.55);
    margin-bottom: var(--space-sm);
}

.portfolio-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-accent);
    transition: color var(--transition-fast);
}

.portfolio-link:hover { color: var(--clr-accent-hover); }

.portfolio-cta {
    text-align: center;
    margin-top: var(--space-xl);
}


/* ─────────────────────────────────────────────────────
   14. CASE STUDY CARDS (work.html)
   ───────────────────────────────────────────────────── */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.case-study-card {
    background: var(--clr-bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.case-study-thumb {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--thumb-from, #FF5733), var(--thumb-to, #074A8A));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.case-study-thumb-label {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: rgba(255,255,255,0.12);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.case-study-industry-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0,0,0,0.5);
    color: var(--clr-text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}

.case-study-body {
    padding: var(--space-lg);
}

.case-study-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.35rem;
}

.case-study-excerpt {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.case-study-results {
    display: flex;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--clr-border-dark);
}

.case-study-result {
    text-align: center;
}

.case-study-result-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.case-study-result-label {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ─────────────────────────────────────────────────────
   14b. WEB DEV PROJECT SHOWCASE (work.html)
   ───────────────────────────────────────────────────── */
.webdev-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-light);
}

.webdev-section .section-tag,
.webdev-section .section-heading {
    text-align: center;
}

.webdev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

/* Full-width featured project */
.webdev-grid .webdev-card--featured {
    grid-column: 1 / -1;
}

.webdev-card {
    background: var(--clr-bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
}

.webdev-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}

/* Browser mockup chrome bar */
.webdev-card-browser {
    background: var(--clr-bg-primary);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dot--red { background: #FF5F56; }
.browser-dot--yellow { background: #FFBD2E; }
.browser-dot--green { background: #27C93F; }

.browser-url {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-family: 'DM Sans', monospace;
    color: rgba(242, 238, 233, 0.35);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Project preview area */
.webdev-card-preview {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, var(--thumb-from, #13151F), var(--thumb-to, #1B3A5C));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webdev-card--featured .webdev-card-preview {
    height: 340px;
}

.webdev-card-preview-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.08);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.webdev-card--featured .webdev-card-preview-label {
    font-size: 2.5rem;
}

/* Decorative grid overlay inside preview */
.webdev-card-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 87, 51, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 87, 51, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Project info body */
.webdev-card-body {
    padding: var(--space-lg);
}

.webdev-card--featured .webdev-card-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-lg);
    align-items: start;
}

.webdev-card-type {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-accent);
    background: var(--clr-accent-glow);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: var(--space-xs);
}

.webdev-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.35rem;
}

.webdev-card--featured .webdev-card-title {
    font-size: 1.4rem;
}

.webdev-card-desc {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

/* Tech stack tags */
.webdev-card-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: var(--space-md);
}

.stack-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    background: var(--clr-bg-primary);
    color: rgba(242, 238, 233, 0.55);
    letter-spacing: 0.02em;
}

.stack-tag--highlight {
    background: var(--clr-accent);
    color: var(--clr-bg-primary);
}

/* Project links */
.webdev-card-links {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.webdev-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-accent);
    transition: gap var(--transition-fast);
}

.webdev-card-link:hover {
    gap: 0.6rem;
}

.webdev-card-link--fill {
    background: var(--clr-accent);
    color: var(--clr-bg-primary);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.webdev-card-link--fill:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-1px);
}

/* Stats mini bar inside featured cards */
.webdev-card-stats {
    display: flex;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--clr-border-dark);
    margin-top: var(--space-md);
}

.webdev-stat {
    text-align: center;
}

.webdev-stat-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.webdev-stat-label {
    font-size: 0.65rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Featured card right column (stats + link) */
.webdev-card-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-end;
    padding-top: 0.5rem;
}

/* Section tab filter */
.work-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.work-tab {
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted-light);
    border: 1.5px solid var(--clr-border-dark);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.work-tab:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.work-tab.active {
    background: var(--clr-accent);
    color: var(--clr-bg-primary);
    border-color: var(--clr-accent);
}

/* Section heading with divider */
.work-section-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text-muted-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    justify-content: center;
}

.work-section-heading::before,
.work-section-heading::after {
    content: '';
    height: 1px;
    width: 60px;
    background: var(--clr-border-dark);
}


/* ─────────────────────────────────────────────────────
   15. STATS / IMPACT SECTION
   ───────────────────────────────────────────────────── */
.stats-section {
    background: var(--clr-bg-primary);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 51, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border-light);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: rgba(255, 87, 51, 0.2);
    background: rgba(255, 87, 51, 0.03);
}

.stat-card-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--clr-accent);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-card-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(245, 245, 240, 0.45);
}

.stat-card-desc {
    font-size: 0.8rem;
    color: rgba(245, 245, 240, 0.25);
    margin-top: 0.3rem;
}


/* ─────────────────────────────────────────────────────
   16. CLIENT LOGOS
   ───────────────────────────────────────────────────── */
.clients {
    background: var(--clr-bg-light-alt);
    padding: var(--space-xl) 0;
}

.clients-heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-text-muted-light);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.clients-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.client-logo-box {
    width: 140px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(19, 21, 31, 0.06);
    border-radius: var(--radius-base);
    background: rgba(255, 255, 255, 0.5);
}

.client-logo-box span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-text-muted-light);
    letter-spacing: 0.05em;
    opacity: 0.5;
    text-transform: uppercase;
}


/* ─────────────────────────────────────────────────────
   17. TESTIMONIALS
   ───────────────────────────────────────────────────── */
.testimonials {
    background: var(--clr-bg-light);
    padding: var(--space-3xl) 0;
}

.testimonials .section-tag,
.testimonials .section-heading {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: #fff;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--clr-accent);
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    color: var(--clr-accent-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.testimonial-quote {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--clr-text-muted-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-bg-primary);
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-dark);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--clr-text-muted-light);
}


/* ─────────────────────────────────────────────────────
   18. ABOUT SECTION
   ───────────────────────────────────────────────────── */
.about {
    background: var(--clr-bg-secondary);
    padding: var(--space-3xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-desc {
    font-size: 0.95rem;
    color: rgba(242, 238, 233, 0.5);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.about-value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.about-value-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-accent);
    line-height: 1;
}

.about-value-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(242, 238, 233, 0.6);
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-block {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-shape {
    position: absolute;
    border-radius: var(--radius-lg);
}

.about-shape--1 {
    width: 280px; height: 280px;
    border: 1px solid rgba(255, 87, 51, 0.15);
    transform: rotate(15deg);
}

.about-shape--2 {
    width: 220px; height: 220px;
    background: rgba(255, 87, 51, 0.04);
    border: 1px solid rgba(255, 87, 51, 0.1);
    transform: rotate(-10deg);
}

.about-shape--3 {
    width: 160px; height: 160px;
    background: rgba(255, 170, 59, 0.05);
    border: 1px solid rgba(245, 166, 35, 0.12);
    transform: rotate(25deg);
    border-radius: var(--radius-pill);
}

.about-shape--4 {
    width: 100px; height: 100px;
    background: rgba(255, 87, 51, 0.08);
    transform: rotate(-5deg);
}

.about-visual-text {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-visual-big {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-text-primary);
    line-height: 1;
}

.about-visual-small {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(245, 245, 240, 0.45);
    margin-top: 0.5rem;
    line-height: 1.4;
}


/* ─────────────────────────────────────────────────────
   19. TEAM SECTION (about.html)
   ───────────────────────────────────────────────────── */
.team-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.team-card {
    background: var(--clr-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.team-card-photo {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
}

.team-card-photo--1 { background: linear-gradient(135deg, #13151F, #1B3A5C); }
.team-card-photo--2 { background: linear-gradient(135deg, #171922, #2D4A6E); }
.team-card-photo--3 { background: linear-gradient(135deg, #1C1E2A, #1A3552); }
.team-card-photo--4 { background: linear-gradient(135deg, #0A1628, #1E3F66); }

.team-card-info {
    padding: var(--space-md);
    text-align: center;
}

.team-card-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.15rem;
}

.team-card-role {
    font-size: 0.8rem;
    color: var(--clr-accent);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.team-card-bio {
    font-size: 0.8rem;
    color: var(--clr-text-muted-light);
    line-height: 1.5;
}


/* ─────────────────────────────────────────────────────
   20. VALUES CARDS (about.html)
   ───────────────────────────────────────────────────── */
.values-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.value-card {
    padding: var(--space-lg);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    border-color: rgba(255, 87, 51, 0.2);
    background: rgba(255, 87, 51, 0.02);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    color: var(--clr-accent);
    margin-bottom: var(--space-md);
}

.value-card-icon svg { width: 100%; height: 100%; }

.value-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-xs);
}

.value-card-desc {
    font-size: 0.85rem;
    color: rgba(242, 238, 233, 0.4);
    line-height: 1.6;
}


/* ─────────────────────────────────────────────────────
   21. INDUSTRIES SECTION
   ───────────────────────────────────────────────────── */
.industries-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-light-alt);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.industry-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-border-dark);
    transition: all var(--transition-base);
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 87, 51, 0.12);
}

.industry-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto var(--space-sm);
    color: var(--clr-accent);
}

.industry-card-icon svg { width: 100%; height: 100%; }

.industry-card-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text-dark);
}


/* ─────────────────────────────────────────────────────
   22. FAQ / ACCORDION
   ───────────────────────────────────────────────────── */
.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-light);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--clr-border-dark);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--clr-accent); }

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--clr-accent-glow);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: var(--space-md);
}

.faq-answer-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted-light);
    line-height: 1.7;
}


/* ─────────────────────────────────────────────────────
   23. CTA BANNER
   ───────────────────────────────────────────────────── */
.cta-banner {
    background: var(--clr-bg-primary);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 87, 51, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner--light {
    background: var(--clr-bg-light-alt);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.15;
}

.cta-banner--light .cta-banner-title {
    color: var(--clr-text-dark);
}

.cta-banner-desc {
    font-size: 1rem;
    color: rgba(242, 238, 233, 0.5);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.cta-banner--light .cta-banner-desc {
    color: var(--clr-text-muted-light);
}

.cta-banner-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}


/* ─────────────────────────────────────────────────────
   24. MISSION / STORY (about.html)
   ───────────────────────────────────────────────────── */
.story-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.story-content {
    max-width: 520px;
}

.story-text {
    font-size: 0.95rem;
    color: var(--clr-text-muted-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.story-text:last-child { margin-bottom: 0; }

.story-highlight {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.4;
    padding-left: var(--space-md);
    border-left: 3px solid var(--clr-accent);
    margin: var(--space-lg) 0;
}

/* Story visual */
.story-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-visual-block {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/3;
    background: var(--clr-bg-primary);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-visual-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 87, 51, 0.06));
}

.story-visual-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--clr-text-primary);
}

.story-visual-year {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: var(--clr-accent);
    opacity: 0.15;
    line-height: 1;
}

.story-visual-tagline {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: -0.5rem;
}

.story-visual-sub {
    font-size: 0.85rem;
    color: rgba(242, 238, 233, 0.4);
    margin-top: 0.25rem;
}


/* ─────────────────────────────────────────────────────
   25. WHAT TO EXPECT (process.html)
   ───────────────────────────────────────────────────── */
.expect-section {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-light-alt);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.expect-card {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-border-dark);
    transition: all var(--transition-base);
}

.expect-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.expect-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--space-md);
    color: var(--clr-accent);
    background: var(--clr-accent-glow);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.expect-card-icon svg { width: 100%; height: 100%; }

.expect-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.35rem;
}

.expect-card-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted-light);
    line-height: 1.6;
}


/* ─────────────────────────────────────────────────────
   26. CONTACT SECTION
   ───────────────────────────────────────────────────── */
.contact {
    background: var(--clr-bg-light);
    padding: var(--space-3xl) 0;
}

.contact .section-tag,
.contact .section-heading {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-top: var(--space-md);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--clr-bg-primary);
    color: var(--clr-accent);
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
}

.contact-info-icon svg { width: 100%; height: 100%; }

.contact-info-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    margin-bottom: 0.2rem;
}

.contact-info-item p {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
    line-height: 1.55;
}

.contact-form {
    background: #fff;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-group { margin-bottom: var(--space-md); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border: 1.5px solid rgba(19, 21, 31, 0.1);
    border-radius: var(--radius-base);
    background: var(--clr-bg-light);
    color: var(--clr-text-dark);
    transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--clr-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B7E' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 0.95rem;
    font-size: 1rem;
}

.form-message {
    margin-top: var(--space-sm);
    padding: 0;
    font-size: 0.875rem;
    border-radius: var(--radius-base);
    transition: all var(--transition-fast);
}

.form-message.success {
    padding: 0.85rem 1rem;
    background: rgba(255, 87, 51, 0.08);
    color: #E8461F;
    border: 1px solid rgba(255, 87, 51, 0.2);
}

.form-message.error {
    padding: 0.85rem 1rem;
    background: rgba(231, 76, 60, 0.08);
    color: #C0392B;
    border: 1px solid rgba(231, 76, 60, 0.2);
}


/* ─────────────────────────────────────────────────────
   27. FOOTER
   ───────────────────────────────────────────────────── */
.site-footer {
    background: var(--clr-bg-primary);
    padding: var(--space-3xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--clr-border-light);
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(242, 238, 233, 0.4);
    line-height: 1.7;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: var(--space-xs);
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-base);
    background: rgba(245, 245, 240, 0.05);
    color: rgba(242, 238, 233, 0.5);
    transition: all var(--transition-fast);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
    background: var(--clr-accent);
    color: var(--clr-bg-primary);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-contact li {
    font-size: 0.875rem;
    color: rgba(245, 245, 240, 0.45);
    transition: color var(--transition-fast);
    line-height: 1.55;
}

.footer-links a:hover { color: var(--clr-accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(242, 238, 233, 0.3);
}

.footer-credit {
    font-size: 0.75rem;
    color: rgba(242, 238, 233, 0.2);
}


/* ─────────────────────────────────────────────────────
   28. FLOATING WHATSAPP BUTTON
   ───────────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.whatsapp-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--clr-whatsapp);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all var(--transition-base);
}

.whatsapp-float:hover .whatsapp-label {
    max-width: 160px;
    opacity: 1;
    padding-right: 0.5rem;
}

.whatsapp-icon {
    width: 54px;
    height: 54px;
    background: var(--clr-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    animation: whatsappPulse 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

.whatsapp-icon svg { width: 28px; height: 28px; }

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.08); }
}


/* ─────────────────────────────────────────────────────
   29. BACK TO TOP
   ───────────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 34px;
    z-index: 998;
    width: 40px;
    height: 40px;
    background: var(--clr-bg-primary);
    color: var(--clr-text-primary);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--clr-accent);
    color: var(--clr-bg-primary);
    border-color: var(--clr-accent);
}


/* ─────────────────────────────────────────────────────
   30. RESPONSIVE — TABLET
   ───────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .about-grid, .why-us-grid, .contact-grid, .story-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .service-detail-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .service-detail-grid--reverse .service-detail-content { order: 0; }
    .service-detail-grid--reverse .service-detail-visual { order: 0; }
    .about-visual { order: -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .expect-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .case-studies-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .webdev-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .webdev-card--featured .webdev-card-body { grid-template-columns: 1fr; }
    .webdev-card-meta { align-items: flex-start; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .process-compact { grid-template-columns: repeat(2, 1fr); }
    .process-compact-step:nth-child(2)::after { display: none; }
}


/* ─────────────────────────────────────────────────────
   31. RESPONSIVE — MOBILE
   ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(19, 21, 31, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px var(--space-lg) var(--space-lg);
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-link { font-size: 1.1rem; color: var(--clr-text-primary); }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero-headline br { display: none; }
    .hero-stats { gap: var(--space-md); }
    .stat-number { font-size: 1.35rem; }

    .services-grid,
    .case-studies-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .portfolio-card--tall { grid-row: span 1; }
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(19, 21, 31, 0.9) 0%, transparent 100%);
    }

    .client-logo-box { width: 120px; }

    .form-row { grid-template-columns: 1fr; }
    .service-features { grid-template-columns: 1fr; }

    .about-values { grid-template-columns: 1fr; }
    .about-visual-block { width: 260px; height: 260px; }
    .about-shape--1 { width: 220px; height: 220px; }
    .about-shape--2 { width: 170px; height: 170px; }
    .about-shape--3 { width: 120px; height: 120px; }
    .about-shape--4 { width: 80px; height: 80px; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .process-compact { grid-template-columns: 1fr 1fr; }
    .process-compact-step::after { display: none; }

    .process-timeline::before { left: 19px; }
    .process-step-marker { width: 40px; height: 40px; font-size: 0.9rem; }
    .process-step { gap: var(--space-md); }

    .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-icon { width: 48px; height: 48px; }
    .whatsapp-icon svg { width: 24px; height: 24px; }
    .back-to-top { bottom: 80px; right: 26px; }

    .page-hero { padding: 130px 0 60px; }
    .page-hero-title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
}


/* ─────────────────────────────────────────────────────
   32. RESPONSIVE — SMALL MOBILE
   ───────────────────────────────────────────────────── */
@media (max-width: 480px) {
    :root { --container-padding: 1rem; }

    .hero { padding: 100px var(--container-padding) 60px; }
    .hero-stats { flex-direction: column; gap: var(--space-sm); }
    .stat-item { display: flex; align-items: center; gap: var(--space-xs); }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 280px; }

    .section-heading { font-size: 1.75rem; }

    .clients-grid { gap: var(--space-xs); }
    .client-logo-box { width: 100px; height: 44px; }
    .client-logo-box span { font-size: 0.65rem; }

    .stats-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .industries-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .process-compact { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }

    .cta-banner-actions { flex-direction: column; align-items: center; }
    .cta-banner-actions .btn { width: 100%; max-width: 280px; }
}
