/* ============================================================
   Legal Injury Network — legalinjnet.com
   Palette: Slate #1e293b | Teal #0f766e | Warm White #fafaf8
   Fonts: DM Serif Display + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --slate:      #1e293b;
  --slate-mid:  #334155;
  --teal:       #0f766e;
  --teal-lt:    #14b8a6;
  --teal-bg:    #f0fdfa;
  --amber:      #d97706;
  --white:      #ffffff;
  --warm:       #fafaf8;
  --stone:      #f5f5f4;
  --stone-md:   #e7e5e4;
  --stone-dk:   #78716c;
  --text:       #1c1917;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:     6px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --shadow:     0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
}

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

/* ---- UTILITY ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section-sm { padding: 52px 0; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
  text-align: center;
}
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: #0d6560; border-color: #0d6560; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(15,118,110,0.3); }
.btn-outline { background: transparent; color: var(--slate); border-color: var(--stone-md); }
.btn-outline:hover { border-color: var(--slate); background: var(--stone); }
.btn-white { background: var(--white); color: var(--teal); border-color: var(--white); font-weight: 600; }
.btn-white:hover { background: var(--teal-bg); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; display: block; text-align: center; }

/* ---- ANNOUNCEMENT BAR ---- */
.announce-bar { background: var(--teal); padding: 10px 0; text-align: center; }
.announce-bar p { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; }
.announce-bar a { color: white; text-decoration: underline; text-underline-offset: 2px; }

/* ---- NAVIGATION ---- */
.nav { background: var(--white); border-bottom: 1px solid var(--stone-md); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-wordmark { font-family: var(--font-display); font-size: 22px; color: var(--slate); letter-spacing: -0.4px; font-weight: 400; }
.nav-logo-wordmark span { color: var(--teal); }
.nav-center { display: flex; gap: 4px; align-items: center; }
.nav-center a { padding: 7px 14px; font-size: 14px; font-weight: 500; color: var(--stone-dk); border-radius: var(--radius); transition: all 0.15s; }
.nav-center a:hover { color: var(--slate); background: var(--stone); }
.nav-center a.active { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-size: 14px; font-weight: 600; color: var(--slate); }
.nav-phone:hover { color: var(--teal); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 4px; }
.nav-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--slate); }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--slate); z-index: 200; flex-direction: column; padding: 44px 28px; }
.mobile-nav.open { display: flex; }
.mobile-nav-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: white; font-size: 26px; cursor: pointer; }
.mobile-nav a { color: rgba(255,255,255,0.85); font-size: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-family: var(--font-display); }

/* ---- LOGO SVG ---- */
.logo-svg-wrap { width: 52px; height: 52px; flex-shrink: 0; }

