:root {
  --green-950: #10281a;
  --green-900: #173a25;
  --green-700: #28633e;
  --green-100: #e9f3ec;
  --orange: #ef5b2a;
  --orange-dark: #c83e17;
  --orange-deep: #a93214;
  --cream: #f7f4ee;
  --sand: #ece5da;
  --ink: #20241f;
  --muted: #626860;
  --white: #ffffff;
  --border: #dfe4dd;
  --danger: #a52a1d;
  --shadow: 0 14px 34px rgba(16, 40, 26, 0.1);
  --radius: 14px;
  --max-width: 1180px;
  --font: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { color: var(--ink); background: var(--white); font-family: var(--font); line-height: 1.65; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; }
p + p { margin-top: 14px; }

:focus-visible { outline: 3px solid var(--orange-dark); outline-offset: 3px; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 14px; border-radius: 8px; background: var(--white); color: var(--green-950); font-weight: 800; box-shadow: var(--shadow); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--max-width), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 76px 0; }
.section-soft { background: var(--cream); }
.section-dark { background: var(--green-950); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.eyebrow { margin-bottom: 10px; color: var(--orange-dark); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section-title { margin-bottom: 14px; font-size: clamp(28px, 4vw, 42px); }
.section-intro { max-width: 720px; color: var(--muted); font-size: 18px; }
.center { text-align: center; }
.center .section-intro { margin-inline: auto; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.muted { color: var(--muted); }

.topbar { background: var(--green-950); color: #dce8df; font-size: 14px; }
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; }
.topbar-contact { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.topbar-contact a + a { position: relative; }
.topbar-contact a + a::before { content: ''; position: absolute; top: 50%; left: -12px; width: 1px; height: 14px; background: rgba(255,255,255,.32); transform: translateY(-50%); }
.topbar a:hover { color: var(--white); }
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.nav-row { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--green-950); font-size: 22px; font-weight: 850; }
.logo-mark { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 10px; background: var(--orange); color: var(--white); }
.logo b { color: var(--orange-dark); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a { padding: 10px 14px; border-radius: 9px; color: #3f483f; font-weight: 650; }
.nav-links > a:hover, .nav-links > a.active { background: var(--green-100); color: var(--green-900); }
.nav-toggle { display: none; padding: 7px 10px; border: 0; background: transparent; color: var(--green-950); font-size: 27px; cursor: pointer; }

.btn { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; padding: 11px 22px; border: 1px solid transparent; border-radius: 10px; cursor: pointer; font-weight: 750; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,40,26,.14); }
.btn-primary { background: var(--orange-dark); color: var(--white) !important; }
.btn-primary:hover { background: var(--orange-deep); }
.btn-secondary { background: var(--green-900); color: var(--white); }
.btn-outline { border-color: var(--green-900); background: transparent; color: var(--green-900); }
.btn-light { background: var(--white); color: var(--green-950); }
.btn-disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }

.hero { position: relative; min-height: 650px; display: grid; align-items: center; overflow: hidden; background: var(--green-950) url('../images/hero-tractor.jpg') center/cover no-repeat; }
.hero::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(9,26,16,.91) 0%, rgba(9,26,16,.77) 42%, rgba(9,26,16,.15) 72%); }
.hero-content { position: relative; max-width: 650px; padding: 90px 0; color: var(--white); }
.hero h1 { margin-bottom: 20px; color: var(--white); font-size: clamp(40px, 6vw, 66px); }
.hero .lead { max-width: 610px; color: #edf4ef; font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 26px; color: #d8e6dc; font-size: 14px; }

.trust-strip { background: var(--cream); border-bottom: 1px solid var(--sand); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 24px 0; }
.trust-item { display: flex; align-items: center; gap: 11px; color: #3f493f; font-weight: 650; }
.trust-item img { width: 26px; height: 26px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 4px 18px rgba(16,40,26,.05); }
.card-body { padding: 26px; }
.card h3 { margin-bottom: 9px; font-size: 22px; }
.card p { color: var(--muted); }
.feature-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.feature-icon { display: grid; width: 48px; height: 48px; margin-bottom: 18px; place-items: center; border-radius: 12px; background: var(--green-100); font-size: 24px; }
.feature-card h3 { margin-bottom: 9px; font-size: 21px; }
.feature-card p { color: var(--muted); }

.range-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.range-meta { margin: 9px 0 20px; color: var(--green-700); font-weight: 750; }

.page-hero { padding: 62px 0; background: linear-gradient(125deg, var(--green-950), var(--green-700)); color: var(--white); }
.page-hero h1 { color: var(--white); font-size: clamp(34px, 5vw, 50px); }
.page-hero p { max-width: 720px; margin-top: 10px; color: #dce9df; font-size: 18px; }
.breadcrumb { margin-top: 14px; color: #c9d9ce; font-size: 14px; }
.breadcrumb a:hover { color: var(--white); }

.harvest-hero {
  position: relative;
  display: grid;
  min-height: 360px;
  align-items: center;
  overflow: hidden;
  background: url('../images/contact-harvest.jpg') 58% center/cover no-repeat;
}
.harvest-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10,35,22,.93) 0%, rgba(10,35,22,.78) 38%, rgba(10,35,22,.34) 68%, rgba(10,35,22,.08) 100%);
}
.harvest-hero .container { position: relative; z-index: 1; }
.harvest-hero h1 { text-shadow: 0 2px 14px rgba(0,0,0,.28); }
.harvest-hero p, .harvest-hero .breadcrumb { text-shadow: 0 1px 8px rgba(0,0,0,.32); }

.product-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.popular-showcase { position: relative; overflow: hidden; margin-bottom: 52px; padding: 34px; border-radius: 22px; background: linear-gradient(135deg, #0d3020 0%, #1f5a39 100%); box-shadow: var(--shadow); }
.popular-showcase::after { content: ''; position: absolute; top: -90px; right: -70px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.06); pointer-events: none; }
.popular-showcase-head { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 25px; color: var(--white); }
.popular-showcase-head .eyebrow { color: #ff9c70; }
.popular-showcase-head h2 { margin: 2px 0 0; color: var(--white); font-size: clamp(28px, 4vw, 42px); }
.popular-showcase-head > p { max-width: 430px; margin: 0; color: rgba(255,255,255,.86); }
.mobile-range-link { display: none; }
.popular-grid { position: relative; z-index: 1; grid-template-columns: repeat(3, 1fr); }
.popular-showcase .product-card { border: 2px solid rgba(255,132,76,.72); box-shadow: 0 14px 34px rgba(0,0,0,.24); }
.popular-showcase .product-card .badge { background: var(--orange-dark); color: var(--white); }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { padding: 9px 15px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); color: var(--ink); cursor: pointer; font-weight: 650; }
.filter-btn.active { border-color: var(--green-900); background: var(--green-900); color: var(--white); }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.product-card { display: flex; flex-direction: column; }
.product-card.is-popular { border-color: rgba(239,91,42,.56); box-shadow: 0 12px 30px rgba(239,91,42,.13); }
.product-image-wrap { position: relative; overflow: hidden; }
.product-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.image-label { position: absolute; right: 10px; bottom: 10px; padding: 5px 9px; border-radius: 999px; background: rgba(23,34,29,.82); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.product-card .card-body { display: flex; flex: 1; flex-direction: column; }
.product-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin: -6px 0 16px; }
.product-highlights span { padding: 5px 8px; border-radius: 6px; background: #f4f7f2; color: var(--green-900); font-size: 12px; font-weight: 750; }
.badge { display: inline-flex; align-self: flex-start; margin-bottom: 10px; padding: 5px 10px; border-radius: 999px; background: var(--green-100); color: var(--green-900); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.badge-popular { background: #fff0e9; color: var(--orange-dark); }
.product-card .product-actions { display: flex; gap: 9px; margin-top: auto; padding-top: 20px; }
.product-card .product-actions .btn { flex: 1; padding-inline: 12px; }

.detail-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: start; }
.gallery-main { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.image-disclosure { margin: 10px 2px 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.thumb { padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 9px; background: transparent; cursor: pointer; }
.thumb:hover, .thumb.active { border-color: var(--orange); }
.thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.detail-copy h2 { margin-bottom: 10px; font-size: clamp(30px, 4vw, 42px); }
.detail-kicker { margin-bottom: 20px; color: var(--green-700); font-weight: 800; }
.detail-list { margin: 24px 0; list-style: none; }
.detail-list li { position: relative; padding: 8px 0 8px 28px; color: #465046; }
.detail-list li::before { position: absolute; left: 0; content: "✓"; color: var(--orange-dark); font-weight: 900; }
.spec-table { width: 100%; margin-top: 28px; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); text-align: left; }
.spec-table th { width: 38%; color: var(--green-950); background: var(--cream); }
.disclaimer { margin-top: 16px; padding: 15px 17px; border-left: 4px solid var(--orange); background: #fff5ef; color: #694235; font-size: 14px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.caption { margin-top: 9px; color: var(--muted); font-size: 12px; }
.plain-list { margin: 20px 0 0; list-style: none; }
.plain-list li { position: relative; padding: 7px 0 7px 26px; }
.plain-list li::before { position: absolute; left: 0; content: "•"; color: var(--orange); font-weight: 900; }

.process { counter-reset: step; }
.process .feature-card { position: relative; }
.process .feature-card::before { counter-increment: step; content: counter(step); display: grid; width: 34px; height: 34px; margin-bottom: 16px; place-items: center; border-radius: 50%; background: var(--orange-dark); color: var(--white); font-weight: 850; }

.form-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: start; }
.form-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-card h2 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 24px; color: var(--muted); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 6px; color: var(--green-950); font-size: 14px; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 13px; border: 1px solid #cbd3cb; border-radius: 9px; background: var(--white); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-700); outline: 3px solid rgba(40,99,62,.14); }
.field textarea { min-height: 130px; resize: vertical; }
.form-status { display: none; margin-bottom: 18px; padding: 13px 15px; border-radius: 9px; font-weight: 650; }
.form-status.success { display: block; border: 1px solid #85b898; background: #eef8f1; color: #1d6035; }
.form-status.error { display: block; border: 1px solid #e2a99f; background: #fff1ef; color: var(--danger); }
.form-note { margin-top: 10px; color: var(--muted); font-size: 13px; }
.contact-panel { padding: 30px; border-radius: var(--radius); background: var(--green-950); color: #dbe8df; }
.contact-panel h2, .contact-panel h3 { color: var(--white); }
.contact-item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-item:last-child { border-bottom: 0; }
.contact-item a { color: var(--white); font-weight: 700; }

/* Contact panel comparison options */
.contact-option { align-self: stretch; border-radius: var(--radius); }
.option-label { display: inline-flex; margin-bottom: 22px; padding: 5px 10px; border-radius: 999px; background: var(--green-100); color: var(--green-900); font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.contact-advisor-card { padding: 32px; border: 1px solid #d8dfd8; background: linear-gradient(145deg, #fbfcf9 0%, #f2f6f0 100%); box-shadow: 0 12px 30px rgba(16,40,26,.08); }
.advisor-head { display: flex; align-items: center; gap: 16px; }
.advisor-head .eyebrow { margin-bottom: 5px; }
.advisor-head h2 { font-size: 27px; }
.advisor-avatar { display: grid; width: 64px; height: 64px; flex: 0 0 64px; place-items: center; border-radius: 18px; background: var(--green-900); color: var(--white); font-size: 20px; font-weight: 850; box-shadow: 0 8px 18px rgba(23,58,37,.2); }
.advisor-lead { margin: 22px 0; color: var(--muted); }
.advisor-list { border-top: 1px solid var(--border); }
.advisor-row { display: flex; align-items: center; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.advisor-row .contact-icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 10px; background: #fff0e9; color: var(--orange-dark); font-size: 13px; font-weight: 850; }
.advisor-row small, .advisor-row strong { display: block; }
.advisor-row small { color: var(--muted); font-size: 12px; }
.advisor-row strong { color: var(--green-950); font-size: 14px; overflow-wrap: anywhere; }
.advisor-cta { width: 100%; margin-top: 22px; }


.cta { padding: 62px 0; background: var(--orange-dark); color: var(--white); text-align: center; }
.cta h2 { color: var(--white); font-size: clamp(30px, 4vw, 42px); }
.cta p { max-width: 680px; margin: 12px auto 24px; }

.site-footer { padding: 55px 0 24px; background: var(--green-950); color: #b9c9be; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 36px; }
.site-footer .logo { color: var(--white); }
.site-footer h3 { margin-bottom: 14px; color: var(--white); font-size: 16px; }
.site-footer a { display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: 13px; }

.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 40; display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: #25d366; color: var(--green-950); box-shadow: var(--shadow); font-weight: 850; }
.wa-float.is-hidden { display: none; }
.legal-copy { max-width: 860px; }
.legal-copy h2 { margin: 34px 0 10px; color: var(--green-950); font-size: 24px; }
.legal-copy p { color: #465046; }
.error-page { min-height: 65vh; display: grid; place-items: center; }
.error-code { margin: 0; color: var(--orange); font-size: clamp(72px, 14vw, 150px); font-weight: 900; line-height: .9; }
.error-actions { justify-content: center; margin-top: 28px; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 8px 0 20px; color: #566056; font-size: 13px; line-height: 1.55; }
.consent-row input { width: 17px; height: 17px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--green-700); }
.consent-row a { color: var(--green-700); font-weight: 750; text-decoration: underline; }

@media (max-width: 920px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .product-grid, .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .detail-grid, .form-layout { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max-width)); }
  .section { padding: 42px 0; }
  .topbar { display: none; }
  .nav-row { min-height: 60px; }
  .logo { gap: 8px; font-size: 19px; }
  .logo-mark { width: 35px; height: 35px; }
  .nav-toggle { display: block; min-width: 44px; min-height: 44px; padding: 5px; font-size: 25px; }
  .nav-links { position: absolute; top: 60px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 14px; border-bottom: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links > a { width: 100%; }
  .hero { min-height: 0; background-position: 64% center; }
  .hero::before { background: linear-gradient(90deg, rgba(9,26,16,.94), rgba(9,26,16,.62)); }
  .hero-content { padding: 34px 0 30px; }
  .hero h1 { margin-bottom: 12px; font-size: clamp(32px, 8vw, 42px); }
  .hero .lead { font-size: 16px; line-height: 1.5; }
  .hero-actions { margin-top: 20px; }
  .hero-note { margin-top: 16px; font-size: 12px; }
  .page-hero { padding: 32px 0; }
  .page-hero h1 { font-size: clamp(30px, 7vw, 36px); }
  .page-hero p { font-size: 16px; line-height: 1.5; }
  .breadcrumb { margin-top: 9px; font-size: 13px; }
  .harvest-hero { min-height: 230px; background-position: 70% center; }
  .harvest-hero::before { background: linear-gradient(90deg, rgba(10,35,22,.94), rgba(10,35,22,.62)); }
  .trust-grid { display: flex; gap: 18px; overflow-x: auto; padding: 12px 0; scrollbar-width: none; }
  .trust-grid::-webkit-scrollbar { display: none; }
  .trust-item { flex: 0 0 auto; gap: 7px; font-size: 13px; line-height: 1.35; white-space: nowrap; }
  .trust-item img { width: 22px; height: 22px; }
  .card-body { padding: 18px; }
  .range-card img { aspect-ratio: 16/10; }
  .grid-2, .grid-3, .grid-4, .product-grid, .popular-grid, .field-row { grid-template-columns: 1fr; }
  .popular-showcase { margin-bottom: 38px; padding: 20px 14px; border-radius: 16px; }
  .popular-showcase-head { display: block; margin-bottom: 18px; }
  .popular-showcase-head > p { margin-top: 9px; font-size: 14px; line-height: 1.5; }
  .mobile-range-link { display: inline-flex; margin-top: 12px; color: var(--white); font-size: 14px; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }
  .popular-grid { gap: 16px; }
  .popular-grid .product-card img { aspect-ratio: 16/10; }
  .popular-grid .product-card h3 { font-size: 20px; }
  .popular-grid .product-card .range-meta { margin: 4px 0 12px; }
  .popular-grid .product-highlights { margin: 0 0 12px; }
  .popular-grid .product-actions { flex-direction: row; padding-top: 16px; }
  .product-toolbar { display: block; margin-bottom: 18px; scroll-margin-top: 72px; }
  .filter-group { gap: 6px; margin-top: 15px; }
  .filter-btn { padding: 8px 11px; font-size: 13px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-grid .product-card { min-width: 0; }
  .product-grid .product-card img { aspect-ratio: 4/3; }
  .product-grid .image-label { right: 5px; bottom: 5px; max-width: calc(100% - 10px); padding: 3px 5px; font-size: 9px; line-height: 1.2; }
  .product-grid .product-card .card-body { min-width: 0; padding: 10px; }
  .product-grid .badge { margin-bottom: 5px; padding: 3px 7px; font-size: 9px; }
  .product-grid .product-card h3 { margin-bottom: 5px; font-size: 15px; }
  .product-grid .range-meta { margin: 0 0 8px; font-size: 12px; }
  .product-grid .product-highlights { gap: 4px; margin: 0 0 8px; }
  .product-grid .product-highlights span { padding: 2px 5px; font-size: 9px; }
  .product-grid .product-highlights span:nth-child(n+3), .product-grid .card-body > p:not(.range-meta) { display: none; }
  .product-grid .product-actions { flex-direction: row; gap: 4px; padding-top: 8px; }
  .product-grid .product-actions .btn { min-height: 44px; padding: 7px 2px; border-radius: 7px; font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .wa-float { right: 14px; bottom: 14px; width: 46px; height: 46px; font-size: 12px; }
}

@media (max-width: 460px) {
  .product-actions { flex-direction: column; }
  .hero-actions .btn { flex: 1; min-width: 0; padding: 8px; font-size: 13px; line-height: 1.3; text-align: center; }
  .form-card { padding: 22px; }
  .thumbs { grid-template-columns: repeat(2, 1fr); }
  .spec-table th, .spec-table td { padding: 10px; font-size: 13px; }
  .advisor-head { align-items: flex-start; }
  .advisor-avatar { width: 52px; height: 52px; flex-basis: 52px; }
  .contact-advisor-card { padding: 23px; }
}

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