/* =============================================
   TDRMG Theme — Main Stylesheet
   ============================================= */

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

:root {
  --bg:          #f8f6f2;
  --bg-alt:      #ffffff;
  --bg-warm:     #f2ede4;
  --navy:        #0f2044;
  --navy-mid:    #1a3260;
  --gold:        #b8892e;
  --gold-light:  #d4a84a;
  --gold-pale:   #f5edda;
  --text:        #1a1a2e;
  --text-mid:    #3d4f6e;
  --text-muted:  #7a8ba6;
  --border:      #e0d8cc;
  --border-gold: rgba(184,137,46,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────── */
.tdrmg-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 88px;
  background: rgba(248,246,242,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  animation: fadeDown 0.7s ease both;
}
.tdrmg-nav .nav-logo { display: flex; align-items: center; text-decoration: none; }
.tdrmg-nav .nav-links { display: flex; align-items: center; gap: 34px; }
.tdrmg-nav .nav-links a {
  font-size: 0.78rem; font-weight: 400; color: var(--text-muted);
  text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.tdrmg-nav .nav-links a:hover { color: var(--navy); }
.tdrmg-nav .nav-cta {
  padding: 9px 22px;
  background: var(--navy); color: #fff !important;
  border-radius: 2px; transition: background 0.2s !important;
}
.tdrmg-nav .nav-cta:hover { background: var(--navy-mid) !important; }

/* ── HERO ────────────────────────────────────── */
.tdrmg-hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 60px 100px;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-accent-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
}
.hero-shape {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--gold-pale) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px; opacity: 0.45;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); display: block; }
.tdrmg-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 600; line-height: 1.0; color: var(--navy);
  margin-bottom: 26px;
  animation: fadeUp 0.8s 0.32s ease both;
}
.tdrmg-hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1.02rem; font-weight: 300; line-height: 1.8;
  color: var(--text-mid); max-width: 520px; margin-bottom: 44px;
  animation: fadeUp 0.8s 0.46s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-stats {
  position: absolute; bottom: 64px; right: 60px; z-index: 1;
  display: flex; gap: 0; align-items: stretch;
  animation: fadeUp 0.8s 0.74s ease both;
  border: 1px solid var(--border); border-radius: 3px; overflow: hidden;
}
.stat { text-align: center; padding: 16px 30px; background: rgba(248,246,242,0.9); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600; color: var(--navy); line-height: 1;
}
.stat-label { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; background: var(--border); }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  padding: 14px 34px; background: var(--navy); color: #fff;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.22s, transform 0.18s; display: inline-block;
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); color: #fff; }
.btn-outline {
  padding: 14px 34px; border: 1px solid var(--border); color: var(--text-mid);
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: border-color 0.22s, color 0.22s; display: inline-block;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-gold {
  padding: 13px 30px; background: var(--gold); color: var(--navy);
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.2s, transform 0.18s; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }

/* ── SECTION BASE ────────────────────────────── */
.tdrmg-section { padding: 110px 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: block; }
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  font-weight: 600; line-height: 1.1; color: var(--navy); margin-bottom: 20px;
}
.section-subtitle { font-size: 0.95rem; font-weight: 300; line-height: 1.85; color: var(--text-muted); }

/* ── BENEFITS ────────────────────────────────── */
.section-benefits { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.intro-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.intro-left p { font-size: 0.97rem; font-weight: 300; line-height: 1.9; color: var(--text-mid); margin-top: 18px; }
.intro-right { display: flex; flex-direction: column; gap: 14px; }
.benefit-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 3px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.benefit-card:hover { border-color: var(--gold-light); box-shadow: 0 4px 20px rgba(184,137,46,0.1); }
.benefit-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--border-gold); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; background: var(--gold-pale);
}
.benefit-card h4 { font-size: 0.88rem; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.benefit-card p { font-size: 0.8rem; line-height: 1.65; color: var(--text-muted); }

/* ── STRUCTURES ──────────────────────────────── */
.section-structures { background: var(--bg-warm); }
.structures-inner { max-width: 1180px; margin: 0 auto; }
.structures-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.structures-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.structure-card { background: var(--bg-alt); padding: 40px 32px; transition: background 0.25s; }
.structure-card:hover { background: #fdfaf5; }
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; line-height: 1; margin-bottom: 14px;
  color: transparent; -webkit-text-stroke: 1px rgba(184,137,46,0.2);
}
.structure-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.38rem; font-weight: 600; color: var(--navy); margin-bottom: 12px;
}
.structure-card p { font-size: 0.81rem; line-height: 1.78; color: var(--text-muted); }
.structure-card-cta { background: #fdfaf5 !important; display: flex; flex-direction: column; justify-content: center; }

/* ── ASSESSMENT ──────────────────────────────── */
.section-assessment { background: var(--bg-alt); border-top: 1px solid var(--border); }
.questions-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.q-list { display: flex; flex-direction: column; gap: 2px; margin-top: 16px; }
.q-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; border: 1px solid var(--border); background: var(--bg);
  transition: border-color 0.25s, background 0.25s;
}
.q-item:hover { border-color: var(--gold-light); background: var(--bg-alt); }
.q-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--gold); font-weight: 600; line-height: 1; flex-shrink: 0;
}
.q-item p { font-size: 0.87rem; line-height: 1.65; color: var(--text-mid); padding-top: 2px; }
.q-cta-block {
  position: sticky; top: 100px; padding: 48px 40px;
  background: var(--navy); border-radius: 3px; margin-top: 56px;
}
.q-cta-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.95rem; font-weight: 600; color: #fff;
  margin-bottom: 14px; line-height: 1.2;
}
.q-cta-block p { font-size: 0.85rem; line-height: 1.78; color: rgba(255,255,255,0.5); margin-bottom: 30px; }
.q-cta-phone { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-decoration: none; margin-top: 12px; display: inline-block; }
.q-cta-phone strong { color: var(--gold); }

