body { background: var(--fog); color: var(--ink); }
body::before { content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-size: 200px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 18px 5%; background: rgba(13,27,42,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(212,98,26,0.15); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-top { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.12em; color: var(--white); line-height: 1; }
.nav-logo-sub { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber); font-weight: 300; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--amber-light); }
.nav-cta { background: var(--amber) !important; color: var(--white) !important; padding: 8px 20px !important; font-weight: 500 !important; cursor: pointer; border: none; font-family: 'IBM Plex Sans', sans-serif; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-cta:hover { background: var(--amber-light) !important; }

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(to right, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.72) 55%, rgba(13,27,42,0.42) 100%), url('images/hero-images/craneNew.jpeg') center/cover no-repeat; display: flex; align-items: center; position: relative; overflow: hidden; padding: 0 5%; }
.hero-blueprint { display: none; }
.hero-glow { position: absolute; top: -500px; right: -500px; width: 1000px; height: 1000px; border-radius: 50%; background: radial-gradient(circle, rgba(212,98,26,0.45) 0%, transparent 60%); pointer-events: none; }
.hero-content { max-width: 1100px; width: 100%; margin: 0 auto; padding-top: 80px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: end; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,98,26,0.12); border: 1px solid rgba(212,98,26,0.3); color: var(--amber-light); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 13px; margin-bottom: 24px; font-weight: 500; }
.hero-tag span { display: inline-block; width: 6px; height: 6px; background: var(--amber); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.4rem, 6vw, 6.8rem); line-height: 0.92; letter-spacing: 0.03em; color: var(--white); margin-bottom: 24px; text-shadow: 0 2px 16px rgba(0,0,0,0.6); }
h1 .accent { color: var(--amber); }
h1 .thin { color: rgba(255,255,255,1); }
.hero-desc { color: rgba(255,255,255,0.82); font-size: 0.97rem; line-height: 1.8; font-weight: 300; margin-bottom: 36px; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero-desc strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--amber); color: var(--white); padding: 13px 28px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.25s; display: inline-block; font-family: 'IBM Plex Sans', sans-serif; }
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); padding: 13px 28px; font-size: 0.82rem; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.25s; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline { border: 1px solid rgba(255,255,255,0.6); color: #ffffff; padding: 13px 28px; font-size: 0.82rem; letter-spacing: 0.07em; text-transform: uppercase; display: inline-block; transition: all 0.25s; background: transparent; cursor: pointer; font-family: 'IBM Plex Sans', sans-serif; }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.hero-right { padding-bottom: 8px; animation: fadeUp 1s ease 0.4s both; align-self: center; }
.hero-quote { border-left: 3px solid var(--amber); padding: 24px; background: rgba(255,255,255,0.03); }
.hero-quote-text { font-family: 'Lora', serif; font-style: italic; color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 12px; }
.hero-quote-attr { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); font-weight: 500; }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px);} to{opacity:1;transform:translateY(0);} }

/* TICKER */
.ticker { background: var(--amber); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-block; animation: ticker 22s linear infinite; }
.ticker-track span { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.18em; color: var(--ink); margin-right: 48px; }
.ticker-track span::before { content: '◆  '; font-size: 0.5rem; vertical-align: middle; margin-right: 12px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* SHARED */
section { padding: 80px 5%; position: relative; z-index: 1; }
section:not(.hero)::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(14,42,69,0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(14,42,69,0.6) 1px, transparent 1px); background-size: 52px 52px; opacity: 0.14; pointer-events: none; z-index: 0; }
section.spec-explainer::before, section.pricing::before, section.projects::before { display: none; }
.inner { max-width: 1100px; margin: 0 auto; }
.eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); font-weight: 500; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.eyebrow::before { content:''; display:block; width:28px; height:1px; background:var(--amber); }
h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 16px; }