/* ---- HERO ---- */
.hero { background: var(--slate); padding: 0; position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: stretch; }
.hero-bg-img { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(15,25,40,0.88) 0%, rgba(15,25,40,0.65) 55%, rgba(15,25,40,0.30) 100%); }
.hero-content { position: relative; z-index: 2; padding: 100px 0 90px; width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-left { max-width: 580px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(20,184,166,0.15); color: var(--teal-lt); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(20,184,166,0.3); margin-bottom: 24px; letter-spacing: 0.04em; }
.hero-headline { font-family: var(--font-display); font-size: 54px; font-weight: 400; color: white; line-height: 1.08; margin-bottom: 22px; letter-spacing: -0.5px; }
.hero-headline em { color: var(--teal-lt); font-style: italic; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-form-inline { display: flex; gap: 0; max-width: 440px; box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); margin-bottom: 22px; }
.hero-form-inline input { flex: 1; border: none; padding: 14px 18px; font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--white); outline: none; }
.hero-form-inline input::placeholder { color: #aaa; }
.hero-form-inline button { background: var(--teal); color: white; border: none; padding: 14px 22px; font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.15s; }
.hero-form-inline button:hover { background: #0d6560; }
.hero-trust-pills { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust-pill { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.65); }
.hero-trust-pill::before { content: '✓'; color: var(--teal-lt); font-weight: 700; }

/* Hero right panel — stat cards */
.hero-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.hero-stat-panel { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 20px 24px; text-align: center; width: 190px; }
.hero-stat-panel .num { font-family: var(--font-display); font-size: 36px; color: var(--teal-lt); line-height: 1; margin-bottom: 4px; }
.hero-stat-panel .lbl { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--slate); padding: 36px 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 8px 16px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 32px; color: var(--teal-lt); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ---- SECTION HEADERS ---- */
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.section-tag::before { content: '—'; }
.section-h2 { font-family: var(--font-display); font-size: 40px; font-weight: 400; color: var(--slate); line-height: 1.15; letter-spacing: -0.3px; margin-bottom: 16px; }
.section-p { font-size: 17px; color: var(--stone-dk); line-height: 1.7; max-width: 560px; }

/* ---- PROCESS STEPS ---- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--stone-md); border-radius: var(--radius-lg); overflow: hidden; margin-top: 56px; }
.process-step { background: var(--white); padding: 40px 32px; position: relative; }
.process-step:hover { background: var(--warm); }
.process-step-num { font-family: var(--font-display); font-size: 64px; color: var(--stone-md); line-height: 1; margin-bottom: 20px; }
.process-step-title { font-size: 18px; font-weight: 600; color: var(--slate); margin-bottom: 10px; }
.process-step-desc { font-size: 15px; color: var(--stone-dk); line-height: 1.65; }
.process-step-link { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 14px; font-weight: 600; margin-top: 16px; }
.process-step-link::after { content: '→'; }

/* ---- CASE TYPES LIST ---- */
.case-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--stone-md); border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px; }
.case-list-item { background: var(--white); padding: 32px 28px; display: flex; gap: 18px; align-items: flex-start; transition: background 0.15s; }
.case-list-item:hover { background: var(--teal-bg); }
.case-list-num { font-family: var(--font-display); font-size: 20px; color: var(--teal); flex-shrink: 0; line-height: 1.3; }
.case-list-title { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.case-list-desc { font-size: 14px; color: var(--stone-dk); line-height: 1.6; }

/* ---- IMAGE + TEXT SPLIT ---- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-img { border-radius: var(--radius-xl); overflow: hidden; height: 480px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---- LEAD / FORM SECTION ---- */
.lead-section-d { background: var(--slate); padding: 88px 0; position: relative; overflow: hidden; }
.lead-section-d::after { content: ''; position: absolute; right: -100px; bottom: -100px; width: 400px; height: 400px; border-radius: 50%; border: 60px solid rgba(255,255,255,0.03); }
.lead-grid-d { display: grid; grid-template-columns: 1fr 480px; gap: 72px; align-items: start; }
.lead-eyebrow-d { display: inline-flex; gap: 8px; align-items: center; color: var(--teal-lt); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.lead-h2-d { font-family: var(--font-display); font-size: 38px; color: white; line-height: 1.15; margin-bottom: 20px; font-weight: 400; }
.lead-p-d { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
.lead-feature-list { display: flex; flex-direction: column; gap: 14px; }
.lead-feature { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,0.75); font-size: 15px; }
.lead-feature-check { width: 22px; height: 22px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; color: white; }

/* ---- FORM CARD ---- */
.form-card-d { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.form-card-d-header { background: var(--teal); padding: 24px 32px; }
.form-card-d-header h3 { font-family: var(--font-display); font-size: 22px; color: white; margin-bottom: 3px; }
.form-card-d-header p { font-size: 13px; color: rgba(255,255,255,0.7); }
.form-card-d-body { padding: 32px; }
.form-field-d { margin-bottom: 16px; }
.form-field-d label { display: block; font-size: 12px; font-weight: 600; color: var(--stone-dk); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; }
.form-field-d input,
.form-field-d select,
.form-field-d textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--stone-md); border-radius: var(--radius); font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--white); outline: none; transition: border-color 0.15s; }
.form-field-d input:focus,
.form-field-d select:focus,
.form-field-d textarea:focus { border-color: var(--teal); }
.form-field-d textarea { min-height: 80px; resize: vertical; }
.form-row-d { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note-d { font-size: 11px; color: var(--stone-dk); line-height: 1.5; margin-top: 10px; }
.form-note-d a { color: var(--teal); text-decoration: underline; }

/* SMS consent checkboxes */
.sms-consent-block { background: var(--warm); border: 1px solid var(--stone-md); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
.sms-consent-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.sms-consent-row:last-child { margin-bottom: 0; }
.sms-consent-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--teal); width: 15px; height: 15px; cursor: pointer; }
.sms-consent-row span { font-size: 12px; color: var(--stone-dk); line-height: 1.55; }
.sms-consent-row span a { color: var(--teal); text-decoration: underline; font-weight: 600; }