/* ── CTA BAND ────────────────────────────────── */
.section-cta {
  padding: 110px 60px; background: var(--bg-warm);
  border-top: 1px solid var(--border); text-align: center; position: relative; overflow: hidden;
}
.section-cta::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px; background: var(--gold);
}
.section-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 600; color: var(--navy);
  max-width: 640px; margin: 40px auto 18px; line-height: 1.15;
}
.section-cta p { font-size: 0.93rem; color: var(--text-muted); max-width: 440px; margin: 0 auto 42px; line-height: 1.85; }
.section-cta small { display: block; margin-top: 30px; font-size: 0.7rem; color: var(--text-muted); }

/* ── FOOTER ──────────────────────────────────── */
.tdrmg-footer { background: var(--navy); padding: 64px 60px 36px; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.8rem; line-height: 1.75; color: rgba(255,255,255,0.32); max-width: 280px; margin-top: 16px; }
.footer-col h5 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a, .footer-col p {
  display: block; font-size: 0.8rem; color: rgba(255,255,255,0.32);
  text-decoration: none; margin-bottom: 9px; line-height: 1.5; transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: rgba(255,255,255,0.2);
}

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:none; } }

/* ── CONTACT FORM ────────────────────────────── */
.tdrmg-contact-form { max-width: 640px; margin: 0 auto; }
.tdrmg-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.tdrmg-contact-form .form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.tdrmg-contact-form label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.tdrmg-contact-form input,
.tdrmg-contact-form textarea,
.tdrmg-contact-form select {
  padding: 12px 16px; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text);
  transition: border-color 0.2s;
}
.tdrmg-contact-form input:focus,
.tdrmg-contact-form textarea:focus,
.tdrmg-contact-form select:focus { outline: none; border-color: var(--gold); }
.tdrmg-contact-form textarea { min-height: 120px; resize: vertical; }
.form-success { padding: 16px 20px; background: var(--gold-pale); border: 1px solid var(--border-gold); border-radius: 2px; color: var(--navy); font-size: 0.88rem; margin-bottom: 20px; display: none; }
.form-success.show { display: block; }

/* ── WORDPRESS BODY PADDING ──────────────────── */
.admin-bar .tdrmg-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .tdrmg-nav { top: 46px; } }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .tdrmg-nav { padding: 0 24px; }
  .tdrmg-nav .nav-links { display: none; }
  .tdrmg-section, .section-cta { padding: 70px 24px; }
  .tdrmg-hero { padding: 120px 24px 80px; }
  .hero-stats { right: 24px; bottom: 36px; }
  .hero-shape { width: 280px; height: 280px; right: -40px; }
  .intro-inner, .questions-inner { grid-template-columns: 1fr; gap: 36px; }
  .structures-grid { grid-template-columns: 1fr; }
  .structures-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .tdrmg-contact-form .form-row { grid-template-columns: 1fr; }
  .q-cta-block { position: static; margin-top: 32px; }
}

/* ══════════════════════════════════════════════
   MOBILE NAV — Hamburger & Drawer
   ══════════════════════════════════════════════ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
  z-index: 1001;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Overlay behind drawer */
.drawer-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: rgba(15,32,68,0.45);
  backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.3s;
}
.drawer-overlay.active { display: block; opacity: 1; }

/* Side Drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw); z-index: 999;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  padding: 80px 36px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute; top: 22px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--text-muted);
  line-height: 1; padding: 4px;
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--navy); }

.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-link {
  display: block; padding: 14px 0;
  font-size: 1.05rem; font-weight: 400; color: var(--text-mid);
  text-decoration: none; border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-link:hover { color: var(--navy); padding-left: 6px; }
.drawer-cta {
  margin-top: 20px; padding: 16px 0;
  background: var(--navy); color: #fff !important;
  text-align: center; border-radius: 2px; border: none;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
}
.drawer-cta:hover { background: var(--navy-mid) !important; padding-left: 0; }

.drawer-contact { margin-top: 32px; }
.drawer-contact a {
  display: block; font-size: 0.82rem; color: var(--text-muted);
  text-decoration: none; margin-bottom: 8px;
  transition: color 0.2s;
}
.drawer-contact a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   NINJA FORMS MODAL
   ══════════════════════════════════════════════ */