/* PROBLEM */
.problem { background: var(--fog); }
.problem-story { font-family: 'Lora', serif; font-size: 1.02rem; line-height: 1.85; color: #0d1b2a; max-width: 720px; margin-top: 40px; }
.problem-story p { margin-bottom: 18px; }
.problem-story strong { color: var(--ink); font-weight: 600; }
.problem-story em { color: var(--amber); font-style: normal; font-family: 'IBM Plex Sans', sans-serif; font-weight: 500; font-size: 0.93rem; }
.problem-honest { margin-top: 32px; background: var(--steel); padding: 24px 28px; border-left: 4px solid var(--amber); max-width: 720px; }
.problem-honest-text { color: rgba(255,255,255,0.65); font-size: 1.1rem; line-height: 1.75; font-weight: 300; }
.problem-honest-text strong { color: var(--amber-light); font-weight: 500; }

/* HOW IT WORKS */
.spec-explainer { background: var(--steel); }
.spec-explainer h2 { color: var(--white); }
.spec-intro { color: rgba(255,255,255,0.60); font-size: 0.93rem; line-height: 1.8; font-weight: 300; max-width: 520px; margin-bottom: 44px; }
.spec-timeline-wrap { overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: rgba(212,98,26,0.3) transparent; }
.spec-timeline-wrap::-webkit-scrollbar { height: 4px; }
.spec-timeline-wrap::-webkit-scrollbar-track { background: transparent; }
.spec-timeline-wrap::-webkit-scrollbar-thumb { background: rgba(212,98,26,0.3); border-radius: 2px; }
.spec-timeline { display: flex; align-items: flex-start; min-width: 680px; position: relative; padding-bottom: 8px; }
.spec-timeline::before { content: ''; position: absolute; top: 27px; left: 28px; right: 28px; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(212,98,26,0.5) 8%, rgba(212,98,26,0.5) 92%, transparent 100%); }
.spec-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; position: relative; }
.spec-step-dot { width: 54px; height: 54px; border: 1px solid rgba(212,98,26,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 14px; background: var(--steel); position: relative; z-index: 1; transition: all 0.3s; flex-shrink: 0; }
.spec-step:hover .spec-step-dot { background: var(--amber); border-color: var(--amber); }
.spec-step-title { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 500; margin-bottom: 6px; }
.spec-step-desc { font-size: 0.72rem; color: rgba(255,255,255,0.62); line-height: 1.55; font-weight: 300; }

/* PROJECTS */
.projects { background: var(--ink); position: relative; }
.projects-bg-overlay { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 0; }
.projects .inner { position: relative; z-index: 1; }
.projects h2 { color: var(--white); }
.projects-intro { color: rgba(255,255,255,0.65); font-size: 0.93rem; line-height: 1.8; font-weight: 300; max-width: 520px; margin-bottom: 40px; }
.projects-table { width: 100%; border-collapse: collapse; }
.projects-table thead tr { border-bottom: 1px solid rgba(212,98,26,0.3); }
.projects-table th { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); font-weight: 500; padding: 0 16px 12px 0; text-align: left; }
.projects-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.2s; cursor: pointer; }
.projects-table tbody tr:hover { background: rgba(212,98,26,0.1); }
.projects-table td { padding: 13px 16px 13px 0; font-size: 0.84rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.4; vertical-align: top; }
.projects-table td:first-child { color: rgba(255,255,255,0.85); font-weight: 400; display: flex; justify-content: flex-start; align-items: center; gap: 10px; }
.proj-row-icon { height: 18px; width: 18px; object-fit: contain; flex-shrink: 0; opacity: 0.75; transition: opacity 0.2s; }
.projects-table tbody tr:hover .proj-row-icon { opacity: 1; }
.proj-product { display: inline-block; font-size: 0.66rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 3px 9px; background: rgba(212,98,26,0.12); border: 1px solid rgba(212,98,26,0.25); color: var(--amber-light); white-space: nowrap; }

/* ABOUT */
.about { background: var(--fog); }
.about-grid { display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: start; margin-top: 40px; }
.about-bio { font-family: 'Lora', serif; font-size: 1rem; line-height: 1.82; color: #0d1b2a; max-width: 580px; }
.about-bio p { margin-bottom: 16px; }
.about-bio strong { color: var(--ink); font-weight: 600; }
.about-bio em { color: var(--amber); font-style: italic; }
.about-dodge { margin-top: 16px; padding: 16px 20px; background: var(--steel); border-left: 3px solid var(--amber); font-size: 0.83rem; color: rgba(255,255,255,0.62); line-height: 1.7; font-weight: 300; }
.about-dodge strong { color: var(--amber-light); font-weight: 500; }
.cred-strip { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.cred-tile { background: var(--white); border: 1px solid var(--concrete); padding: 18px 22px; min-width: 140px; }
.cred-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--amber); line-height: 1; margin-bottom: 3px; }
.cred-label { font-size: 0.61rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--mist); line-height: 1.4; }