/* ---- CONFIRMATION MESSAGE ---- */
.confirmation-msg { display: none; text-align: center; padding: 32px 24px; }
.confirmation-msg.show { display: block; }
.confirmation-check { width: 56px; height: 56px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.confirmation-check svg { width: 28px; height: 28px; color: white; }
.confirmation-msg h3 { font-family: var(--font-display); font-size: 24px; color: var(--slate); margin-bottom: 8px; }
.confirmation-msg p { font-size: 15px; color: var(--stone-dk); line-height: 1.6; }

/* ---- SMS PAGE ---- */
.sms-page-grid-d { display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: start; padding: 72px 0; }
.sms-card-d { background: var(--white); border: 1px solid var(--stone-md); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.sms-card-d-header { background: var(--teal); padding: 24px 32px; }
.sms-card-d-header h3 { font-family: var(--font-display); font-size: 22px; color: white; margin-bottom: 3px; font-weight: 400; }
.sms-card-d-header p { font-size: 13px; color: rgba(255,255,255,.7); }
.sms-card-d-body { padding: 32px; }
.sms-mockup-d { background: var(--slate); border-radius: 28px; padding: 24px 18px 18px; max-width: 280px; border: 5px solid #2d3748; margin: 0 auto; }
.sms-screen-name-d { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 12px; letter-spacing: 0.1em; }
.sms-bubble-in-d { background: rgba(255,255,255,0.08); border-radius: 12px 12px 12px 3px; padding: 10px 13px; color: rgba(255,255,255,0.85); font-size: 12px; line-height: 1.5; margin-bottom: 8px; }
.sms-bubble-out-d { background: var(--teal); border-radius: 12px 12px 3px 12px; padding: 10px 13px; color: white; font-size: 12px; margin-bottom: 8px; margin-left: 24px; }
.sms-ts-d { font-size: 9px; color: rgba(255,255,255,0.3); text-align: center; margin: 6px 0; }
.terms-box-d { background: var(--warm); border: 1px solid var(--stone-md); border-radius: var(--radius); padding: 18px 22px; font-size: 12px; color: var(--stone-dk); line-height: 1.6; margin-top: 16px; }
.terms-box-d h4 { font-size: 12px; font-weight: 600; color: var(--slate); margin-bottom: 8px; }
.terms-box-d p { margin-bottom: 6px; }

/* ---- TESTIMONIALS ---- */
.testimonials-d { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-d { background: var(--white); border: 1px solid var(--stone-md); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; }
.testimonial-d::before { content: '"'; font-family: var(--font-display); font-size: 64px; color: var(--teal-bg); line-height: 1; position: absolute; top: 16px; left: 20px; }
.testimonial-stars-d { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; margin-top: 20px; }
.testimonial-text-d { font-size: 14px; color: var(--stone-dk); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-name-d { font-size: 14px; font-weight: 600; color: var(--slate); }
.testimonial-loc-d { font-size: 12px; color: var(--stone-dk); margin-top: 2px; }

/* ---- PAGE HERO ---- */
.page-hero-d { background: var(--warm); padding: 64px 0; border-bottom: 1px solid var(--stone-md); }
.page-hero-d h1 { font-family: var(--font-display); font-size: 44px; font-weight: 400; color: var(--slate); margin-bottom: 14px; line-height: 1.15; letter-spacing: -0.3px; }
.page-hero-d p { font-size: 17px; color: var(--stone-dk); max-width: 580px; }
.breadcrumb-d { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--stone-dk); margin-bottom: 18px; }
.breadcrumb-d a { color: var(--teal); }

/* ---- ABOUT ---- */
.about-split-d { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 72px 0; }
.about-img-d { border-radius: var(--radius-xl); overflow: hidden; height: 480px; }
.about-img-d img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ---- NETWORK / CRITERIA ---- */
.criteria-d { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.criteria-item-d { padding: 28px 24px; border: 1px solid var(--stone-md); border-radius: var(--radius-lg); background: var(--white); transition: all 0.15s; }
.criteria-item-d:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.criteria-item-num-d { font-family: var(--font-display); font-size: 32px; color: var(--teal); line-height: 1; margin-bottom: 12px; }
.criteria-item-title-d { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 8px; }
.criteria-item-desc-d { font-size: 14px; color: var(--stone-dk); line-height: 1.6; }

/* ---- FAQ ---- */
.faq-list-d { max-width: 760px; margin: 48px auto 0; }
.faq-item-d { border-bottom: 1px solid var(--stone-md); }
.faq-btn-d { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; font-size: 16px; font-weight: 600; color: var(--slate); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-body); }
.faq-btn-d:hover { color: var(--teal); }
.faq-icon-d { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--stone-md); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--teal); flex-shrink: 0; }
.faq-answer-d { font-size: 15px; color: var(--stone-dk); line-height: 1.75; padding-bottom: 22px; display: none; }
.faq-answer-d.open { display: block; }

/* ---- INFO CARDS ---- */
.info-card { background: var(--warm); border: 1px solid var(--stone-md); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; border-left: 4px solid var(--teal); }
.info-card-title { font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.info-card p { font-size: 14px; color: var(--stone-dk); line-height: 1.65; }

/* ---- FOOTER ---- */
.footer-d { background: var(--slate); padding: 64px 0 0; }
.footer-d-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-d-brand-name { font-family: var(--font-display); font-size: 20px; color: white; margin-bottom: 4px; }
.footer-d-brand-name span { color: var(--teal-lt); }
.footer-d-domain { font-size: 12px; color: var(--teal-lt); margin-bottom: 12px; letter-spacing: 0.04em; }
.footer-d-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 18px; }
.footer-d-contact { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.footer-d-contact a { color: var(--teal-lt); }
.footer-d-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-d-links { display: flex; flex-direction: column; gap: 10px; }
.footer-d-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-d-links a:hover { color: rgba(255,255,255,0.9); }
.footer-d-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.footer-d-copyright { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-d-legal { display: flex; gap: 18px; }
.footer-d-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-d-legal a:hover { color: rgba(255,255,255,0.65); }

/* ---- CLAIM PAGE ---- */
.claim-hero { background: var(--slate); padding: 72px 0; position: relative; overflow: hidden; }
.claim-hero-bg { position: absolute; inset: 0; z-index: 0; }
.claim-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.2; }
.claim-hero-content { position: relative; z-index: 1; }
.claim-grid { display: grid; grid-template-columns: 1fr 520px; gap: 64px; align-items: start; padding: 72px 0; }

/* ---- PRIVACY / TERMS ---- */
.legal-prose { max-width: 780px; margin: 0 auto; }
.legal-prose h2 { font-family: var(--font-display); font-size: 26px; color: var(--slate); margin: 36px 0 12px; font-weight: 400; }
.legal-prose h3 { font-size: 16px; font-weight: 600; color: var(--slate); margin: 24px 0 8px; }
.legal-prose p { font-size: 15px; color: var(--stone-dk); line-height: 1.8; margin-bottom: 14px; }
.legal-prose ul { padding-left: 20px; margin-bottom: 14px; }
.legal-prose ul li { font-size: 15px; color: var(--stone-dk); line-height: 1.8; list-style: disc; margin-bottom: 6px; }
.legal-prose a { color: var(--teal); text-decoration: underline; }

/* ---- RESPONSIVE ---- */
@media(max-width:1024px) {
  .hero-inner, .lead-grid-d, .sms-page-grid-d, .split-section, .about-split-d, .claim-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .footer-d-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .nav-center, .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }
  .process-grid, .case-list, .testimonials-d, .criteria-d { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 38px; }
  .section-h2 { font-size: 30px; }
  .section { padding: 60px 0; }
  .footer-d-grid { grid-template-columns: 1fr; }
  .footer-d-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row-d { grid-template-columns: 1fr; }
  .nav-phone { display: none; }
}
@media(max-width:480px) {
  .hero-headline { font-size: 32px; }
  .section-h2 { font-size: 26px; }
  .hero-form-inline { flex-direction: column; border-radius: var(--radius); }
  .hero-form-inline button { border-radius: 0 0 var(--radius) var(--radius); }
}
