/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #141110;
  color: #F5F0EB;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.2; }
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #C87941; color: #141110; padding: .5rem 1rem;
  z-index: 9999; font-weight: 600; border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg-deep: #141110;
  --bg-card: #1C1917;
  --bg-elevated: #252220;
  --bg-surface: #2C2724;
  --terracotta: #C87941;
  --terracotta-light: #D4956A;
  --terracotta-dark: #A86030;
  --sand: #D4A06A;
  --sand-light: #E8C9A0;
  --sand-muted: #B8926A;
  --cream: #F5F0EB;
  --cream-soft: #EDE5DB;
  --text-primary: #F5F0EB;
  --text-secondary: #B8AFA7;
  --text-muted: #8A8078;
  --gold: #D4A06A;
  --gold-light: #E8C9A0;
  --gold-dark: #B8864A;
  --border: rgba(212, 160, 106, 0.15);
  --border-light: rgba(212, 160, 106, 0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITY ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.accent-italic { font-style: italic; color: var(--sand); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9375rem; letter-spacing: .01em;
  transition: all var(--transition); white-space: nowrap;
}
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn--gold {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--sand) 100%);
  color: #141110; box-shadow: 0 4px 20px rgba(200, 121, 65, 0.3);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 121, 65, 0.45);
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--sand-light) 100%);
}
.btn--ghost {
  border: 1.5px solid var(--border); color: var(--cream);
  background: rgba(245, 240, 235, 0.04);
}
.btn--ghost:hover {
  border-color: var(--sand); color: var(--sand);
  background: rgba(212, 160, 106, 0.08);
}
.btn--ghost-light {
  border: 1.5px solid var(--border); color: var(--cream-soft);
}
.btn--ghost-light:hover { border-color: var(--sand); color: var(--sand); }
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(20, 17, 16, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}
.site-header.scrolled { background: rgba(20, 17, 16, 0.95); }
.nav-inner {
  display: flex; align-items: center;
  padding-top: 1rem; padding-bottom: 1rem;
}
.logo {
  display: flex; align-items: center; gap: .625rem;
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: 1.125rem; color: var(--cream);
}
.logo-mark {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--terracotta), var(--sand));
  color: #141110; font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: .75rem; letter-spacing: .05em;
  display: flex; align-items: center; justify-content: center;
}
.logo-wordmark { letter-spacing: .02em; }
.nav-menu { margin-left: auto; display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; gap: 1.75rem; }
.nav-list a {
  font-size: .875rem; font-weight: 500; color: var(--text-secondary);
  letter-spacing: .03em; text-transform: uppercase;
  transition: color var(--transition); position: relative;
}
.nav-list a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--sand);
  transition: width var(--transition);
}
.nav-list a:hover { color: var(--sand); }
.nav-list a:hover::after { width: 100%; }
.btn--nav {
  padding: .625rem 1.25rem; font-size: .8125rem;
  background: transparent; border: 1.5px solid var(--terracotta);
  color: var(--sand); box-shadow: none;
}
.btn--nav:hover {
  background: var(--terracotta); color: #141110;
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,121,65,0.3);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: .5rem; margin-left: auto;
}
.nav-toggle-line {
  width: 24px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg-deep);
  padding: 8rem 0 4rem;
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,121,65,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(212,160,106,0.05) 0%, transparent 60%);
}
.hero-pattern::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A06A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sand);
  margin-bottom: 1.5rem;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(212, 160, 106, 0.06);
}
.hero-eyebrow svg { width: 14px; height: 14px; }
.hero-headline {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 500; line-height: 1.1; margin-bottom: 1.5rem;
  color: var(--cream);
}
.hero-headline .accent-italic {
  display: block; margin-top: .25rem;
  font-size: .85em; color: var(--sand);
}
.hero-dek {
  font-size: 1.125rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-number {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 600; color: var(--sand);
  line-height: 1;
}
.stat-label {
  display: block; font-size: .8125rem; color: var(--text-muted);
  margin-top: .375rem; letter-spacing: .03em;
}
.hero-visual { position: relative; }
.hero-image-stack { position: relative; }
.hero-img {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
}
.hero-img--main {
  width: 100%; aspect-ratio: 680/860;
  box-shadow: var(--shadow-lg);
}
.hero-img--main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--accent {
  position: absolute; bottom: -2rem; left: -3rem;
  width: 45%; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 3px solid var(--bg-deep);
}
.hero-img--accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,121,65,0.15) 0%, transparent 60%);
}
.hero-badge {
  position: absolute; top: 2rem; right: -1.5rem;
  display: flex; align-items: center; gap: .625rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: .875rem 1.25rem;
  box-shadow: var(--shadow-md); z-index: 2;
}
.hero-badge svg { width: 20px; height: 20px; color: var(--sand); flex-shrink: 0; }
.hero-badge span { font-size: .8125rem; font-weight: 600; letter-spacing: .04em; color: var(--cream); }