/* PRICING */
.pricing { background: var(--steel); }
.pricing h2 { color: var(--white); }
.pricing-intro { color: rgba(255,255,255,0.56); font-size: 0.95rem; line-height: 1.8; font-weight: 300; max-width: 540px; margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.price-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 32px 28px; position: relative; border-top: 2px solid transparent; transition: border-top-color 0.3s; }
.price-card.featured { border-top-color: var(--amber); background: rgba(255,255,255,0.10); }
.price-badge { position: absolute; top: -11px; left: 24px; background: var(--amber); color: var(--white); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 3px 12px; font-weight: 500; }
.price-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.06em; color: var(--white); margin-bottom: 7px; }
.price-desc { font-size: 0.84rem; line-height: 1.7; font-weight: 300; color: rgba(255,255,255,0.60); margin-bottom: 22px; }
.price-includes { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.price-includes li { font-size: 0.82rem; display: flex; gap: 9px; align-items: flex-start; color: rgba(255,255,255,0.5); }
.price-includes li::before { content: '✓'; color: var(--amber); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

/* CONTACT */
.contact { background: var(--fog); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; }
.contact h2 { color: var(--ink); margin-bottom: 14px; }
.contact-blurb { color: #6b8399; font-size: 0.91rem; line-height: 1.8; font-weight: 300; margin-bottom: 6px; }
.form-direct { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--concrete); display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.form-direct span { font-size: 0.9rem; color: #6b8399; }
.form-direct a { color: var(--amber); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: opacity 0.2s; }
.form-direct a:hover { opacity: 0.75; }
.contact-detail { display: flex; align-items: center; gap: 12px; color: #6b8399; font-size: 0.85rem; margin-bottom: 10px; }
.contact-detail .icon { width: 30px; height: 30px; background: var(--steel); color: var(--amber); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }

/* WHAT HAPPENS NEXT */
.contact-next-steps { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--concrete); }
.next-steps-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); font-weight: 500; margin-bottom: 18px; }
.next-step { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.next-step:last-child { margin-bottom: 0; }
.next-step-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--amber); line-height: 1.1; min-width: 30px; }
.next-step-body { font-size: 0.84rem; color: #6b8399; line-height: 1.65; font-weight: 300; padding-top: 3px; }

/* USA MAP */
.contact-map-wrap { margin-top: 32px; }
.map-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); font-weight: 500; margin-bottom: 10px; }
.map-container { position: relative; line-height: 0; }
.usa-map-img { width: 100%; height: auto; display: block; filter: brightness(0) opacity(0.1); }
.map-dot { position: absolute; display: block; width: 6px; height: 6px; background: var(--amber); border-radius: 50%; transform: translate(-50%, -50%); }
.map-dot::after { content: ''; position: absolute; inset: 0; background: var(--amber); border-radius: 50%; transform-origin: center; animation: dot-ring-pulse 2.8s ease-out infinite; }
@keyframes dot-ring-pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(4); opacity: 0; } }
.map-caption { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--mist); margin-top: 8px; line-height: 1.5; }

/* FOOTER */
footer { background: var(--ink); padding: 36px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; border-top: 1px solid rgba(212,98,26,0.15); }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.12em; color: var(--white); }
.footer-logo span { color: var(--amber); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.28); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-copy { color: rgba(255,255,255,0.18); font-size: 0.7rem; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }

/* TABLE IMAGE LIGHTBOX */
.img-overlay { position: fixed; inset: 0; z-index: 600; background: rgba(5,10,15,0.95); display: flex; align-items: center; justify-content: center; padding: 48px; opacity: 0; pointer-events: none; transition: opacity 0.3s; cursor: zoom-out; }
.img-overlay.open { opacity: 1; pointer-events: all; }
.img-container { position: relative; width: min(900px, 90vw); cursor: default; }
.img-close { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.45); border: none; cursor: pointer; color: #e74c3c; font-size: 2rem; line-height: 1; transition: color 0.2s, background 0.2s; padding: 4px 10px; z-index: 1; border-radius: 2px; }
.img-close:hover { color: #ff6b6b; background: rgba(0,0,0,0.7); }
.img-lightbox { width: 100%; height: 60vh; object-fit: cover; display: block; box-shadow: 0 32px 80px rgba(0,0,0,0.6); }

/* GALLERY MODAL */
.gallery-overlay { position: fixed; inset: 0; z-index: 600; background: rgba(5,10,15,0.97); display: flex; align-items: stretch; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.gallery-overlay.open { opacity: 1; pointer-events: all; }
.gallery-modal { width: 100%; display: flex; flex-direction: column; }
.gallery-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.gallery-label { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.2em; color: var(--amber); }
.gallery-counter { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.gallery-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.35); font-size: 1.3rem; line-height: 1; transition: color 0.2s; padding: 4px 8px; }
.gallery-close:hover { color: var(--white); }
.gallery-main { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; min-height: 0; overflow: hidden; }
.gallery-image-wrap { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 24px 80px; }
.gallery-img { max-width: 100%; max-height: 100%; object-fit: contain; transition: opacity 0.15s ease; }
.gallery-img.fading { opacity: 0; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.25); font-size: 1.8rem; padding: 24px 20px; transition: color 0.2s; z-index: 10; line-height: 1; }
.gallery-arrow:hover { color: var(--amber); }
.gallery-prev { left: 0; }
.gallery-next { right: 0; }
.gallery-thumbs { display: flex; gap: 6px; padding: 14px 28px 20px; overflow-x: auto; flex-shrink: 0; scrollbar-width: none; border-top: 1px solid rgba(255,255,255,0.06); justify-content: center; flex-wrap: wrap; }
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb { width: 56px; height: 56px; object-fit: cover; cursor: pointer; opacity: 0.3; transition: opacity 0.2s, border-color 0.2s; flex-shrink: 0; border: 1px solid transparent; }
.gallery-thumb:hover { opacity: 0.65; }
.gallery-thumb.active { opacity: 1; border-color: var(--amber); }

/* HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* RESPONSIVE */
@media (max-width: 1400px) {
  .hero { min-height: unset; align-items: flex-start; padding-top: 100px; padding-bottom: 60px; background-size: cover; background-position: 90% center; }
}

@media (max-width: 900px) {
  nav { padding: 16px 5%; position: relative; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(13,27,42,0.98); border-bottom: 1px solid rgba(212,98,26,0.15); padding: 8px 0 16px; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links li:last-child { border-bottom: none; padding: 12px 5%; }
  .nav-links a { display: block; padding: 12px 5%; font-size: 0.76rem; white-space: nowrap; text-align: left; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding-top: 0; }
  .hero-right { animation: none; opacity: 1; transform: none; }
  .about-grid { grid-template-columns: 1fr; }
  .cred-strip { flex-direction: row; flex-wrap: wrap; }
  .cred-tile { flex: 1; min-width: 100px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .modal { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cred-strip { flex-direction: column; }
  .cred-tile { display: flex; align-items: center; gap: 16px; padding: 14px 18px; min-width: unset; }
  .cred-num { font-size: 1.8rem; margin-bottom: 0; min-width: 80px; }
  .cred-label { font-size: 0.65rem; line-height: 1.3; }
}

/* SPEC TIMELINE, VERTICAL ON MOBILE */
@media (max-width: 640px) {
  .spec-timeline-wrap { overflow-x: unset; }
  .spec-timeline { flex-direction: column; min-width: unset; gap: 0; }
  .spec-timeline::before { top: 27px; left: 27px; bottom: 27px; right: unset; width: 1px; height: auto; background: linear-gradient(180deg, transparent 0%, rgba(212,98,26,0.5) 8%, rgba(212,98,26,0.5) 92%, transparent 100%); }
  .spec-step { display: grid; grid-template-columns: 54px 1fr; grid-template-rows: auto auto; column-gap: 16px; row-gap: 4px; text-align: left; padding: 0 0 28px 0; }
  .spec-step:last-child { padding-bottom: 0; }
  .spec-step-dot { grid-column: 1; grid-row: 1 / 3; align-self: start; margin-bottom: 0; flex-shrink: 0; }
  .spec-step-title { grid-column: 2; grid-row: 1; align-self: end; }
  .spec-step-desc { grid-column: 2; grid-row: 2; align-self: start; text-align: left; }
}

/* PROJECTS TABLE, MOBILE CARDS */
@media (max-width: 640px) {
  .projects-table thead { display: none; }
  .projects-table tbody tr { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .projects-table td { display: block; padding: 0; color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.4; }
  .projects-table td + td { margin-top: 6px; }
  .projects-table td:first-child { color: var(--white); font-weight: 500; font-size: 0.9rem; margin-bottom: 6px; display: flex; justify-content: flex-start; align-items: center; gap: 10px; }
  .projects-table td:first-child::after { content: none; }
  .projects-table td::before { content: attr(data-label); display: inline; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-right: 6px; font-weight: 500; }
  .projects-table td:first-child::before { display: none; }
  .proj-product { background: none; border: none; padding: 0; color: var(--amber-light); font-size: 0.78rem; letter-spacing: 0.05em; }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  section { padding: 60px 5%; }
  h1 { font-size: clamp(2.8rem, 11vw, 3.4rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .hero { padding-top: 80px; }
}
