:root {
  --teal:        #1a6b5a;
  --teal-dark:   #0f4a3e;
  --teal-light:  #2a8a73;
  --teal-pale:   #e8f5f2;
  --purple:      #3d2b7a;
  --purple-mid:  #5040a0;
  --purple-light:#7060c0;
  --purple-pale: #eeebf8;
  --green:       #2e7d32;
  --green-light: #43a047;
  --green-pale:  #e8f5e9;
  --grad:        linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  --grad-soft:   linear-gradient(135deg, #4a3a90 0%, #1a6b5a 100%);
  --white:       #ffffff;
  --cream:       #faf9f7;
  --ink:         #1a1a2e;
  --ink-mid:     #2d3a4a;
  --muted:       #6b7a8d;
  --border:      rgba(26,107,90,0.15);
  --border-p:    rgba(61,43,122,0.15);
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(26,107,90,0.10);
  --shadow-lg:   0 12px 48px rgba(26,107,90,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(26,107,90,0.07);
}
.nav-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.q-mark { width: 52px; height: 52px; flex-shrink: 0; }
.q-mark svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-q4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.35rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 0.3px;
}
.logo-sub { font-size: 0.62rem; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.83rem; font-weight: 500; color: var(--muted);
  text-decoration: none; letter-spacing: 0.3px; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); font-weight: 600; }
.nav-cta {
  background: var(--grad); color: var(--white);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px;
  padding: 10px 24px; border-radius: 99px;
  text-decoration: none; transition: opacity 0.2s, transform 0.15s;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--grad); color: var(--white);
  font-weight: 600; font-size: 0.95rem; padding: 14px 30px;
  border-radius: 99px; text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s; display: inline-block;
  box-shadow: 0 4px 18px rgba(61,43,122,0.25);
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--teal);
  font-weight: 600; font-size: 0.95rem; padding: 14px 30px;
  border-radius: 99px; text-decoration: none; display: inline-block;
  border: 2px solid var(--teal); transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* ── HERO (home) ── */
.hero { padding: 110px 5vw 90px; background: var(--cream); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute;
  top: -120px; right: -100px; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,43,122,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -80px; left: -60px; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,90,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.people-icons { display: flex; align-items: flex-end; }
.person-icon { width: 22px; height: 28px; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.person-head { width: 10px; height: 10px; border-radius: 50%; }
.person-body { width: 14px; height: 16px; border-radius: 7px 7px 0 0; }
.p1 .person-head, .p1 .person-body { background: var(--teal); }
.p2 .person-head, .p2 .person-body { background: var(--green); width: 11px; height: 11px; }
.p2 .person-body { width: 16px; height: 18px; }
.p3 .person-head, .p3 .person-body { background: var(--purple-mid); }
.eyebrow-text { font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); }
h1 {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 4rem); line-height: 1.08;
  color: var(--ink); margin-bottom: 0.5rem;
}
h1 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.8; max-width: 460px; margin: 1.25rem 0 2.25rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.trust-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1;
}
.trust-label { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }

/* checker card */
.checker-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.checker-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.checker-title { font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic; font-size: 1.3rem; color: var(--ink); margin-bottom: 0.25rem; }
.checker-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.form-group input, .form-group select {
  width: 100%; padding: 10px 13px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--ink); font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--teal); }
.form-group input::placeholder { color: var(--muted); }
.check-btn {
  width: 100%; padding: 12px; background: var(--grad); color: var(--white);
  font-weight: 600; font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
  border: none; border-radius: 99px; cursor: pointer; margin-top: 0.25rem;
  transition: opacity 0.2s; box-shadow: 0 4px 14px rgba(61,43,122,0.2);
}
.check-btn:hover { opacity: 0.9; }
.panel-result { display: none; margin-top: 0.9rem; padding: 12px 15px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; line-height: 1.5; }
.panel-result.warn    { background: #fff4e5; border: 1px solid #f0a040; color: #8a5a00; }
.panel-result.good    { background: var(--green-pale); border: 1px solid #81c784; color: #1b5e20; }
.panel-result.expired { background: #fdecea; border: 1px solid #ef9a9a; color: #7f0000; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 120px 5vw 65px; background: var(--cream); position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero::before {
  content: ''; position: absolute;
  top: -120px; right: -100px; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,43,122,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1180px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1;
  color: var(--ink); margin-bottom: 0.75rem;
}
.page-hero h1 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero-sub { font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 560px; }

/* ── SECTIONS ── */
section { padding: 90px 5vw; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem;
}
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--teal); flex-shrink: 0; }
h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.15;
  color: var(--ink); margin-bottom: 0.75rem;
}
h2 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.8; max-width: 520px; margin-bottom: 3rem; }