/* ===== SECTIONS ===== */
.section { padding: 7rem 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--sand);
  margin-bottom: 1rem;
  padding: .375rem 1rem; border: 1px solid var(--border);
  border-radius: 100px; background: rgba(212,160,106,0.06);
}
.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  color: var(--cream); margin-bottom: 1rem;
}
.section-dek { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== SERVICES ===== */
.services { background: var(--bg-deep); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 2rem;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--terracotta), var(--sand));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(200,121,65,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; color: var(--sand); }
.service-card-title {
  font-size: 1.1875rem; font-weight: 600; color: var(--cream);
  margin-bottom: .75rem;
}
.service-card-desc { font-size: .9375rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== ABOUT ===== */
.about { background: var(--bg-elevated); overflow: hidden; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-visual { position: relative; }
.about-image-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-main img { width: 100%; aspect-ratio: 580/700; object-fit: cover; }
.about-image-secondary {
  position: absolute; bottom: -2rem; right: -1.5rem;
  width: 50%; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); border: 3px solid var(--bg-elevated);
}
.about-image-secondary img { width: 100%; aspect-ratio: 280/340; object-fit: cover; }
.about-stat-float {
  position: absolute; top: -1.5rem; right: 2rem;
  background: linear-gradient(135deg, var(--terracotta), var(--sand));
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md); z-index: 2;
}
.about-stat-number {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: #141110;
}
.about-stat-text {
  display: block; font-size: .75rem; font-weight: 600;
  color: rgba(20,17,16,0.7); letter-spacing: .05em;
  text-transform: uppercase; margin-top: .125rem;
}
.about-content { max-width: 520px; }
.about-content .section-title { text-align: left; }
.about-body {
  font-size: 1.0625rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 1.25rem;
}
.about-features { margin: 2rem 0 2.5rem; display: grid; gap: .875rem; }
.about-features li {
  display: flex; align-items: center; gap: .875rem;
  font-size: .9375rem; color: var(--cream-soft);
}
.check-icon { width: 20px; height: 20px; color: var(--sand); flex-shrink: 0; }

/* ===== INDUSTRIES ===== */
.industries { background: var(--bg-deep); }
.industries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.industry-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.industry-card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: var(--shadow-lg); }
.industry-card-bg {
  position: absolute; inset: 0;
}
.industry-card-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card:hover .industry-card-bg img { transform: scale(1.08); }
.industry-card-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,17,16,0.92) 0%, rgba(20,17,16,0.4) 50%, transparent 100%);
}
.industry-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem; z-index: 1;
}
.industry-card-content h3 {
  font-size: 1.1875rem; font-weight: 600; color: var(--cream);
  margin-bottom: .5rem;
}
.industry-card-content p {
  font-size: .8125rem; color: var(--text-secondary); line-height: 1.6;
}