.tdrmg-modal {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.tdrmg-modal.active { display: flex; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,32,68,0.6);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-box {
  position: relative; z-index: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 100%; max-width: 580px;
  max-height: 90vh; overflow-y: auto;
  padding: 48px 44px;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalIn {
  from { opacity:0; transform:scale(0.92) translateY(16px); }
  to   { opacity:1; transform:none; }
}

.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; color: var(--text-muted); line-height: 1;
  transition: color 0.2s; padding: 4px 8px;
}
.modal-close:hover { color: var(--navy); }

.modal-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

/* Ninja Forms overrides — match our theme */
.modal-form-wrap .nf-form-cont,
.modal-form-wrap .nf-form-wrap { max-width: 100% !important; }

.modal-form-wrap .nf-field-label label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.72rem !important; letter-spacing: 0.12em !important;
  text-transform: uppercase !important; color: var(--text-muted) !important;
  font-weight: 400 !important; margin-bottom: 6px !important;
}

.modal-form-wrap input[type="text"],
.modal-form-wrap input[type="email"],
.modal-form-wrap input[type="tel"],
.modal-form-wrap input[type="number"],
.modal-form-wrap textarea,
.modal-form-wrap select {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important; color: var(--text) !important;
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 2px !important;
  padding: 11px 14px !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
  box-shadow: none !important;
}
.modal-form-wrap input:focus,
.modal-form-wrap textarea:focus,
.modal-form-wrap select:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(184,137,46,0.1) !important;
}

.modal-form-wrap textarea { min-height: 100px !important; resize: vertical !important; }

.modal-form-wrap .nf-field-container { margin-bottom: 16px !important; }

.modal-form-wrap input[type="submit"],
.modal-form-wrap button[type="submit"],
.modal-form-wrap .submit-container input {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.78rem !important; font-weight: 500 !important;
  letter-spacing: 0.1em !important; text-transform: uppercase !important;
  background: var(--navy) !important; color: #fff !important;
  border: none !important; border-radius: 2px !important;
  padding: 14px 34px !important; cursor: pointer !important;
  transition: background 0.22s !important;
  width: 100% !important;
}
.modal-form-wrap input[type="submit"]:hover,
.modal-form-wrap button[type="submit"]:hover,
.modal-form-wrap .submit-container input:hover {
  background: var(--navy-mid) !important;
}

.modal-form-wrap .nf-error .ninja-forms-field {
  border-color: #c0392b !important;
}
.modal-form-wrap .nf-error-msg {
  font-size: 0.75rem !important; color: #c0392b !important;
  margin-top: 4px !important;
}
.modal-form-wrap .nf-response-msg {
  font-size: 0.88rem !important; color: var(--navy) !important;
  background: var(--gold-pale) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: 2px !important; padding: 14px 18px !important;
  margin-top: 12px !important;
}

/* ══════════════════════════════════════════════
   MOBILE RESPONSIVE — Full Overhaul
   ══════════════════════════════════════════════ */

@media (max-width: 960px) {

  /* Show hamburger, hide desktop links */
  .nav-hamburger { display: flex; }
  .tdrmg-nav .nav-links { display: none; }
  .tdrmg-nav { padding: 0 20px; }

  /* Hero */
  .tdrmg-hero { padding: 100px 24px 140px; min-height: auto; }
  .hero-shape { width: 240px; height: 240px; right: -60px; top: 60%; opacity: 0.6; }
  .hero-grid { opacity: 0.25; }
  .tdrmg-hero h1 { font-size: clamp(2.6rem, 8vw, 4rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; width: 100%; max-width: 280px; }

  .hero-stats {
    position: static; margin-top: 48px;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    border-radius: 3px; width: 100%; max-width: 360px;
  }
  .stat-divider { width: auto; height: 1px; }

  /* Sections */
  .tdrmg-section,
  .section-cta { padding: 64px 24px; }

  /* Benefits */
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Structures */
  .structures-grid { grid-template-columns: 1fr; }
  .structures-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Assessment */
  .questions-inner { grid-template-columns: 1fr; gap: 32px; }
  .q-cta-block { position: static; margin-top: 0; padding: 36px 28px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Modal */
  .modal-box { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .tdrmg-hero { padding: 90px 20px 120px; }
  .tdrmg-nav { height: 64px; }
  .hero-stats { max-width: 100%; }
  .stat { padding: 12px 10px; }
  .stat-num { font-size: 1.6rem; }
  .tdrmg-section, .section-cta { padding: 52px 20px; }
  .modal-box { padding: 32px 20px; }
  .q-cta-block { padding: 28px 20px; }
  .tdrmg-footer { padding: 48px 20px 28px; }
}
