/* =============================================
   Motion Story Lab — style.css  (v2 FIXED)
   Colors : #E98118 (orange) | #1C1C1C (dark) | #FFFFFF (white)
   Fonts  : Syne (headings) | DM Sans (body)
   ============================================= */

/* ─── CSS Variables ─────────────────────────── */
:root {
    --orange       : #E98118;
    --orange-dark  : #C86C0E;
    --orange-light : #FFF3E6;
    --dark         : #1C1C1C;
    --white        : #ffffff;
    --off-white    : #F8F8F8;
    --border       : #E8E8E8;
    --text-body    : #3A3A3A;
    --text-muted   : #7A7A7A;
    --shadow-sm    : 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md    : 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg    : 0 20px 60px rgba(0,0,0,0.14);
    --radius-sm    : 8px;
    --radius-md    : 14px;
    --radius-lg    : 22px;
    --ease         : all 0.3s cubic-bezier(0.4,0,0.2,1);
    --font-head : 'DM Serif Display', serif;
--font-body : 'DM Sans', sans-serif;
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* ─── Typography ────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(2rem,   5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-body); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.accent      { color: var(--orange); }
.text-muted  { color: var(--text-muted); }

/* ─── Layout helpers ────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.section     { padding: 90px 0; }
.section-sm  { padding: 56px 0; }
.section-alt { background: var(--off-white); }

.section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 14px;
}

/* ─── Grid systems ──────────────────────────── */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.four-col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ─── Buttons ───────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--ease);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233,129,24,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn-outline:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-2px);
}
.btn-lg  { padding: 17px 40px; font-size: 1rem; }
.btn-sm  { padding: 9px 20px;  font-size: 0.83rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ─── Site Header ───────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark);
    flex-shrink: 0;
}
.logo-mark {
    width: 36px; height: 36px;
    background: var(--orange);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}
.logo-accent            { color: var(--orange); }
.logo-light .logo-text  { color: #fff; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list > li  { position: relative; }
.nav-list a {
    display: block;
    padding: 8px 11px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: var(--radius-sm);
    transition: var(--ease);
    white-space: nowrap;
}
.nav-list a:hover,
.nav-list a.active { color: var(--orange); background: var(--orange-light); }
.nav-list .arrow   { font-size: 0.65rem; margin-left: 2px; }
.nav-cta           { margin-left: 10px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px); left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 8px;
    z-index: 500;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
    padding: 10px 14px;
    font-size: 0.86rem;
    border-radius: var(--radius-sm);
    color: var(--text-body);
    display: block;
}
.dropdown li a:hover { color: var(--orange); background: var(--orange-light); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--ease);
}
.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); }

/* Page offset for fixed header */
.page-top { padding-top: 74px; }

/* ─── Hero ──────────────────────────────────── */
.hero {
    padding-top: 74px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}
/* Decorative diagonal right panel */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%; height: 100%;
    background: var(--orange-light);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
