/* ===== ANGER PROPERTY EXPERTS — PREMIUM CSS ===== */
/* Brand: #FF6B00 (orange), #1E3A8A (navy), #FAF0E6 (linen/cream), #0f0f1a (dark) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #FF6B00;
  --blue-dark: #e05a00;
  --blue-light: #ff8c3a;
  --navy: #1E3A8A;
  --navy-dark: #162d6b;
  --cream: #FAF0E6;
  --dark: #0f0f1a;
  --dark-2: #1a1a2e;
  --dark-3: #16213e;
  --text: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.20);
  --radius: 12px;
  --radius-lg: 20px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --nav-h: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 800px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 0.01em; border-radius: 8px; transition: all 160ms var(--ease-out); white-space: nowrap; cursor: pointer; }
.btn:active { transform: scale(0.97); }
.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 4px 14px rgba(255,107,0,0.35); }
.btn--blue:hover { background: var(--blue-dark); box-shadow: 0 6px 20px rgba(255,107,0,0.45); transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,0.12); color: var(--white); border: 2px solid rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,0.22); border-color: var(--white); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--xl { padding: 1rem 2rem; font-size: 1.0625rem; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; border-radius: 10px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.10); transition: box-shadow 300ms var(--ease-out), background 300ms var(--ease-out); }
.nav.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.nav__inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; height: 100%; display: flex; align-items: center; gap: 2rem; }
.nav__logo { flex-shrink: 0; }
.nav__logo-img { height: 64px; width: auto; object-fit: contain; }
.nav__links { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin-left: auto; }
.nav__link { padding: 0.5rem 0.875rem; color: rgba(30,58,138,0.8); font-size: 0.9375rem; font-weight: 500; border-radius: 6px; transition: color 150ms, background 150ms; }
.nav__link:hover { color: var(--navy); background: rgba(30,58,138,0.07); }
.nav__actions { display: flex; align-items: center; gap: 1rem; margin-left: 1.5rem; }
.nav__phone { display: flex; align-items: center; gap: 0.4rem; color: var(--navy); font-weight: 600; font-size: 0.9375rem; transition: color 150ms; }
.nav__phone:hover { color: var(--blue); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 250ms var(--ease-out); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-h); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,26,0.88) 0%, rgba(15,15,40,0.75) 50%, rgba(10,10,26,0.65) 100%); }
.hero__content { position: relative; z-index: 2; padding: 5rem 1.5rem; padding-left: max(1.5rem, calc((100vw - 1280px)/2 + 1.5rem)); padding-right: max(1.5rem, calc((100vw - 1280px)/2 + 1.5rem)); width: 100%; max-width: 1280px; }
.hero__content--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; min-height: calc(100vh - var(--nav-h)); padding-bottom: 0; }
.hero__left { flex: 0 1 auto; max-width: 620px; padding-bottom: 4rem; }
.hero__right { flex: 0 0 auto; display: flex; align-items: flex-end; justify-content: flex-end; align-self: flex-end; }
.hero__gorilla { width: clamp(380px, 42vw, 640px); height: auto; filter: drop-shadow(0 30px 80px rgba(0,0,0,0.6)); transform: translateX(100px) translateY(30px); opacity: 0; animation: gorilla-enter 1000ms 200ms cubic-bezier(0.23,1,0.32,1) forwards; }
@keyframes gorilla-enter { to { transform: translateX(0) translateY(0); opacity: 1; } }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,107,0,0.2); border: 1px solid rgba(255,107,0,0.4); color: #ffb380; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem; }
.hero__headline { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.hero__headline em { font-style: italic; color: #ffb380; }
.hero__sub { font-size: 1.125rem; color: rgba(255,255,255,0.85); max-width: 580px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero__sub strong { color: var(--white); }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.trust-pill { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); font-size: 0.8125rem; font-weight: 500; padding: 0.35rem 0.875rem; border-radius: 100px; backdrop-filter: blur(4px); }
.trust-pill svg { color: #86efac; flex-shrink: 0; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); animation: bounce 2s infinite; transition: color 200ms; }
.hero__scroll:hover { color: rgba(255,255,255,0.9); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* STATS */
.stats { background: var(--navy); padding: 2rem 0; }
.stats__inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; padding: 1rem 3rem; }
.stat__num { font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; display: flex; align-items: baseline; justify-content: center; gap: 0.1rem; }
.stat__suffix { font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,0.8); }
.stat__label { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }
.stat__divider { width: 1px; height: 48px; background: rgba(255,255,255,0.25); }

