/* ============================================
   Mid Ohio Glass — Style System
   Palette: Midnight Blue + Mint
   Fonts: Playfair Display + Inter
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --midnight: #0A1F3F;
  --midnight-light: #132D54;
  --midnight-deep: #061429;
  --mint: #7FBFB5;
  --mint-light: #A8D5CE;
  --mint-pale: #D4EDED;
  --cream: #F5F2ED;
  --cream-dark: #EDE8E0;
  --warm-gray: #8A8580;
  --text-dark: #1A1A1A;
  --text-body: #3D3D3D;
  --text-muted: #6B6560;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(10, 31, 63, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 31, 63, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 31, 63, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--midnight);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 16px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 242, 237, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 31, 63, 0.07);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(245, 242, 237, 0.97);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: -0.01em;
}

.logo-accent {
  color: var(--mint);
}

.logo-mark {
  color: var(--midnight);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  gap: 8px;
}

.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-list a:hover {
  color: var(--midnight);
  background: rgba(10, 31, 63, 0.06);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--midnight);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--midnight-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--midnight);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger {
  position: relative;
  margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 76px;
  background: var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 60px 0 0;
}

.hero-content {
  padding-right: 16px;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(127, 191, 181, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--midnight);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.headline-accent {
  color: var(--mint);
  font-style: italic;
}

.hero-body {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--midnight);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--midnight-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--midnight);
  border: 1.5px solid var(--midnight);
}

.btn-secondary:hover {
  background: var(--midnight);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--midnight);
  border: 1.5px solid var(--midnight);
}

.btn-outline-light:hover {
  background: var(--midnight);
  color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-trust {
  display: flex;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--mint);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 600 / 750;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-accent-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--midnight);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.accent-card-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mint-light);
  line-height: 1;
  margin-bottom: 4px;
}

.accent-card-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

.hero-rule {
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-light) 50%, transparent 100%);
  margin-top: 0;
}

/* ---------- SECTION COMMON ---------- */
.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--midnight);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.title-accent {
  color: var(--mint);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(127, 191, 181, 0.3);
  background: var(--white);
}

.service-card--featured {
  background: var(--midnight);
  color: var(--white);
  border: none;
}

.service-card--featured:hover {
  background: var(--midnight-light);
  border-color: transparent;
}

.service-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--mint);
  color: var(--midnight);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(127, 191, 181, 0.15);
  margin-bottom: 24px;
  color: var(--mint);
}

.service-card--featured .service-icon {
  background: rgba(127, 191, 181, 0.25);
  color: var(--mint-light);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card--featured .service-title {
  color: var(--white);
}

.service-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-card--featured .service-desc {
  color: rgba(255, 255, 255, 0.7);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.service-card--featured .service-features li {
  color: rgba(255, 255, 255, 0.65);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.service-card--featured .service-features li::before {
  background: var(--mint-light);
}

/* ---------- WHY US ---------- */
.why-us {
  padding: 100px 0;
  background: var(--cream);
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.feature-content h4 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-us-image-stack {
  position: relative;
}

.image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 500 / 620;
}

.image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-float {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- PROCESS ---------- */
.process {
  padding: 100px 0;
  background: var(--midnight);
  color: var(--white);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-header .section-kicker {
  color: var(--mint-light);
}

.process-header .section-title {
  color: var(--white);
}

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

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(127, 191, 181, 0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.step-connector {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), transparent);
  margin: 24px auto 0;
  opacity: 0.4;
}

.step:last-child .step-connector {
  display: none;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 560 / 640;
}

.about-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content-col {
  padding-left: 8px;
}

.about-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(10, 31, 63, 0.1);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  background: rgba(10, 31, 63, 0.12);
  align-self: stretch;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--mint-pale) 0%, var(--cream) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text {
  flex: 1;
}

.cta-kicker {
  color: var(--midnight);
  background: rgba(10, 31, 63, 0.08);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--midnight);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 440px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

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

.contact-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--mint);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item address,
.contact-item span {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
  font-style: normal;
}

.contact-item a {
  color: var(--midnight);
  font-weight: 500;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--mint);
}

.contact-form-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(127, 191, 181, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
}

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

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  color: var(--mint);
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--midnight);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.contact-form.hidden,
.form-success.hidden {
  display: none;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--midnight-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-light {
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--mint-light);
}

.footer-contact address {
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 12px;
}

.footer-contact p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-accent-card {
    left: 16px;
    bottom: -16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-layout,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content-col {
    padding-left: 0;
  }

  .why-us-image-stack {
    max-width: 440px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .primary-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .nav-list a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 16px;
    justify-content: center;
    font-size: 1rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 63, 0.4);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  .hero-headline {
    font-size: clamp(1.875rem, 7vw, 2.75rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 16px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step-connector {
    display: none;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-col {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .image-float {
    right: -8px;
    bottom: -16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .services,
  .why-us,
  .process,
  .about,
  .contact {
    padding: 72px 0;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid {
    padding-top: 40px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .hero-accent-card {
    left: 8px;
    bottom: -12px;
    padding: 16px 20px;
  }

  .accent-card-number {
    font-size: 1.5rem;
  }
}