/* ── QUICK NAV (home) ── */
.quick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.quick-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  text-decoration: none; color: inherit; display: block;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.quick-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
.quick-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.quick-card:nth-child(even) .quick-icon-wrap { background: var(--purple-pale); }
.quick-card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.4rem; }
.quick-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.9rem; }
.quick-link { font-size: 0.82rem; font-weight: 600; color: var(--teal); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.service-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.1rem; }
.service-card:nth-child(even) .svc-icon { background: var(--purple-pale); }
.service-card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ── PROCESS ── */
.steps-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; position: relative; }
.steps-wrap::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal)); z-index: 0;
}
.step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad); color: var(--white);
  font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 4px 16px rgba(61,43,122,0.25);
}
.step h4 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.4rem; }
.step p { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ── BRAND DIVIDER ── */
.brand-divider { background: var(--grad); padding: 3.5rem 5vw; text-align: center; position: relative; overflow: hidden; }
.brand-divider::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.05); pointer-events: none;
}
.divider-q {
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-style: italic;
  font-size: 5rem; line-height: 1; color: rgba(255,255,255,0.15);
  position: absolute; top: 0.5rem; left: 50%; transform: translateX(-50%);
  pointer-events: none; user-select: none;
}
.divider-content { position: relative; z-index: 1; }
.divider-title { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-style: italic; font-size: 2.2rem; color: var(--white); margin-bottom: 0.5rem; }
.divider-sub { font-size: 0.88rem; color: rgba(255,255,255,0.75); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.5rem; }
.divider-people { display: flex; justify-content: center; gap: 12px; margin-bottom: 1.5rem; }
.dp { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.dp-head { border-radius: 50%; background: rgba(255,255,255,0.8); }
.dp-body { border-radius: 8px 8px 0 0; background: rgba(255,255,255,0.8); }
.dp:nth-child(1) .dp-head { width: 16px; height: 16px; }
.dp:nth-child(1) .dp-body { width: 22px; height: 20px; }
.dp:nth-child(2) .dp-head { width: 20px; height: 20px; }
.dp:nth-child(2) .dp-body { width: 28px; height: 26px; }
.dp:nth-child(3) .dp-head { width: 16px; height: 16px; }
.dp:nth-child(3) .dp-body { width: 22px; height: 20px; }
.divider-cta {
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 2px solid rgba(255,255,255,0.5); border-radius: 99px;
  font-weight: 600; font-size: 0.9rem; padding: 12px 28px;
  text-decoration: none; display: inline-block; transition: background 0.2s;
}
.divider-cta:hover { background: rgba(255,255,255,0.25); }

/* ── DIGITAL TOOLS ── */
.tools-feature {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
  margin-bottom: 2.5rem; position: relative; overflow: hidden;
}
.tools-feature::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: var(--grad); }
.tools-pitch h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.6rem; color: var(--ink); margin-bottom: 0.9rem; }
.tools-pitch p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; }
.feat-list { list-style: none; }
.feat-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.55rem; line-height: 1.5; }
.feat-list .tick { color: var(--teal); flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.tracker-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.tr-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.tr-ref { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.95rem; color: var(--ink); margin-bottom: 1.25rem; }
.tr-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.tr-dot { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; }
.tr-dot.done { background: var(--green); color: white; }
.tr-dot.active { background: var(--grad); color: white; }
.tr-dot.wait { background: #e0e0e0; }
.tr-text { font-size: 0.82rem; flex: 1; }
.tr-text.done { color: var(--green); }
.tr-text.active { color: var(--ink); font-weight: 600; }
.tr-text.wait { color: var(--muted); }
.tr-badge { font-size: 0.68rem; font-weight: 600; padding: 2px 8px; border-radius: 99px; }
.tb-done   { background: var(--green-pale); color: var(--green); }
.tb-active { background: var(--purple-pale); color: var(--purple-mid); }
.tb-wait   { background: #f5f5f5; color: var(--muted); }
.tr-line { height: 20px; width: 2px; background: linear-gradient(to bottom, #e0e0e0, transparent); margin: 0 0 0 8px; }
.tr-meta { font-size: 0.72rem; color: var(--muted); padding-top: 0.75rem; border-top: 1px solid var(--border); margin-top: 0.5rem; }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.tool-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-light); }
.tool-badge { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 9px; border-radius: 99px; margin-bottom: 0.75rem; }
.badge-free { background: var(--green-pale); color: var(--green); }
.badge-new  { background: var(--purple-pale); color: var(--purple-mid); }
.badge-pro  { background: var(--teal-pale);   color: var(--teal); }
.tool-card h4 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.98rem; color: var(--ink); margin-bottom: 0.4rem; }
.tool-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.c-row { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.c-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 3px; }
.c-val { font-weight: 500; font-size: 0.95rem; color: var(--ink); }
.c-val a { color: var(--ink); text-decoration: none; }
.c-val a:hover { color: var(--teal); }
.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.contact-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic; font-size: 1.4rem; color: var(--ink); margin-bottom: 1.5rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-bottom: 0.9rem; }
.contact-form textarea {
  width: 100%; padding: 10px 13px; resize: vertical; min-height: 90px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--ink); font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif; margin-bottom: 0.9rem; transition: border-color 0.2s;
}
.contact-form textarea:focus { outline: none; border-color: var(--teal); }
.contact-form textarea::placeholder { color: var(--muted); }
.submit-btn {
  padding: 12px 28px; background: var(--grad); color: var(--white);
  font-weight: 600; font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
  border: none; border-radius: 99px; cursor: pointer;
  box-shadow: 0 4px 14px rgba(61,43,122,0.2); transition: opacity 0.2s;
}
.submit-btn:hover { opacity: 0.9; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
.blog-cat {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 99px; margin-bottom: 0.9rem; align-self: flex-start;
}
.cat-tips  { background: var(--teal-pale);   color: var(--teal); }
.cat-guide { background: var(--purple-pale);  color: var(--purple-mid); }
.cat-fleet { background: var(--green-pale);   color: var(--green); }
.cat-news  { background: #fff4e5; color: #8a5a00; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-bottom: 0.6rem; line-height: 1.35; }
.blog-excerpt { font-size: 0.83rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--muted); }
.blog-read { font-weight: 600; color: var(--teal); text-decoration: none; font-size: 0.82rem; }
.blog-read:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 2.5rem 5vw; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 700; font-size: 1.5rem; color: rgba(255,255,255,0.85); margin-bottom: 0.4rem; }
.footer-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* WhatsApp FAB */
.wa-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