/* SECTIONS */
.section { padding: 6rem 0; }
.section--light { background: var(--white); }
.section--dark { background: var(--dark-2); }
.section--cream { background: var(--cream); }
.section--cta { background: var(--dark); }
.section__header { text-align: center; margin-bottom: 4rem; }
.section__label { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); background: rgba(255,107,0,0.08); border: 1px solid rgba(255,107,0,0.2); padding: 0.3rem 0.875rem; border-radius: 100px; margin-bottom: 1rem; }
.section__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 1rem; }
.section__title--light { color: var(--white); }
.section__sub { font-size: 1.0625rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section__sub--light { color: rgba(255,255,255,0.7); }

/* HOW IT WORKS */
.steps { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.step-card { flex: 1; min-width: 240px; max-width: 320px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow-md); transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-card__number { font-size: 3rem; font-weight: 900; color: rgba(255,107,0,0.12); line-height: 1; margin-bottom: 1rem; font-family: 'Playfair Display', serif; }
.step-card__icon { width: 56px; height: 56px; background: rgba(255,107,0,0.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--blue); }
.step-card__title { font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.step-card__desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }
.step-card__desc a { color: var(--blue); font-weight: 600; }
.step-card__arrow { color: var(--blue); opacity: 0.4; flex-shrink: 0; }

/* SITUATIONS */
.situations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.sit-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 2rem; transition: background 250ms, border-color 250ms, transform 250ms var(--ease-out); }
.sit-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,107,0,0.4); transform: translateY(-3px); }
.sit-card__icon { width: 48px; height: 48px; background: rgba(255,107,0,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #ffb380; margin-bottom: 1.25rem; }
.sit-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.sit-card__desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* COMPARISON TABLE */
.compare-table { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.compare-table__header { display: grid; grid-template-columns: 1fr 1.2fr 1fr; background: var(--dark-2); }
.compare-col { padding: 1.25rem 1.5rem; font-size: 0.875rem; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }
.compare-col--feature { color: rgba(255,255,255,0.5); }
.compare-col--us { background: rgba(255,107,0,0.2); color: var(--white); }
.compare-col__badge { display: flex; align-items: center; gap: 0.4rem; color: #ffb380; }
.compare-row { display: grid; grid-template-columns: 1fr 1.2fr 1fr; background: var(--white); }
.compare-row--alt { background: #f8fafc; }
.compare-cell { padding: 1rem 1.5rem; font-size: 0.9375rem; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; }
.compare-cell--feature { font-weight: 600; color: var(--text); }
.compare-cell--us { background: rgba(255,107,0,0.04); font-weight: 600; color: var(--text); border-left: 2px solid rgba(255,107,0,0.2); }
.compare-cell--traditional { color: var(--text-muted); }

/* SPLIT SECTION */
.section--split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.split__image { position: relative; overflow: hidden; }
.split__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.split__content { background: var(--cream); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.split__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.75rem, 2.5vw, 2.25rem); font-weight: 800; color: var(--text); line-height: 1.25; margin: 1rem 0 1.25rem; }
.split__text { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.split__values { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.split__value { display: flex; gap: 1rem; align-items: flex-start; }
.split__value-icon { width: 40px; height: 40px; background: rgba(255,107,0,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.split__value strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.split__value p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); transition: transform 250ms var(--ease-out), box-shadow 250ms; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card__stars { font-size: 1.125rem; color: #f59e0b; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testi-card__quote { font-size: 0.9375rem; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-card__author { display: flex; align-items: center; gap: 0.875rem; }
.testi-card__avatar { width: 44px; height: 44px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8125rem; font-weight: 700; flex-shrink: 0; }
.testi-card__author strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--text); }
.testi-card__author span { font-size: 0.8125rem; color: var(--text-muted); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; font-size: 1rem; font-weight: 600; color: var(--text); text-align: left; transition: background 150ms; }
.faq-item__q:hover { background: #f8fafc; }
.faq-item__icon { flex-shrink: 0; transition: transform 250ms var(--ease-out); color: var(--blue); }
.faq-item.open .faq-item__icon { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 350ms var(--ease-out); }
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a p { padding: 0 1.5rem 1.25rem; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; }
.faq-item__a a { color: var(--blue); font-weight: 600; }

/* CTA / CONTACT */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.cta-content .section__label { background: rgba(255,107,0,0.15); border-color: rgba(255,107,0,0.3); color: #ffb380; }
.cta-content__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.875rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); line-height: 1.2; margin: 1rem 0 1.25rem; }
.cta-content__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2rem; }
.cta-content__phone { margin-bottom: 1.75rem; }
.cta-phone-link { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 1.75rem; font-weight: 800; color: var(--white); transition: color 150ms; }
.cta-phone-link:hover { color: #ffb380; }
.cta-content__checks { display: flex; flex-direction: column; gap: 0.625rem; }
.cta-check { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9375rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-xl); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.9375rem; font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); transition: border-color 150ms, box-shadow 150ms; outline: none; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(255,107,0,0.12); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group--consent { margin-top: 0.25rem; }
.consent-label { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; }
.consent-label input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--blue); }
.consent-label span { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; padding: 3rem 2rem; text-align: center; min-height: 300px; }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer__top { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.footer__logo { height: 52px; width: auto; margin-bottom: 0.75rem; }
.footer__tagline { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.5); font-style: italic; margin-bottom: 0.75rem; }
.footer__desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer h4 { font-size: 0.875rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 150ms; }
.footer__links a:hover { color: var(--white); }
.footer__contact { display: flex; flex-direction: column; gap: 0.875rem; }
.footer__phone, .footer__email { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; color: rgba(255,255,255,0.75); font-weight: 600; transition: color 150ms; }
.footer__phone:hover, .footer__email:hover { color: var(--white); }
.footer__areas { font-size: 0.8125rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer__areas strong { display: block; color: rgba(255,255,255,0.6); margin-bottom: 0.2rem; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; font-size: 0.8125rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 0.5rem; }

/* MOBILE CALL BAR */
.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.1); padding: 0.75rem 1rem; gap: 0.75rem; }
.mobile-call-bar__btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem; border-radius: 8px; font-weight: 700; font-size: 0.9375rem; font-family: 'Inter', sans-serif; transition: all 150ms; }
.mobile-call-bar__btn--call { background: var(--blue); color: var(--white); }
.mobile-call-bar__btn--form { background: var(--navy); color: var(--white); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section--split { grid-template-columns: 1fr; }
  .split__image { height: 400px; }
  .split__content { padding: 3.5rem 2rem; }
  .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero__content--split { flex-direction: column; align-items: flex-start; }
  .hero__right { width: 100%; justify-content: center; margin-top: 1.5rem; }
  .hero__gorilla { width: clamp(260px, 65vw, 400px); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  /* NAV */
  .nav__links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: #ffffff; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; z-index: 999; }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 1.25rem; padding: 0.75rem 2rem; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; }
    .nav__logo-img { height: 52px; }
  /* HERO */
  .hero { min-height: auto; }
  .hero__content { padding: 2rem 1.25rem 1.5rem; }
  .hero__content--split { flex-direction: column; align-items: flex-start; min-height: auto; gap: 0; }
  .hero__left { padding-bottom: 0; max-width: 100%; }
  .hero__badge { font-size: 0.7rem; padding: 0.3rem 0.75rem; margin-bottom: 1rem; }
  .hero__headline { font-size: clamp(1.875rem, 7.5vw, 2.5rem); margin-bottom: 1rem; }
  .hero__sub { font-size: 0.9375rem; margin-bottom: 1.5rem; }
  .hero__cta { flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
  .hero__cta .btn { width: 100%; justify-content: center; padding: 0.875rem 1.5rem; font-size: 1rem; }
  .hero__trust { gap: 0.5rem; margin-bottom: 0; }
  .trust-pill { font-size: 0.75rem; padding: 0.3rem 0.75rem; }
  /* GORILLA on mobile — centered below text, not too huge */
  .hero__right { width: 100%; justify-content: center; margin-top: 0; }
  .hero__gorilla { width: clamp(220px, 70vw, 320px); filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5)); }
  /* STATS */
  .stats__inner { gap: 0; flex-wrap: wrap; }
  .stat { padding: 0.875rem 1.25rem; flex: 1 1 45%; }
  .stat__num { font-size: 2rem; }
  .stat__divider { display: none; }
  /* SECTIONS */
  .section { padding: 3.5rem 0; }
  .section__header { margin-bottom: 2.5rem; }
  /* STEPS */
  .steps { flex-direction: column; align-items: center; }
  .step-card { min-width: 100%; max-width: 100%; }
  .step-card__arrow { transform: rotate(90deg); }
  /* COMPARISON TABLE */
  .compare-table__header, .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-col--feature, .compare-cell--feature { display: none; }
  .compare-cell { padding: 0.875rem 1rem; font-size: 0.875rem; }
  /* SITUATIONS */
  .situations-grid { grid-template-columns: 1fr; }
  /* SPLIT */
  .section--split { grid-template-columns: 1fr; }
  .split__image { height: 280px; }
  .split__content { padding: 2.5rem 1.25rem; }
  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; }
  /* CTA / CONTACT */
  .cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-phone-link { font-size: 1.375rem; }
  .contact-form-wrap { padding: 1.5rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  /* FOOTER */
  .footer__top { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem; }
  .footer__bottom { flex-direction: column; text-align: center; padding: 1.25rem; }
  /* MOBILE CALL BAR */
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 76px; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: 1.875rem; }
  .hero__gorilla { width: clamp(180px, 80vw, 280px); }
  .section { padding: 3rem 0; }
  .section__title { font-size: 1.625rem; }
  .split__content { padding: 2rem 1.25rem; }
  .contact-form-wrap { padding: 1.5rem 1rem; }
  .stat { flex: 1 1 100%; }
  .compare-cell { padding: 0.75rem 0.75rem; font-size: 0.8125rem; }
  .sit-card { padding: 1.5rem; }
  .testi-card { padding: 1.5rem; }
  .step-card { padding: 2rem 1.5rem; }
  .mobile-call-bar__btn { font-size: 0.875rem; padding: 0.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
