:root {
  --ink: #111317;
  --muted: #66707c;
  --soft: #f6f8fa;
  --line: #e8ecef;
  --red: #ef2f32;
  --red-dark: #cf2024;
  --green: #1fbf63;
  --white: #fff;
  --shadow: 0 24px 70px rgba(17, 19, 23, .10);
  --shadow-soft: 0 12px 36px rgba(17, 19, 23, .07);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: var(--container); margin: 0 auto; }
.section { position: relative; padding: 112px 0; }
.soft-section { background: linear-gradient(180deg, #f8fafb 0%, #f4f7f8 100%); }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 10000;
  background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }
.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 9999; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--red); box-shadow: 0 0 14px rgba(239,47,50,.45); }

.topline { background: #f7f8fa; border-bottom: 1px solid #edf0f2; color: #58616d; font-size: 12px; }
.topline-inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topline p, .topline a { margin: 0; display: inline-flex; align-items: center; gap: 7px; font-weight: 650; }
.topline svg { width: 14px; height: 14px; }
.site-header { position: relative; z-index: 1000; }
.nav-shell { position: sticky; top: 0; background: rgba(255,255,255,.86); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(229,233,236,.85); transition: box-shadow .3s ease, background .3s ease; }
.site-header.scrolled .nav-shell { box-shadow: 0 12px 35px rgba(15,20,25,.06); background: rgba(255,255,255,.94); }
.nav-wrap { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { width: 72px; height: 34px; display: grid; place-items: center; color: var(--red); }
.brand-mark svg { width: 100%; stroke-width: 2.4; }
.brand-copy { display: grid; line-height: 1; gap: 5px; }
.brand-copy strong { font-family: "Sora", sans-serif; font-size: 16px; letter-spacing: -.5px; }
.brand-copy i { color: var(--red); font-style: normal; }
.brand-copy small { font-size: 8px; letter-spacing: .16em; font-weight: 800; color: #5d6670; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { position: relative; font-size: 13px; font-weight: 700; color: #4f5965; transition: color .25s ease; }
.main-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -13px; height: 2px; background: var(--red); transition: .25s ease; border-radius: 99px; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.active::after { left: 0; right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; gap: 8px; align-items: center; font-size: 12px; font-weight: 800; }
.nav-phone svg { width: 15px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: #f4f6f7; border-radius: 12px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: #111; margin: 4px 0; border-radius: 5px; transition: .25s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 22px; border-radius: 13px; font-size: 13px; font-weight: 800; border: 1px solid transparent; position: relative; overflow: hidden; isolation: isolate; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.button::before { content: ""; position: absolute; inset: 0; z-index: -1; transform: translateX(-110%); background: linear-gradient(100deg, transparent, rgba(255,255,255,.26), transparent); transition: transform .65s ease; }
.button:hover::before { transform: translateX(110%); }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-primary { color: #fff; background: linear-gradient(135deg, #f13b3e, #df2427); box-shadow: 0 14px 28px rgba(239,47,50,.22); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(239,47,50,.32); }
.button-secondary { background: #fff; color: #1c2229; border-color: #dce1e5; box-shadow: 0 9px 25px rgba(18,26,33,.05); }
.button-secondary:hover { border-color: #c8d0d6; box-shadow: 0 12px 30px rgba(18,26,33,.08); }
.button-ghost { border-color: #dfe4e7; background: #fff; }
.button-small { min-height: 42px; padding: 0 16px; border-radius: 11px; }

.hero { min-height: 760px; padding-top: 86px; padding-bottom: 48px; overflow: hidden; background: linear-gradient(135deg, #fff 0%, #fff 44%, #fafcfd 100%); }
.hero-noise { position: absolute; inset: 0; opacity: .23; pointer-events: none; background-image: radial-gradient(#dfe4e8 .6px, transparent .6px); background-size: 14px 14px; mask-image: linear-gradient(to right, #000, transparent 75%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.orb-one { width: 430px; height: 430px; right: -150px; top: 20px; background: radial-gradient(circle at 40% 40%, rgba(239,47,50,.10), rgba(239,47,50,0)); animation: drift 9s ease-in-out infinite; }
.orb-two { width: 280px; height: 280px; left: -100px; bottom: 120px; background: radial-gradient(circle at 60% 40%, rgba(23,130,255,.05), transparent 70%); animation: drift 11s ease-in-out infinite reverse; }
@keyframes drift { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(12px,-18px,0); } }
.hero-grid { display: grid; grid-template-columns: 1.01fr .99fr; gap: 68px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 11px; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 800; color: #424b54; }
.eyebrow span { width: 38px; height: 2px; background: var(--red); border-radius: 99px; }
.eyebrow-center { justify-content: center; }
.hero h1, .section-heading h2, .specialist-copy h2, .parts-copy h2, .about-copy h2, .faq-heading h2, .contact-copy h2 {
  font-family: "Sora", sans-serif; margin: 20px 0 22px; letter-spacing: -.045em; line-height: .99;
}
.hero h1 { font-size: clamp(50px, 5.8vw, 80px); max-width: 670px; }
.hero h1 em, h2 em { color: var(--red); font-style: normal; }
.hero-lead { max-width: 625px; color: #5c6671; font-size: 17px; line-height: 1.8; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 34px; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 660px; }
.hero-points > div { display: flex; gap: 10px; align-items: center; min-width: 0; }
.point-icon { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border-radius: 12px; background: #fff4f4; color: #e92c30; font-family: "Sora"; font-weight: 700; box-shadow: inset 0 0 0 1px #ffe1e2; }
.point-icon.toyota { background: #f8f9fa; color: #20262d; box-shadow: inset 0 0 0 1px #e6eaed; }
.point-icon.neutral { color: #fff; background: #1d2228; box-shadow: none; }
.hero-points p { margin: 0; display: grid; gap: 2px; min-width: 0; }
.hero-points strong { font-size: 11px; }
.hero-points small { color: #7b858f; font-size: 10px; white-space: nowrap; }
.hero-visual { position: relative; min-height: 500px; }
.hero-image-wrap { position: absolute; inset: 5px 0 0 28px; border-radius: 34px 34px 34px 110px; overflow: hidden; background: #eef2f4; box-shadow: var(--shadow); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.7); border-radius: inherit; pointer-events: none; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.hero-visual:hover img { transform: scale(1.055); }
.image-sheen { position: absolute; inset: 0; background: linear-gradient(118deg, rgba(255,255,255,.20), transparent 30%, transparent 70%, rgba(255,255,255,.08)); }
.floating-card { position: absolute; z-index: 3; background: rgba(255,255,255,.95); backdrop-filter: blur(16px); border: 1px solid rgba(230,234,237,.95); box-shadow: 0 18px 50px rgba(18,25,31,.14); }
.specialist-card { left: 0; top: 38px; border-radius: 18px; padding: 13px 17px 13px 13px; display: flex; align-items: center; gap: 12px; animation: floaty 5s ease-in-out infinite; }
.mini-ring { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--red) 0 70%, #eef1f3 70%); }
.mini-ring::before { content: ""; width: 30px; height: 30px; background: #fff; border-radius: 50%; }
.mini-ring span { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.floating-card small { display: block; color: #7b858d; font-size: 9px; font-weight: 700; }
.floating-card strong { display: block; margin-top: 2px; font-size: 12px; }
.whatsapp-card { right: -20px; bottom: 28px; min-width: 258px; border-radius: 18px; padding: 14px 15px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 11px; animation: floaty 5.5s ease-in-out infinite reverse; }
.wa-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #ecfff4; color: var(--green); }
.wa-icon svg { width: 23px; fill: currentColor; stroke: none; }
.whatsapp-card b { font-size: 20px; font-weight: 500; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.quick-strip { margin-top: 64px; background: #fff; border: 1px solid var(--line); border-radius: 20px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 10px; box-shadow: var(--shadow-soft); }
.quick-item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.quick-item > span { font-family: "Sora"; color: var(--red); font-weight: 700; font-size: 11px; }
.quick-item p { margin: 0; display: grid; gap: 3px; }
.quick-item strong { font-size: 12px; }
.quick-item small { color: #8b949d; font-size: 10px; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .specialist-copy h2, .parts-copy h2, .about-copy h2, .faq-heading h2, .contact-copy h2 { font-size: clamp(38px, 4.2vw, 58px); line-height: 1.08; }
.section-heading p, .specialist-copy > p, .parts-copy > p, .faq-heading > p { color: #66707b; line-height: 1.8; font-size: 15px; margin: 0; }
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 250px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.service-card::before { content: ""; position: absolute; width: 120px; height: 120px; right: -75px; top: -75px; border-radius: 50%; background: rgba(239,47,50,.06); transition: transform .4s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 22px 55px rgba(18,24,29,.09); border-color: #dfe4e7; }
.service-card:hover::before { transform: scale(1.7); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #fff4f4; color: var(--red); margin-bottom: 28px; }
.service-icon svg { width: 25px; height: 25px; }
.service-num { position: absolute; top: 28px; right: 28px; color: #c4cbd1; font-family: "Sora"; font-size: 11px; font-weight: 700; }
.service-card h3 { font-family: "Sora"; font-size: 18px; letter-spacing: -.02em; margin: 0 0 10px; }
.service-card p { color: #6e7882; line-height: 1.7; font-size: 13px; margin: 0; }
.service-cta { margin-top: 24px; border-radius: 18px; padding: 21px 24px; background: #12161b; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.service-cta p { margin: 0; color: #b9c0c7; font-size: 13px; }
.service-cta p strong { color: #fff; }
.service-cta a { color: #fff; font-size: 12px; font-weight: 800; white-space: nowrap; }
.service-cta a span { color: var(--red); margin-left: 8px; font-size: 18px; }

.specialist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.specialist-copy > p { max-width: 580px; }
.check-list { display: grid; gap: 16px; margin-top: 34px; }
.check-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; }
.check-list > div > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: #fff; color: var(--red); border: 1px solid #e6eaed; font-weight: 900; }
.check-list p { margin: 0; display: grid; gap: 3px; }
.check-list strong { font-size: 13px; }
.check-list small { color: #78828c; line-height: 1.55; }
.brand-panels { display: grid; gap: 18px; }
.brand-panel { position: relative; min-height: 205px; background: #fff; border: 1px solid #e4e9ec; border-radius: 26px; display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 22px; padding: 28px; overflow: hidden; box-shadow: 0 14px 40px rgba(26,31,36,.05); transition: transform .3s ease, box-shadow .3s ease; }
.brand-panel:hover { transform: translateX(8px); box-shadow: 0 18px 48px rgba(26,31,36,.09); }
.brand-letter { width: 94px; height: 94px; display: grid; place-items: center; border-radius: 50%; font: 700 42px/1 "Sora"; background: #fff5f5; color: var(--red); border: 1px solid #ffe1e2; }
.toyota-panel .brand-letter { background: #f5f7f8; color: #171b20; border-color: #e3e8eb; }
.brand-panel-copy span { font-size: 9px; letter-spacing: .18em; font-weight: 900; color: var(--red); }
.toyota-panel .brand-panel-copy span { color: #555f68; }
.brand-panel-copy h3 { margin: 7px 0 8px; font: 600 21px/1.2 "Sora"; }
.brand-panel-copy p { margin: 0; color: #737d86; font-size: 12px; line-height: 1.65; }
.brand-line { position: absolute; width: 130px; height: 130px; right: -40px; bottom: -72px; border-radius: 50%; border: 1px solid rgba(239,47,50,.14); box-shadow: 0 0 0 16px rgba(239,47,50,.025), 0 0 0 34px rgba(239,47,50,.018); }
.toyota-panel .brand-line { border-color: rgba(17,19,23,.12); box-shadow: 0 0 0 16px rgba(17,19,23,.02), 0 0 0 34px rgba(17,19,23,.014); }

.parts-grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 76px; align-items: center; }
.parts-visual { position: relative; min-height: 520px; }
.parts-image { position: absolute; inset: 0 30px 0 0; border-radius: 30px 90px 30px 30px; overflow: hidden; box-shadow: var(--shadow); }
.parts-image img { width: 100%; height: 100%; object-fit: cover; }
.parts-chip { position: absolute; z-index: 3; padding: 12px 15px; border: 1px solid #e1e6e9; background: rgba(255,255,255,.95); backdrop-filter: blur(14px); border-radius: 14px; box-shadow: 0 14px 35px rgba(15,20,25,.11); font-size: 11px; font-weight: 800; }
.parts-chip span { color: var(--red); margin-right: 5px; }
.chip-one { left: -14px; top: 54px; }
.chip-two { right: 4px; bottom: 58px; }
.parts-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 29px 0; }
.parts-list span { padding: 9px 12px; background: #f7f9fa; border: 1px solid #e8ecef; border-radius: 999px; color: #48515a; font-size: 11px; font-weight: 700; }
.oil-note { display: grid; grid-template-columns: 46px 1fr; gap: 13px; align-items: center; padding: 17px; background: #fff8f8; border: 1px solid #ffe0e1; border-radius: 16px; margin-bottom: 24px; }
.oil-note svg { width: 27px; height: 27px; color: var(--red); justify-self: center; }
.oil-note p { margin: 0; display: grid; gap: 4px; }
.oil-note strong { font-size: 12px; }
.oil-note small { color: #737d86; line-height: 1.55; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 850; }
.text-link span { color: var(--red); font-size: 16px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px,-3px); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { background: #fff; border: 1px solid #e5eaed; border-radius: 20px; padding: 26px; min-height: 220px; transition: transform .3s ease, box-shadow .3s ease; }
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.process-card > span { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: #fff2f2; color: var(--red); font: 700 10px/1 "Sora"; }
.process-card h3 { font: 600 16px/1.25 "Sora"; margin: 34px 0 8px; }
.process-card p { margin: 0; color: #747e87; font-size: 12px; line-height: 1.65; }

.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 85px; }
.about-lead { color: #5f6973; font-size: 16px; line-height: 1.8; }
.about-copy blockquote { margin: 28px 0 30px; padding: 22px 0 22px 22px; border-left: 3px solid var(--red); color: #343c44; font-family: "Sora"; line-height: 1.65; font-size: 15px; }
.about-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.about-card { background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 10px; box-shadow: var(--shadow); transform: rotate(1.2deg); transition: transform .4s ease; }
.about-card:hover { transform: rotate(0deg) translateY(-5px); }
.about-card-image { height: 430px; overflow: hidden; border-radius: 23px; background: #eef1f3; }
.about-card-image img { width: 100%; height: 100%; object-fit: cover; }
.about-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 18px 16px 11px; }
.about-card-footer > div { display: grid; gap: 3px; }
.about-card-footer small { color: #879099; font-size: 9px; }
.about-card-footer strong { font: 600 15px/1 "Sora"; }
.about-card-footer > span { font-size: 10px; font-weight: 800; padding: 7px 10px; border-radius: 99px; background: #f5f7f8; color: #626c75; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 130px; }
.accordion { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid #e4e9ec; border-radius: 18px; overflow: hidden; }
.faq-item button { width: 100%; border: 0; background: transparent; padding: 20px 22px; display: flex; justify-content: space-between; gap: 20px; text-align: left; cursor: pointer; font-weight: 800; font-size: 13px; }
.faq-item button b { font-size: 20px; font-weight: 400; color: var(--red); transition: transform .3s ease; }
.faq-item.open button b { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; color: #6c7680; font-size: 12px; line-height: 1.75; padding: 0 22px; transition: padding .35s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 22px 20px; }

.contact { padding-bottom: 72px; }
.contact-shell { position: relative; overflow: hidden; border-radius: 34px; background: #15191e; color: #fff; display: grid; grid-template-columns: .93fr 1.07fr; min-height: 540px; }
.contact-shell::before { content: ""; position: absolute; width: 420px; height: 420px; left: -180px; bottom: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(239,47,50,.22), transparent 70%); }
.contact-copy { position: relative; z-index: 1; padding: 60px; }
.light-eyebrow { color: #c8ced4; }
.contact-copy h2 { color: #fff; margin-top: 18px; }
.contact-copy > p { color: #aeb6be; line-height: 1.75; max-width: 470px; font-size: 13px; }
.contact-list { display: grid; gap: 12px; margin-top: 32px; }
.contact-list a { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; padding: 11px; margin-left: -11px; border-radius: 14px; transition: background .2s ease; }
.contact-list a:hover { background: rgba(255,255,255,.05); }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #ff5a5d; background: rgba(239,47,50,.11); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-list a > span:last-child { display: grid; gap: 3px; }
.contact-list small { color: #7f8993; font-size: 9px; }
.contact-list strong { font-size: 12px; }
.map-card { position: relative; margin: 14px; border-radius: 26px; overflow: hidden; background: #e8ecef; min-height: 500px; }
.map-card iframe { border: 0; width: 100%; height: 100%; min-height: 500px; filter: saturate(.85) contrast(1.02); }
.map-card > a { position: absolute; right: 16px; bottom: 16px; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); padding: 12px 15px; border-radius: 12px; color: #20262c; font-size: 11px; font-weight: 850; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.map-card > a span { color: var(--red); margin-left: 6px; }

.site-footer { padding: 12px 0 28px; }
.footer-top { min-height: 110px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 36px; align-items: center; border-bottom: 1px solid var(--line); }
.footer-brand { transform: scale(.95); transform-origin: left center; }
.footer-top > p { margin: 0; color: #707a83; font-size: 11px; line-height: 1.6; }
.footer-cta { display: flex; gap: 8px; }
.footer-cta a { padding: 10px 13px; border-radius: 10px; background: #f5f7f8; font-size: 10px; font-weight: 850; }
.footer-cta a:last-child { background: #ebfff3; color: #168d49; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; color: #929aa2; font-size: 9px; }
.footer-bottom p { margin: 0; }

.floating-whatsapp { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: #20c466; color: #fff; box-shadow: 0 16px 36px rgba(24,176,88,.34); transition: transform .25s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp svg { width: 28px; fill: currentColor; stroke: none; }
.pulse-ring { position: absolute; inset: -5px; border: 1px solid rgba(32,196,102,.45); border-radius: 22px; animation: pulse 2.1s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.9); opacity: .9; } 70%,100% { transform: scale(1.25); opacity: 0; } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .nav-phone { display: none; }
  .hero-grid { gap: 38px; }
  .hero-points { grid-template-columns: 1fr 1fr; }
  .hero-points > div:last-child { display: none; }
  .specialist-grid, .parts-grid, .about-grid { gap: 52px; }
  .contact-copy { padding: 46px; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 30px, 760px); }
  .topline { display: none; }
  .nav-wrap { height: 70px; }
  .main-nav { position: fixed; inset: 70px 15px auto; display: grid; gap: 0; padding: 10px; background: rgba(255,255,255,.98); backdrop-filter: blur(18px); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); transform: translateY(-18px) scale(.98); opacity: 0; visibility: hidden; transition: .25s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .main-nav a { padding: 13px 14px; border-radius: 10px; }
  .main-nav a:hover { background: #f6f8f9; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: block; }
  .nav-actions .button { display: none; }
  .hero { padding-top: 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-points { max-width: 520px; margin-inline: auto; }
  .hero-visual { min-height: 470px; margin-top: 10px; }
  .hero-image-wrap { inset: 0 10px; border-radius: 30px 30px 90px 30px; }
  .specialist-card { left: 0; }
  .whatsapp-card { right: 0; }
  .quick-strip { grid-template-columns: 1fr 1fr; }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .specialist-grid, .parts-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; }
  .brand-panels { max-width: 650px; }
  .parts-visual { order: 2; }
  .faq-heading { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-shell { grid-template-columns: 1fr; }
  .map-card { min-height: 420px; }
  .map-card iframe { min-height: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 24px); }
  .section { padding: 82px 0; }
  .brand-mark { width: 58px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 6.5px; }
  .hero { padding-top: 44px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-points { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-points > div { padding: 10px; border: 1px solid var(--line); border-radius: 14px; }
  .point-icon { width: 32px; height: 32px; flex-basis: 32px; border-radius: 10px; }
  .hero-points small { white-space: normal; }
  .hero-visual { min-height: 370px; }
  .hero-image-wrap { inset: 0; border-radius: 24px 24px 68px 24px; }
  .specialist-card { top: 16px; left: 8px; transform: scale(.86); transform-origin: left top; }
  .whatsapp-card { min-width: 230px; right: 8px; bottom: 10px; transform: scale(.88); transform-origin: right bottom; }
  .quick-strip { margin-top: 40px; grid-template-columns: 1fr 1fr; }
  .quick-item { padding: 13px 12px; gap: 8px; }
  .quick-item small { display: none; }
  .section-heading h2, .specialist-copy h2, .parts-copy h2, .about-copy h2, .faq-heading h2, .contact-copy h2 { font-size: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .service-cta { align-items: flex-start; flex-direction: column; }
  .brand-panel { grid-template-columns: 76px 1fr; padding: 20px; min-height: 170px; }
  .brand-letter { width: 68px; height: 68px; font-size: 30px; }
  .parts-visual { min-height: 390px; }
  .parts-image { inset: 0 8px 0 0; border-radius: 24px 64px 24px 24px; }
  .chip-one { left: 5px; top: 24px; }
  .chip-two { right: 0; bottom: 34px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; }
  .about-card-image { height: 340px; }
  .contact-copy { padding: 34px 24px; }
  .map-card { margin: 8px; min-height: 350px; }
  .map-card iframe { min-height: 350px; }
  .footer-top { grid-template-columns: 1fr; gap: 18px; padding: 24px 0; }
  .footer-cta { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .floating-whatsapp { width: 54px; height: 54px; right: 15px; bottom: 15px; }
}

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