@media (max-width: 780px) {
  .hero-inner, .contact-wrap, .tools-feature { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links { display: none; }
  .steps-wrap::before { display: none; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ── FOOTER LEGAL LINKS ── */
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem 1.1rem; margin: 0.9rem 0 0.4rem; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.75rem; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.75); }
.footer-admin { color: rgba(255,255,255,0.2) !important; font-size: 0.68rem !important; }
.footer-admin:hover { color: rgba(255,255,255,0.5) !important; }

/* ── LEGAL PAGES ── */
.legal-hero { background: var(--grad); color: var(--white); padding: 6rem 5vw 3rem; margin-top: 72px; text-align: center; }
.legal-hero h1 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(2rem,5vw,3.2rem); font-weight: 700; }
.legal-hero p { opacity: 0.8; margin-top: 0.5rem; font-size: 0.9rem; }
.legal-content { max-width: 780px; margin: 0 auto; padding: 3.5rem 5vw 5rem; }
.legal-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; color: var(--purple); margin: 2.2rem 0 0.7rem; border-bottom: 1px solid var(--border-p); padding-bottom: 0.3rem; }
.legal-content p { color: var(--ink-mid); line-height: 1.8; margin-bottom: 0.9rem; font-size: 0.92rem; }
.legal-content ul { margin: 0.5rem 0 1rem 1.4rem; color: var(--ink-mid); font-size: 0.92rem; line-height: 1.8; }
.legal-content li { margin-bottom: 0.35rem; }
.legal-content a { color: var(--teal); }
.legal-updated { background: var(--teal-pale); border-left: 4px solid var(--teal); padding: 0.8rem 1.2rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.82rem; color: var(--teal-dark); margin-bottom: 2rem; }
