/* Entrust public landing page — derived from the approved brand book. */
:root {
  --forest: #2D6A4F;
  --forest-dark: #1B4332;
  --forest-deep: #123326;
  --sage: #52B788;
  --sage-light: #B5E3CE;
  --green-bg: #F0F7F4;
  --amber: #E9C46A;
  --amber-dark: #8A6010;
  --amber-bg: #FDF6E8;
  --off-white: #F7F6F2;
  --surface: #FFFFFF;
  --charcoal: #3D3D3A;
  --text: #1A1A18;
  --muted: #6E6E68;
  --border: #E2E0D8;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 8px 24px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 30px 80px rgba(18, 51, 38, 0.18);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--forest-dark);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 760px; }
.centered { text-align: center; }
.section-label {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.light-label { color: var(--sage-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { color: var(--text); font-family: var(--serif); font-weight: 400; letter-spacing: -0.035em; line-height: 1.05; }
h2 { margin-bottom: 22px; font-size: clamp(42px, 5vw, 68px); }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; box-shadow: 0 10px 24px rgba(45, 106, 79, 0.22); }
.button-primary:hover { background: var(--forest-dark); box-shadow: 0 14px 28px rgba(45, 106, 79, 0.28); }
.button-block { width: 100%; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: white;
}
.header-inner { display: flex; min-height: 88px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 40px; height: 40px; padding: 4px; border-radius: 50%; background: var(--off-white); }
.brand span { font-family: var(--serif); font-size: 30px; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: rgba(255,255,255,.76); font-size: 13px; font-weight: 600; text-decoration: none; }
.site-nav a:hover { color: white; }
.site-nav .nav-cta { padding: 10px 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 10px; color: white; }

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 170px 0 100px;
  background: var(--forest-dark);
  color: white;
}
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--sage), var(--amber), var(--forest));
  content: '';
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { top: -220px; right: -100px; width: 620px; height: 620px; background: rgba(82,183,136,.12); }
.hero-glow-two { bottom: -300px; left: -220px; width: 620px; height: 620px; background: rgba(233,196,106,.06); }
.hero-grid { position: relative; display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.hero-grid > *, .hero-actions > * { min-width: 0; }
.eyebrow { display: inline-flex; max-width: 100%; margin-bottom: 26px; align-items: center; gap: 10px; color: var(--sage-light); font-size: 12px; font-weight: 700; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 1px; background: var(--sage); content: ''; }
.hero h1 { margin-bottom: 28px; color: white; font-size: clamp(64px, 7vw, 96px); }
.hero h1 em { color: var(--amber); font-style: italic; }
.hero-caption { max-width: 520px; margin-bottom: 34px; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.hero .button-primary { background: var(--amber); color: var(--forest-deep); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.hero .button-primary:hover { background: #F2D486; }
.text-link { color: white; font-size: 14px; font-weight: 600; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--sage); }
.trust-line { display: flex; margin-top: 38px; gap: 24px; color: rgba(255,255,255,.48); font-size: 11px; }
.trust-line span { display: inline-flex; align-items: center; gap: 7px; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }

.hero-visual { position: relative; min-height: 680px; }
.orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 650px; height: 650px; }
.orbit-two { width: 500px; height: 500px; border-color: rgba(82,183,136,.12); }
.phone {
  position: relative;
  overflow: hidden;
  border: 8px solid #16382A;
  border-radius: 42px;
  background: white;
  box-shadow: var(--shadow-lg);
  color: var(--charcoal);
}
.real-screen-phone { overflow: hidden; background: white; box-shadow: var(--shadow-lg); }
.real-screen-phone img { display: block; width: 100%; height: auto; }
.phone-hero {
  z-index: 2;
  width: 305px;
  margin: 0 auto;
  overflow: visible;
  padding: 7px;
  border: 0;
  border-radius: 50px;
  background: #080B09;
  transform: rotate(2.5deg);
}
.phone-hero img { position: relative; z-index: 1; border-radius: 43px; }
.phone-hero::before,
.phone-hero::after { position: absolute; z-index: 0; width: 4px; border-radius: 3px; background: #080B09; content: ''; }
.phone-hero::before { top: 112px; left: -4px; height: 36px; box-shadow: 0 52px 0 #080B09, 0 98px 0 #080B09; }
.phone-hero::after { top: 158px; right: -4px; height: 76px; }
.floating-card { position: absolute; z-index: 4; display: flex; padding: 12px 15px; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.55); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 16px 35px rgba(0,0,0,.18); color: var(--charcoal); backdrop-filter: blur(10px); }
.floating-card > span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 10px; background: var(--green-bg); color: var(--forest); font-size: 14px; font-weight: 700; }
.floating-card div { display: grid; }
.floating-card strong { font-size: 10px; }
.floating-card small { color: var(--muted); font-size: 8px; }
.floating-card-done { top: 105px; right: -5px; }
.floating-card-reminder { bottom: 85px; left: -4px; }
.floating-card-reminder > span { background: var(--amber-bg); color: var(--amber-dark); }

.need-section { padding: 130px 0 120px; background: var(--off-white); }
.section-intro { margin-bottom: 65px; color: var(--muted); font-size: 20px; }
.before-after { display: grid; align-items: center; grid-template-columns: 1fr 50px 1fr; gap: 18px; }
.scattered-side, .organised-side { position: relative; min-height: 390px; padding: 44px; border-radius: 24px; }
.scattered-side { overflow: hidden; background: #ECEAE4; filter: saturate(.4); }
.chat-card { position: absolute; width: 235px; padding: 14px; border-radius: 5px 16px 16px 16px; background: white; box-shadow: var(--shadow-sm); transform: rotate(-3deg); }
.chat-card p { margin: 6px 0; font-size: 11px; line-height: 1.45; }
.chat-card small, .chat-name { color: #999; font-size: 8px; }
.chat-name { color: #567A68; font-weight: 700; }
.chat-one { top: 40px; left: 32px; }
.chat-two { right: 35px; bottom: 90px; width: 190px; transform: rotate(3deg); }
.paper-note { position: absolute; top: 122px; right: 40px; width: 205px; padding: 25px; background: #FFF8D9; box-shadow: 0 12px 25px rgba(0,0,0,.1); color: #666; font-family: 'Comic Sans MS', cursive; font-size: 13px; line-height: 2; transform: rotate(5deg); }
.paper-note span { display: block; color: #999; font-family: var(--sans); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.visual-caption { position: absolute; right: 0; bottom: 18px; left: 0; margin: 0; color: var(--muted); font-size: 11px; text-align: center; }
.organised-side { display: grid; overflow: hidden; place-items: center; background: #E5F1EB; }
.comparison-real-screen { width: 148px; overflow: hidden; border: 5px solid #18392C; border-radius: 22px; background: white; box-shadow: var(--shadow-sm); transform: translateY(-8px) rotate(2deg); }
.comparison-real-screen img { display: block; width: 100%; height: auto; }
.comparison-arrow { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--forest); color: white; font-size: 20px; }

.approach-section { overflow: hidden; padding: 105px 0 80px; background: var(--forest-dark); color: white; }
.approach-grid { display: grid; align-items: end; grid-template-columns: 1.4fr .6fr; gap: 70px; }
.approach-section h2 { margin-bottom: 0; color: white; font-size: clamp(40px, 5vw, 62px); }
.approach-caption { margin: 0 0 5px; color: rgba(255,255,255,.58); font-size: 18px; }
.message-stream { display: flex; margin-top: 70px; gap: 12px; transform: translateX(-30px); white-space: nowrap; }
.message-stream span { padding: 11px 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.45); font-size: 11px; }
.message-stream .buried { border-color: rgba(233,196,106,.4); background: rgba(233,196,106,.1); color: var(--amber); text-decoration: line-through; text-decoration-color: rgba(233,196,106,.35); }

.how-section { padding: 130px 0; background: white; }
.product-grid { display: grid; margin-top: 70px; grid-template-columns: 1fr 1fr; gap: 30px; }
.product-feature { position: relative; min-height: 900px; overflow: hidden; padding: 44px 44px 0; border: 1px solid var(--border); border-radius: 26px; background: var(--off-white); }
.feature-records { background: var(--green-bg); }
.feature-number { display: grid; width: 38px; height: 38px; margin-bottom: 28px; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--forest); font-size: 10px; font-weight: 700; }
.product-feature h3 { margin-bottom: 10px; color: var(--text); font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1.2; }
.product-feature p { max-width: 430px; color: var(--muted); font-size: 14px; }
.mini-phone { position: absolute; right: 50%; bottom: -75px; width: 300px; overflow: hidden; border: 7px solid #18392C; border-radius: 34px; background: white; box-shadow: 0 28px 60px rgba(27,67,50,.18); transform: translateX(50%); }
.preview-note { margin: 20px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.both-section { padding: 130px 0; background: var(--forest); color: white; }
.both-heading { display: grid; margin-bottom: 70px; align-items: end; grid-template-columns: 1fr 1fr; gap: 90px; }
.both-heading h2 { margin-bottom: 0; color: white; }
.both-heading > p { max-width: 450px; margin-bottom: 8px; color: rgba(255,255,255,.65); font-size: 17px; }
.audience-grid { display: grid; align-items: stretch; grid-template-columns: 1fr 1fr; gap: 30px; }
.audience-card { min-height: 250px; padding: 40px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.08); }
.audience-label { color: var(--sage-light); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.audience-card ul { display: grid; margin: 22px 0 0; padding: 0; gap: 18px; list-style: none; }
.audience-card li { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.audience-card li span { display: grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; border-radius: 50%; background: rgba(82,183,136,.2); color: var(--sage-light); font-size: 10px; }
.helper-card { background: var(--forest-dark); }
.role-screen-grid { display: grid; max-width: 760px; margin: 75px auto 0; grid-template-columns: 1fr 1fr; gap: 70px; }
.role-screen-grid figure { margin: 0; text-align: center; }
.role-phone { width: 250px; margin: 0 auto; overflow: hidden; border: 7px solid #16382A; border-radius: 35px; box-shadow: 0 28px 65px rgba(0,0,0,.22); }
.role-screen-grid figcaption { margin-top: 16px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.compliance-section { padding: 130px 0; background: var(--off-white); }
.compliance-grid { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 100px; }
.compliance-copy > p:not(.section-label) { max-width: 540px; color: var(--muted); font-size: 16px; }
.compliance-phone { width: 310px; margin: 0 auto; overflow: hidden; border: 7px solid #18392C; border-radius: 36px; box-shadow: 0 28px 60px rgba(27,67,50,.18); }

.pricing-section { padding: 120px 0; background: var(--forest-dark); color: white; }
.pricing-grid { display: grid; align-items: center; grid-template-columns: 1fr 480px; gap: 110px; }
.pricing-copy h2 { color: white; }
.pricing-copy > p:last-child { color: rgba(255,255,255,.6); font-size: 18px; }
.pricing-card { padding: 42px; border-radius: 24px; background: white; box-shadow: var(--shadow-lg); color: var(--charcoal); }
.pricing-badge { display: inline-block; margin-bottom: 24px; padding: 7px 10px; border-radius: 7px; background: var(--green-bg); color: var(--forest); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.pricing-card h3 { margin-bottom: 12px; color: var(--text); font-family: var(--serif); font-size: 29px; font-weight: 400; }
.price-coming { margin-bottom: 6px; color: var(--forest); font-size: 23px; font-weight: 700; }
.price-note { color: var(--muted); font-size: 13px; }
.pricing-divider { height: 1px; margin: 28px 0; background: var(--border); }
.helper-free { display: flex; margin-bottom: 26px; align-items: center; gap: 10px; font-size: 13px; }
.helper-free span { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: var(--green-bg); color: var(--forest); font-size: 10px; }

.outcome-section { padding: 120px 0; background: var(--amber-bg); }
.outcome-grid { display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.outcome-grid > div:first-child > p { max-width: 470px; color: var(--muted); font-size: 18px; }
.outcome-grid > div:first-child > .section-label { color: var(--forest); font-size: 12px; }
.outcome-phone { width: 215px; margin-top: 35px; overflow: hidden; border: 6px solid #18392C; border-radius: 30px; box-shadow: 0 22px 50px rgba(138,96,16,.14); }
.signup-card { padding: 42px; border: 1px solid #F0D98A; border-radius: 24px; background: white; box-shadow: 0 22px 55px rgba(138,96,16,.1); }
.signup-card h3 { margin-bottom: 8px; color: var(--text); font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.25; }
.signup-card > p { color: var(--muted); font-size: 12px; }
.waitlist-form label { display: block; margin: 22px 0 7px; color: var(--charcoal); font-size: 11px; font-weight: 700; }
.form-row { display: flex; gap: 10px; }
.form-row input { min-width: 0; height: 52px; flex: 1; padding: 0 16px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--off-white); color: var(--text); }
.form-row input:focus { border-color: var(--forest); background: white; outline: 3px solid rgba(45,106,79,.1); }
.form-status { min-height: 20px; margin: 8px 0 0; color: var(--forest); font-size: 10px; }
.noscript-contact { margin-bottom: 0; font-size: 12px; }
.noscript-contact a { color: var(--forest); }

.faq-section { padding: 130px 0; background: white; }
.faq-grid { display: grid; align-items: start; grid-template-columns: 380px 1fr; gap: 110px; }
.faq-heading h2 { font-size: 51px; }
.faq-heading > p:last-child { color: var(--muted); font-size: 13px; }
.faq-heading a { color: var(--forest); font-weight: 700; }
.faq-list { border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary { display: flex; padding: 24px 4px; align-items: center; justify-content: space-between; color: var(--text); cursor: pointer; font-size: 15px; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--forest); font-size: 18px; font-weight: 400; transition: transform 160ms ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 650px; margin: -7px 30px 24px 4px; color: var(--muted); font-size: 13px; }
details p a { color: var(--forest); }

.site-footer { padding: 85px 0 30px; background: var(--forest-deep); color: white; }
.footer-top { display: flex; padding-bottom: 55px; justify-content: space-between; }
.brand-light img { background: var(--off-white); }
.footer-brand > p { margin: 10px 0 0 56px; color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: flex; gap: 100px; }
.footer-links div { display: grid; align-content: start; gap: 10px; }
.footer-links h2 { margin: 0 0 9px; color: rgba(255,255,255,.4); font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: white; }
.company-details { display: flex; padding: 24px 0; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.55); font-size: 11px; }
.company-details p, .company-details address { margin: 0; font-style: normal; }
.company-details strong { color: rgba(255,255,255,.85); }
.company-details p span { margin-left: 8px; }
.footer-bottom { display: flex; padding-top: 25px; justify-content: space-between; color: rgba(255,255,255,.3); font-size: 9px; }

@media (max-width: 1050px) {
  .hero-grid { gap: 25px; }
  .floating-card-done { right: 0; }
  .floating-card-reminder { left: 0; }
  .approach-grid, .both-heading { gap: 40px; }
  .compliance-grid, .outcome-grid { gap: 55px; }
  .pricing-grid { grid-template-columns: 1fr 430px; gap: 60px; }
  .faq-grid { grid-template-columns: 310px 1fr; gap: 60px; }
}

@media (max-width: 900px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; padding-bottom: 120px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 650px; }
  .hero-visual { margin-top: 30px; }
  .before-after { grid-template-columns: 1fr; }
  .comparison-arrow { margin: -8px auto; transform: rotate(90deg); }
  .approach-grid, .both-heading, .compliance-grid, .pricing-grid, .outcome-grid, .faq-grid { grid-template-columns: 1fr; }
  .product-feature { padding-inline: 30px; }
  .audience-grid { grid-template-columns: 1fr; }
  .compliance-copy { max-width: 650px; }
  .pricing-card { max-width: 560px; }
  .faq-heading { max-width: 540px; }
  .footer-top { gap: 50px; }
  .footer-links { gap: 40px; }
  .company-details { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  .header-inner { min-height: 74px; }
  .brand img { width: 34px; height: 34px; }
  .brand span { font-size: 25px; }
  .site-nav .nav-cta { padding: 8px 11px; font-size: 11px; }
  .hero { padding: 130px 0 90px; }
  .hero h1 { font-size: clamp(53px, 17vw, 72px); }
  .eyebrow { font-size: 10px; letter-spacing: .06em; }
  .hero-caption { font-size: 16px; overflow-wrap: anywhere; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; padding-inline: 14px; line-height: 1.3; white-space: normal; }
  .text-link { text-align: center; }
  .trust-line { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-visual { min-height: 600px; transform: scale(.86); transform-origin: top center; }
  .phone-hero { margin-left: calc(50% - 152.5px); }
  .orbit-one { width: 540px; height: 540px; }
  .floating-card-done { right: -8px; }
  .floating-card-reminder { left: -8px; }
  .need-section, .how-section, .both-section, .compliance-section, .faq-section { padding: 90px 0; }
  .pricing-section, .outcome-section { padding: 85px 0; }
  h2 { font-size: 43px; }
  .section-intro { margin-bottom: 45px; font-size: 17px; }
  .scattered-side, .organised-side { min-height: 350px; padding: 25px; }
  .chat-one { left: 18px; }
  .paper-note { right: 18px; width: 185px; }
  .chat-two { right: 20px; }
  .approach-section { padding: 85px 0 65px; }
  .approach-section h2 { font-size: 39px; }
  .message-stream { margin-top: 50px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-feature { min-height: 880px; padding-top: 34px; }
  .both-heading { margin-bottom: 45px; }
  .audience-card { min-height: 0; padding: 29px; }
  .role-screen-grid { gap: 30px; }
  .role-phone { width: 210px; }
  .outcome-phone { margin-right: auto; margin-left: auto; }
  .pricing-card, .signup-card { padding: 30px 24px; }
  .form-row { align-items: stretch; flex-direction: column; }
  .faq-heading h2 { font-size: 43px; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-links { width: 100%; justify-content: space-between; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}

@media (max-width: 430px) {
  .hero-visual { margin-right: -14px; margin-left: -14px; }
  .floating-card { display: none; }
  .scattered-side { min-height: 375px; }
  .paper-note { top: 135px; right: 12px; }
  .chat-card { width: 205px; }
  .mini-phone { width: 280px; }
  .role-screen-grid { gap: 18px; }
  .role-phone { width: 140px; border-width: 4px; border-radius: 23px; }
  .role-screen-grid figcaption { font-size: 9px; }
  .compliance-phone { width: min(100%, 300px); }
  .footer-links { flex-direction: column; gap: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