/* Hero visual column — must not overflow */
.hero-visual  { width: 100%; min-width: 0; }
.hero-content { padding-right: 10px; min-width: 0; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 26px; height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}
.hero h1       { margin-bottom: 20px; }
.hero h1 em    { font-style: normal; color: var(--orange); }
.hero-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.stat-item .stat-num {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.stat-item .stat-num span { color: var(--orange); }
.stat-item .stat-label    { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ─── Placeholder Blocks ────────────────────── */
/*
   KEY FIX: All placeholders are width:100% so they fill their
   parent column. Only height is controlled per class.
   We intentionally remove any max-width that would cause
   grid overflow or layout breakage.
*/
[class*="placeholder-"] {
    background: linear-gradient(135deg, #EFEFEF 0%, #E2E2E2 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    color: #AAAAAA;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    border: 2px dashed #D5D5D5;
    position: relative;
    overflow: hidden;
    width: 100%;
}
[class*="placeholder-"]::before {
    content: '▶';
    font-size: 2.2rem;
    color: #C8C8C8;
    opacity: 0.8;
}

/* Heights only */
.placeholder-900x500 { height: 500px; }
.placeholder-600x400 { height: 400px; }
.placeholder-600x350 { height: 350px; }
.placeholder-600x300 { height: 300px; }
.placeholder-500x300 { height: 300px; }
.placeholder-400x250 { height: 250px; }

/* Avatar — fixed square, stays as circle */
.placeholder-120x120 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    flex-shrink: 0;
}
.placeholder-120x120::before { font-size: 1.4rem; }

/* ─── Cards ─────────────────────────────────── */
.card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* Thumb: placeholder fills edge-to-edge */
.card-thumb { overflow: hidden; }
.card-thumb [class*="placeholder-"] {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.card-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-light);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p  { color: var(--text-muted); font-size: 0.91rem; margin-bottom: 18px; flex: 1; }

/* ─── Stats Row ─────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.stat-block {
    background: #fff;
    padding: 38px 24px;
    text-align: center;
}
.stat-block .num {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.stat-block .num span { color: var(--orange); }
.stat-block .lbl      { font-size: 0.83rem; color: var(--text-muted); margin-top: 8px; }

/* ─── Process Steps ─────────────────────────── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.process-step {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 18px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
    width: 50px; height: 50px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 16px;
}
.process-step h4 { margin-bottom: 8px; font-size: 0.93rem; }
.process-step p  { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

/* ─── Testimonials ──────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars  { color: var(--orange); font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-text   { font-size: 0.96rem; font-style: italic; margin-bottom: 22px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
/* Override avatar size inside testimonial */
.testimonial-author .placeholder-120x120 { width: 52px; height: 52px; flex-shrink: 0; }
.testimonial-author .placeholder-120x120::before { font-size: 0.9rem; }
.author-info strong { display: block; font-family: var(--font-head); font-size: 0.92rem; }
.author-info span   { font-size: 0.79rem; color: var(--text-muted); }
.testimonial-note   { font-size: 0.7rem; color: #BBBBBB; margin-top: 4px; font-style: normal; }

/* ─── Why-Cards ─────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.why-card {
    padding: 28px 22px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
}
.why-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.why-icon {
    width: 50px; height: 50px;
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.why-card h4 { margin-bottom: 8px; }
.why-card p  { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

/* ─── Industries Grid ───────────────────────── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.industry-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px 18px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--ease);
}
.industry-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.industry-icon    { font-size: 1.9rem; margin-bottom: 11px; display: block; }
.industry-card h4 { font-size: 0.92rem; margin-bottom: 4px; }
.industry-card p  { font-size: 0.79rem; color: var(--text-muted); margin: 0; }

/* ─── Locations Strip ───────────────────────── */
.locations-strip { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    background: #fff;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.87rem;
    color: var(--dark);
    transition: var(--ease);
}
.location-tag:hover       { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.location-tag::before     { content: '📍'; font-size: 0.83rem; }

/* ─── Features List ─────────────────────────── */
.features-list { list-style: none; }
.features-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}
.features-list li:last-child { border-bottom: none; }
.features-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 21px; height: 21px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    font-size: 0.66rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ─── FAQ ───────────────────────────────────── */
.faq-list     { max-width: 800px; margin: 0 auto; }
.faq-item     { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.96rem;
    color: var(--dark);
    padding: 0;
    transition: var(--ease);
}
.faq-question:hover  { color: var(--orange); }
.faq-icon {
    width: 27px; height: 27px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: var(--ease);
    line-height: 1;
}
.faq-item.active .faq-icon   { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding-top: 12px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.92rem;
}
.faq-item.active .faq-answer { display: block; }

/* ─── Contact Form ──────────────────────────── */
.contact-form  { width: 100%; }
.form-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group    { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-head);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    color: var(--dark);
    background: #fff;
    transition: var(--ease);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(233,129,24,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select   { appearance: none; cursor: pointer; }

/* ─── Page Hero (inner pages) ───────────────── */
.page-hero {
    background: var(--dark);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 320px; height: 320px;
    background: var(--orange);
    opacity: 0.10;
    border-radius: 50%;
    transform: translate(45%, 45%);
    pointer-events: none;
}
.page-hero .section-label { background: rgba(233,129,24,0.18); }
.page-hero h1             { color: #fff; margin-bottom: 14px; }
.page-hero > .container > p,
.page-hero p              { color: rgba(255,255,255,0.68); max-width: 620px; font-size: 1.02rem; }
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.79rem;
    color: rgba(255,255,255,0.44);
    margin-bottom: 24px;
}
.breadcrumb a      { color: rgba(255,255,255,0.44); transition: var(--ease); }
.breadcrumb a:hover{ color: var(--orange); }
.breadcrumb span   { color: rgba(255,255,255,0.22); }

/* ─── CTA Banner ────────────────────────────── */
.cta-banner {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    left: -60px; top: -60px;
    width: 260px; height: 260px;
    background: var(--orange);
    opacity: 0.12;
    border-radius: 50%;
    pointer-events: none;
}
.cta-banner-content h2  { color: #fff; margin-bottom: 10px; }
.cta-banner-content p   { color: rgba(255,255,255,0.6); max-width: 500px; font-size: 1rem; margin: 0; }
.cta-banner-actions     { flex-shrink: 0; }

/* ─── Highlight Block ───────────────────────── */
.highlight-block {
    background: var(--orange);
    border-radius: var(--radius-lg);
    padding: 42px;
    color: #fff;
}
.highlight-block h2,
.highlight-block h3 { color: #fff; }
.highlight-block p  { color: rgba(255,255,255,0.88); }

/* ─── Badge ─────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--orange-light);
    color: var(--orange);
}
.badge-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }

/* ─── Footer ────────────────────────────────── */
.site-footer  { background: var(--dark); color: rgba(255,255,255,0.72); }
.footer-top   { padding: 76px 0 56px; }
.footer-grid  {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 48px;
}
.footer-tagline { margin: 14px 0 22px; font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-social  { display: flex; gap: 9px; }
.social-link {
    width: 34px; height: 34px;
    border-radius: 7px;
    border: 1.5px solid rgba(255,255,255,0.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700;
    color: rgba(255,255,255,0.55);
    transition: var(--ease);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); background: rgba(233,129,24,0.1); }
.footer-heading {
    font-family: var(--font-head);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}
.footer-links li     { margin-bottom: 9px; }
.footer-links a      { color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: var(--ease); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-info  { margin-top: 22px; }
.footer-contact-info p { font-size: 0.82rem; color: rgba(255,255,255,0.46); margin-bottom: 13px; }
.footer-contact-info a { color: rgba(255,255,255,0.66); transition: var(--ease); }
.footer-contact-info a:hover { color: var(--orange); }
.contact-label {
    font-weight: 700;
    color: rgba(255,255,255,0.34);
    font-size: 0.69rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; }
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.copyright,
.footer-legal       { font-size: 0.79rem; color: rgba(255,255,255,0.3); }
.footer-legal a     { color: rgba(255,255,255,0.3); transition: var(--ease); }
.footer-legal a:hover { color: var(--orange); }

/* ─── Utilities ─────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mb-0  { margin-bottom: 0 !important; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-8  { margin-bottom: 32px; }
.mt-12 { margin-top: 48px; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* ─── Responsive — 1100 px ───────────────────── */
@media (max-width: 1100px) {
    .services-grid   { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid  { grid-template-columns: repeat(2, 1fr); }
    .why-grid        { grid-template-columns: repeat(2, 1fr); }
    .four-col-grid   { grid-template-columns: repeat(2, 1fr); }
    .footer-grid     { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stats-row       { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps   { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Responsive — 768 px ────────────────────── */
@media (max-width: 768px) {

    /* Mobile nav drawer */
    .main-nav {
        display: none;
        position: fixed;
        top: 74px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 22px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        max-height: calc(100vh - 74px);
        overflow-y: auto;
    }
    .main-nav.open   { display: flex; }
    .nav-toggle      { display: flex; }
    .nav-list        { flex-direction: column; width: 100%; gap: 2px; }
    .nav-list > li   { width: 100%; }
    .nav-list a      { padding: 12px 14px; width: 100%; font-size: 0.95rem; }
    /* Hide desktop dropdown on mobile */
    .dropdown        { display: none !important; }
    .nav-cta         { width: 100%; justify-content: center; margin-top: 10px; }

    /* Hero */
    .hero            { min-height: auto; padding: 100px 0 60px; }
    .hero::before    { display: none; }
    .hero-inner      { grid-template-columns: 1fr; gap: 32px; }
    .hero-content    { padding-right: 0; }
    .hero-stats      { gap: 18px; }

    /* Grids */
    .two-col-grid        { grid-template-columns: 1fr; gap: 32px; }
    .three-col-grid      { grid-template-columns: 1fr; }
    .services-grid       { grid-template-columns: 1fr; }
    .portfolio-grid      { grid-template-columns: 1fr; }
    .why-grid            { grid-template-columns: 1fr; }
    .process-steps       { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid   { grid-template-columns: 1fr; }
    .industries-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer-grid         { grid-template-columns: 1fr; gap: 28px; }
    .stats-row           { grid-template-columns: repeat(2, 1fr); }
    .form-grid           { grid-template-columns: 1fr; }

    /* Misc */
    .section             { padding: 60px 0; }
    .section-sm          { padding: 40px 0; }
    .cta-banner          { flex-direction: column; text-align: center; padding: 44px 26px; }
    .cta-banner-content p { max-width: 100%; }
    .cta-banner-actions  { width: 100%; display: flex; flex-direction: column; gap: 12px; }
    .cta-banner-actions .btn { width: 100%; justify-content: center; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .highlight-block     { padding: 30px 24px; }
    .container           { padding: 0 20px; }
}

/* ─── Responsive — 480 px ────────────────────── */
@media (max-width: 480px) {
    .hero-stats      { flex-direction: column; gap: 12px; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .process-steps   { grid-template-columns: 1fr; }
    .stats-row       { grid-template-columns: 1fr; }
    .four-col-grid   { grid-template-columns: 1fr; }
    .container       { padding: 0 16px; }
    h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
    h2 { font-size: clamp(1.35rem, 5vw, 2rem); }
}