/* ===== RELIABILITY ===== */
.reliability {
  padding: 7rem 0;
  background: linear-gradient(135deg, #1C1917 0%, #252220 50%, #1C1917 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.reliability-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.reliability-title { margin-bottom: 1.25rem; }
.reliability-dek { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; }
.reliability-features { display: grid; gap: 2rem; }
.rel-feature { position: relative; padding-left: 3rem; }
.rel-feature-num {
  position: absolute; left: 0; top: 0;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--terracotta), var(--sand));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.rel-feature h4 {
  font-size: 1.125rem; font-weight: 600; color: var(--cream);
  margin-bottom: .375rem;
}
.rel-feature p { font-size: .9375rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-deep); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 2rem;
  position: relative; transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}
.testimonial-quote-mark {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 1; color: var(--sand);
  opacity: .12; pointer-events: none;
}
.testimonial-text {
  font-size: .9375rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 1.5rem;
  padding-top: 1rem;
}
.testimonial-meta { display: flex; flex-direction: column; gap: .25rem; }
.testimonial-name { font-size: .875rem; font-weight: 600; color: var(--cream); }
.testimonial-role { font-size: .8125rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--bg-elevated); }
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.cta-title { margin-bottom: 1rem; }
.cta-dek { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; }
.cta-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.cta-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-size: .8125rem; font-weight: 600; color: var(--cream);
  letter-spacing: .05em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .875rem 1rem;
  color: var(--cream); font-size: .9375rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(212,160,106,0.15);
}
.form-group select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4A06A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--bg-card); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .8125rem; color: var(--text-muted); text-align: center; margin-top: .5rem; }
.form-success {
  text-align: center; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,121,65,0.15); border: 2px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 32px; height: 32px; color: var(--sand); }
.success-title { font-size: 1.5rem; color: var(--cream); }
.form-success p { color: var(--text-secondary); font-size: .9375rem; }

/* ===== CONTACT INFO ===== */
.contact-info { background: var(--bg-deep); border-top: 1px solid var(--border-light); }
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.contact-item { text-align: center; padding: 1.5rem; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(200,121,65,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--sand); }
.contact-item h4 {
  font-size: .875rem; font-weight: 700; color: var(--cream);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem;
}
.contact-item p { font-size: .875rem; color: var(--text-secondary); line-height: 1.7; }
.contact-item a { color: var(--sand); transition: color var(--transition); }
.contact-item a:hover { color: var(--sand-light); }

/* ===== FOOTER ===== */
.site-footer {
  background: #0D0B0A;
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 0;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-tagline { font-size: .9375rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; }
.footer-nav ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-nav a {
  font-size: .875rem; color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--sand); }
.footer-contact p {
  font-size: .875rem; color: var(--text-secondary); line-height: 1.8;
}
.footer-contact a { color: var(--sand); transition: color var(--transition); }
.footer-contact a:hover { color: var(--sand-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .8125rem; color: var(--text-muted); }

/* ===== MOBILE NAV OVERLAY ===== */
.nav-menu.mobile-open {
  display: flex; flex-direction: column;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(20,17,16,0.98);
  backdrop-filter: blur(20px);
  justify-content: center; align-items: center; gap: 0;
}
.nav-menu.mobile-open .nav-list {
  flex-direction: column; align-items: center; gap: 2rem;
}
.nav-menu.mobile-open .nav-list a { font-size: 1.25rem; }
.nav-menu.mobile-open .btn--nav { margin-top: 2rem; font-size: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-content { max-width: 100%; }
  .hero-visual { max-width: 500px; }
  .hero-img--accent { left: -1rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 500px; }
  .reliability-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; flex-direction: column;
    position: fixed; inset: 0; z-index: 999;
    background: rgba(20,17,16,0.98);
    backdrop-filter: blur(20px);
    justify-content: center; align-items: center;
  }
  .nav-menu.open { display: flex; }
  .nav-list { flex-direction: column; align-items: center; gap: 2rem; }
  .nav-list a { font-size: 1.25rem; }
  .btn--nav { margin-top: 1.5rem; font-size: 1rem; }
  .hero { padding: 7rem 0 3rem; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .hero-img--accent { display: none; }
  .hero-badge { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .industries-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-form-wrap { padding: 1.5rem; }
}
