:root {
  --ink: #101c2c;
  --muted: #627084;
  --line: #dfe6ee;
  --soft: #f4f8fc;
  --soft-blue: #eaf4ff;
  --blue: #237ad7;
  --blue-dark: #155faa;
  --white: #fff;
  --header-h: 76px;
  --gutter: clamp(22px, 4vw, 72px);
  --shell: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { margin: 0; overflow-x: hidden; background: var(--white); color: var(--ink); font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif; }
body.nav-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; stroke-width: 1.8; }
.page-shell { width: min(calc(100% - var(--gutter) * 2), var(--shell)); margin-inline: auto; }
.section-space { padding-block: clamp(116px, 10vw, 176px); }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px; background: var(--ink); color: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; z-index: 40; inset: 0 0 auto; height: var(--header-h); padding-inline: var(--gutter); display: grid; grid-template-columns: auto 1fr auto; gap: clamp(24px, 3vw, 54px); align-items: center; background: rgba(255,255,255,.72); backdrop-filter: blur(18px) saturate(145%); -webkit-backdrop-filter: blur(18px) saturate(145%); border-bottom: 1px solid rgba(207,222,237,.72); transition: border-color .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(38,65,94,.06); }
.site-header > * { min-width: 0; }
.brand { width: fit-content; display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: min(184px, 44vw); max-height: 38px; display: block; object-fit: contain; object-position: left center; }
.brand-mark { position: relative; width: 34px; height: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; transform: rotate(30deg); }
.brand-mark span { background: var(--blue); border-radius: 2px; }
.brand-mark span:nth-child(2) { background: #69acec; }
.brand-mark span:nth-child(3) { background: #b7d9f8; }
.brand-copy { display: grid; gap: 2px; letter-spacing: 0; }
.brand-copy strong { font-size: 14px; line-height: 1; letter-spacing: 0; }
.brand-copy small { color: var(--muted); font-size: 9px; line-height: 1; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(16px, 1.55vw, 30px); white-space: nowrap; }
.desktop-nav > a, .nav-item > a, .nav-trigger { position: relative; min-height: var(--header-h); display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: #39485a; }
.nav-trigger { padding: 0; border: 0; background: transparent; cursor: pointer; font-family: inherit; }
.desktop-nav > a::after, .nav-item > a::after, .nav-trigger::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 18px; height: 2px; background: var(--blue); transition: right .25s ease; }
.desktop-nav > a:hover::after, .desktop-nav > a:focus-visible::after, .nav-item:hover > a::after, .nav-item:focus-within > a::after, .nav-item:hover > .nav-trigger::after, .nav-item:focus-within > .nav-trigger::after { right: 0; }
.nav-item { position: relative; }
.nav-item > a svg, .nav-trigger svg { width: 13px; height: 13px; transition: transform .2s ease; }
.submenu { position: absolute; top: calc(100% - 7px); left: 50%; width: 210px; padding: 10px; border: 1px solid rgba(207,222,237,.78); border-radius: 6px; background: rgba(255,255,255,.82); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); box-shadow: 0 18px 42px rgba(26,56,88,.12); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.submenu a { display: block; padding: 11px 12px; border-radius: 4px; color: #44556a; font-size: 12px; }
.submenu a:hover, .submenu a:focus-visible { background: var(--soft-blue); color: var(--blue-dark); }
.nav-item:hover .submenu, .nav-item:focus-within .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-item:hover > a svg, .nav-item:focus-within > a svg, .nav-item:hover > .nav-trigger svg, .nav-item:focus-within > .nav-trigger svg { transform: rotate(180deg); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.language-picker { position: relative; }
.language-picker > button { min-width: 112px; height: 38px; padding: 0 11px; border: 1px solid var(--line); border-radius: 5px; display: grid; grid-template-columns: 17px 1fr 14px; gap: 7px; align-items: center; background: var(--white); color: #405268; cursor: pointer; font-size: 11px; font-weight: 700; }
.language-picker > button svg { width: 16px; height: 16px; }
.language-picker > button svg:first-child { display: none; }
.language-picker > button::before { content: "\f57d"; font-family: "Font Awesome 6 Free"; font-weight: 900; width: 16px; text-align: center; }
.language-picker > button svg:last-child { width: 13px; height: 13px; transition: transform .2s ease; }
.language-picker.is-open > button { border-color: #aac9e8; box-shadow: 0 0 0 3px rgba(35,122,215,.08); }
.language-picker.is-open > button svg:last-child { transform: rotate(180deg); }
.language-dropdown { position: absolute; z-index: 50; top: calc(100% + 8px); right: 0; width: 190px; padding: 8px; border: 1px solid rgba(207,222,237,.78); border-radius: 6px; display: grid; background: rgba(255,255,255,.84); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); box-shadow: 0 18px 42px rgba(26,56,88,.13); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.language-picker.is-open .language-dropdown { opacity: 1; visibility: visible; transform: none; }
.language-dropdown > a, .language-dropdown > span { min-height: 40px; padding: 0 10px; border-radius: 4px; display: flex; align-items: center; justify-content: space-between; color: #4d5e72; font-size: 12px; }
.language-dropdown > a:hover, .language-dropdown > a:focus-visible, .language-dropdown > a.is-active { background: var(--soft-blue); color: var(--blue-dark); }
.language-dropdown > span { color: #9aa6b3; cursor: not-allowed; }
.language-dropdown small { font-size: 9px; font-weight: 400; }
.menu-button, .mobile-nav { display: none; }

.button { min-height: 52px; width: fit-content; padding: 0 22px; border: 1px solid var(--blue); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; background: var(--blue); color: var(--white); font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); }
.button-small { min-height: 40px; padding-inline: 16px; font-size: 12px; }
.text-button { min-height: 52px; display: inline-flex; align-items: center; gap: 9px; border-bottom: 1px solid #9cb9d6; color: #244d74; font-size: 14px; font-weight: 700; }

.hero { min-height: 100svh; padding-top: var(--header-h); display: flex; background: var(--white); border-bottom: 1px solid var(--line); }
.hero-inner { min-height: calc(100svh - var(--header-h)); padding-block: clamp(42px, 5vw, 84px); display: grid; grid-template-columns: minmax(360px, .75fr) minmax(640px, 1.35fr); gap: clamp(36px, 4vw, 78px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 620px; margin: 0; font-size: clamp(42px, 3.4vw, 64px); line-height: 1.12; font-weight: 760; letter-spacing: 0; }
.hero-copy > p { max-width: 580px; margin: 32px 0 0; color: #526276; font-size: clamp(15px, 1.05vw, 18px); line-height: 1.9; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; }
.hero-points { margin: 42px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 12px 22px; color: var(--muted); font-size: 12px; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points svg { color: var(--blue); }

.configurator { position: relative; min-width: 0; min-height: min(690px, calc(100svh - 140px)); display: grid; grid-template-columns: 1fr; overflow: hidden; border: 1px solid #dce6f0; border-radius: 12px; background: var(--soft); box-shadow: 0 28px 80px rgba(33,74,113,.13); }
.configurator::before { content: "PFLUON 鹏孚隆 · 3D小程序开发"; position: absolute; z-index: 2; inset: 0 0 auto; height: 58px; padding: 0 74px; display: flex; align-items: center; justify-content: center; color: #536277; background: rgba(255,255,255,.96); border-bottom: 1px solid #e3eaf1; background-image: radial-gradient(circle at 25px 29px, #607080 0 5px, transparent 6px), radial-gradient(circle at 43px 29px, #607080 0 5px, transparent 6px), radial-gradient(circle at 61px 29px, #607080 0 5px, transparent 6px); background-repeat: no-repeat; font-size: 14px; letter-spacing: 0; white-space: nowrap; }
.configurator::after { content: "×"; position: absolute; z-index: 3; top: 13px; right: 22px; width: 30px; height: 30px; display: grid; place-items: center; border: 2px solid #5b6470; border-radius: 50%; color: #5b6470; font-size: 24px; line-height: 1; }
.configurator-stage { position: relative; min-width: 0; overflow: hidden; background: #eef4f8; }
.hero-web3d-frame { position: absolute; z-index: 1; top: 58px; left: 0; width: 100%; max-width: none; height: calc(100% - 58px); min-height: 560px; display: block; border: 0; background: #f3f7fb; }
.configurator-panel, .configurator .viewer-tools, .configurator .viewer-status { display: none; }
.configurator-stage img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; transition: filter .35s ease, transform .5s ease; }
.viewer-tools { position: absolute; left: 20px; bottom: 20px; display: flex; gap: 7px; }
.viewer-tools button, .industry-controls button { width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.9); color: var(--ink); cursor: pointer; }
.viewer-tools button:hover { background: var(--white); color: var(--blue); }
.viewer-status { position: absolute; top: 18px; left: 18px; padding: 9px 12px; border-radius: 4px; display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.92); font-size: 11px; font-weight: 700; }
.viewer-status span { width: 7px; height: 7px; border-radius: 50%; background: #28b76b; box-shadow: 0 0 0 4px rgba(40,183,107,.12); }
.configurator-panel { padding: 25px 22px; background: var(--white); display: flex; flex-direction: column; }
.panel-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.panel-head div { display: grid; gap: 7px; }
.panel-head small, .quote-summary small { color: var(--muted); font-size: 10px; }
.panel-head strong { font-size: 16px; }
.panel-head > span { padding: 5px 8px; border-radius: 4px; background: var(--soft-blue); color: var(--blue); font-size: 10px; font-weight: 700; }
.configurator fieldset { margin: 23px 0 0; padding: 0; border: 0; }
.configurator legend, .size-control { color: #39485a; font-size: 11px; font-weight: 700; }
.swatches { margin-top: 13px; display: flex; gap: 10px; }
.swatch { position: relative; width: 34px; height: 34px; padding: 0; border: 2px solid var(--white); border-radius: 50%; background: var(--swatch); box-shadow: 0 0 0 1px #ccd6e0; cursor: pointer; }
.swatch.is-active { box-shadow: 0 0 0 2px var(--blue); }
.option-list { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.option { min-height: 36px; padding: 7px 8px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); color: #455469; font-size: 10px; cursor: pointer; }
.option.is-active { border-color: var(--blue); background: var(--soft-blue); color: var(--blue-dark); font-weight: 700; }
.size-control { margin-top: 22px; display: grid; gap: 10px; }
.size-control select { width: 100%; height: 40px; padding: 0 10px; border: 1px solid var(--line); border-radius: 4px; outline: none; background: var(--white); color: var(--ink); font-size: 11px; }
.size-control select:focus { border-color: var(--blue); }
.quote-summary { margin-top: auto; padding: 24px 0 18px; display: grid; gap: 7px; border-top: 1px solid var(--line); }
.quote-summary strong { color: var(--blue-dark); font-size: 25px; letter-spacing: 0; }
.quote-summary span { color: var(--muted); font-size: 10px; }
.panel-button { width: 100%; min-height: 46px; font-size: 12px; }

.metrics { border-bottom: 1px solid var(--line); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metrics-grid > div { min-height: 142px; padding: 30px clamp(18px, 3vw, 48px); display: grid; align-content: center; gap: 8px; border-right: 1px solid var(--line); }
.metrics-grid > div:first-child { padding-left: 0; }
.metrics-grid > div:last-child { border-right: 0; }
.metrics-grid strong { font-size: clamp(29px, 2.4vw, 42px); line-height: 1; color: var(--blue-dark); }
.metrics-grid div > span { color: var(--muted); font-size: 12px; }

.section-heading { max-width: 840px; }
.section-heading-centered { margin-inline: auto; text-align: center; }
.section-heading-centered p { margin-inline: auto; }
.section-heading h2, .industry-header h2, .center-heading h2, .contact h2 { margin: 0; font-size: clamp(34px, 3vw, 48px); line-height: 1.2; letter-spacing: 0; }
.section-heading p, .industry-header p, .center-heading p, .contact-copy p { max-width: 700px; margin: 16px 0 0; color: var(--muted); font-size: 15px; line-height: 1.8; }

.capability-grid { margin-top: clamp(56px, 5.5vw, 86px); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-item { min-height: 260px; padding: clamp(30px, 3vw, 46px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-item > svg { width: 28px; height: 28px; color: var(--blue); }
.capability-item h3 { margin: 52px 0 14px; font-size: 20px; line-height: 1.35; }
.capability-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.capability-wide { grid-column: 1 / -1; min-height: 170px; display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 26px; background: var(--soft); }
.capability-wide h3 { margin: 0 0 10px; }
.capability-wide a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); font-size: 13px; font-weight: 700; }

.industry-section { position: relative; background: var(--soft); }
.industry-sticky { height: auto; min-height: 0; padding-block: clamp(72px, 7vw, 108px); display: flex; flex-direction: column; overflow: visible; }
.industry-header { display: grid; grid-template-columns: minmax(0, 700px) 1fr; gap: clamp(28px, 5vw, 80px); align-items: end; }
.industry-controls { justify-self: end; display: flex; gap: 10px; }
.industry-controls button { position: relative; z-index: 2; border-color: #cbd8e6; background: var(--white); pointer-events: auto; touch-action: manipulation; }
.industry-controls button:hover { color: var(--blue); border-color: var(--blue); }
.industry-viewport { margin-top: clamp(38px, 4vw, 62px); padding-left: max(var(--gutter), calc((100vw - var(--shell)) / 2)); padding-right: var(--gutter); overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; }
.industry-viewport::-webkit-scrollbar { display: none; }
.industry-track { width: max-content; display: flex; gap: 26px; transform: none !important; }
.industry-slide { position: relative; flex: 0 0 auto; width: min(78vw, 1240px); height: clamp(450px, 56vh, 680px); overflow: hidden; scroll-snap-align: start; border: 1px solid #dbe5ee; border-radius: 6px; display: block; background: #edf4f8; color: inherit; text-decoration: none; }
.industry-slide:focus-visible { outline: 3px solid rgba(43,130,219,.42); outline-offset: 4px; }
.industry-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.industry-slide:hover img { transform: scale(1.018); }
.industry-copy { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(18px, 2.2vw, 30px); color: var(--ink); background: rgba(255,255,255,.91); border-top: 1px solid rgba(216,228,239,.9); backdrop-filter: blur(8px); }
.industry-copy span { color: var(--blue); font-size: 11px; font-weight: 800; }
.industry-copy h3 { margin: 8px 0 6px; font-size: clamp(22px, 2vw, 32px); }
.industry-copy p { max-width: 650px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.center-heading { max-width: 780px; margin-inline: auto; text-align: center; }
.center-heading p { margin-inline: auto; }
.case-list { margin-top: clamp(82px, 8vw, 128px); }
.case-row { padding-block: clamp(72px, 7vw, 112px); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(350px, .65fr); gap: clamp(45px, 7vw, 112px); align-items: center; border-top: 1px solid var(--line); }
.case-row:last-child { border-bottom: 1px solid var(--line); }
.case-row figure { margin: 0; aspect-ratio: 3 / 2; overflow: hidden; border: 1px solid #dfe8f0; border-radius: 6px; background: #eef4f8; }
.case-row figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.case-row:hover figure img { transform: scale(1.018); }
.case-row > div > span { color: var(--blue); font-size: 11px; font-weight: 800; }
.case-row h3 { margin: 20px 0 20px; font-size: clamp(27px, 2.4vw, 39px); line-height: 1.32; }
.case-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.case-row ul { margin: 34px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; display: flex; flex-wrap: wrap; gap: 12px 24px; color: #3e5269; font-size: 12px; font-weight: 700; }
.case-row-reverse figure { grid-column: 2; }
.case-row-reverse > div { grid-column: 1; grid-row: 1; }

.process { background: var(--soft-blue); }
.process-list { margin: clamp(56px, 5.5vw, 86px) 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); }
.process-list li { position: relative; min-height: 260px; padding: 28px clamp(18px, 2vw, 32px); border-top: 1px solid #bdd4e9; border-right: 1px solid #bdd4e9; }
.process-list li:last-child { border-right: 0; }
.process-list li > svg { position: absolute; top: 26px; right: 25px; width: 23px; height: 23px; color: #6c91b7; }
.process-list h3 { margin: 78px 0 15px; font-size: 19px; }
.process-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.clients { padding-block: clamp(110px, 9vw, 150px); overflow: hidden; border-bottom: 1px solid var(--line); }
.clients-heading { display: block; text-align: center; }
.clients-heading h2 { margin: 0; font-size: clamp(34px, 3vw, 48px); }
.clients-heading p { margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.logo-marquee { margin-top: 54px; overflow: hidden; }
.logo-track { width: max-content; display: flex; align-items: center; animation: marquee 30s linear infinite; }
.logo-track span { width: 240px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; color: #778392; font-size: 17px; font-weight: 750; filter: grayscale(1); }
.logo-track svg { width: 29px; height: 29px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.article-grid { margin-top: clamp(56px, 5.5vw, 86px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 2.4vw, 36px); }
.article-card { min-width: 0; border-bottom: 1px solid var(--line); }
.article-card a { height: 100%; display: flex; flex-direction: column; }
.article-card figure { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid #dfe8f0; border-radius: 5px; background: #eef4f8; }
.article-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.article-card:hover img { transform: scale(1.025); }
.article-content { flex: 1; padding: 24px 2px 28px; display: flex; flex-direction: column; }
.article-content time { color: #7a8797; font-size: 11px; }
.article-content h3 { margin: 14px 0 0; font-size: clamp(18px, 1.35vw, 22px); line-height: 1.48; font-weight: 680; }
.article-content p { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.article-content > span { margin-top: auto; padding-top: 22px; display: inline-flex; align-items: center; gap: 7px; color: var(--blue-dark); font-size: 12px; font-weight: 700; }
.article-content > span svg { width: 15px; height: 15px; }

.contact { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 150px); align-items: start; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.contact-form label, .contact-form-field { display: grid; gap: 10px; min-width: 0; color: #41536a; font-size: 11px; font-weight: 700; }
.contact-form-field > .eyou_form_attr { min-width: 0; }
.contact-form-field:has(textarea) { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #cedae6; border-radius: 4px; outline: 0; background: var(--white); color: var(--ink); font-family: inherit; font-size: 13px; font-weight: 400; }
.contact-form input, .contact-form select { height: 52px; padding: 0 15px; }
.contact-form textarea { min-height: 130px; padding: 15px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(35,122,215,.1); }
.form-full { grid-column: 1 / -1; }
.contact-form .button { width: 100%; }
.contact-form .eyou_form_btn { width: 100%; min-height: 52px; font-family: inherit; }
.form-status { min-height: 20px; margin: -10px 0 0; color: var(--blue-dark); font-size: 12px; }

.site-footer { padding-top: clamp(72px, 7vw, 110px); background: var(--white); }
.footer-grid { padding-bottom: 70px; display: grid; grid-template-columns: minmax(270px, 1.5fr) .7fr .7fr 1.15fr 1fr; gap: clamp(34px, 4vw, 72px); }
.footer-about p { max-width: 360px; margin: 28px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.footer-grid h2 { margin: 0 0 24px; font-size: 13px; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-nav a { color: var(--muted); font-size: 11px; }
.footer-nav a:hover { color: var(--blue); }
.footer-contact p { margin: 0 0 14px; display: grid; grid-template-columns: 18px 1fr; gap: 8px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.footer-contact svg { color: var(--blue); }
.footer-social > div { display: flex; flex-wrap: wrap; gap: 9px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: #4b5d72; }
.footer-social a:hover { border-color: var(--blue); color: var(--blue); }
.footer-social a svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.footer-social a svg { display: none; }
.footer-social a::before { display: none; }
.footer-social a i { font-size: 16px; }
.footer-social a img { width: 17px; height: 17px; object-fit: contain; }
.footer-social p { margin: 18px 0 0; color: var(--muted); font-size: 10px; }
.footer-legal { min-height: 82px; display: grid; grid-template-columns: 1fr auto 42px; gap: 30px; align-items: center; border-top: 1px solid var(--line); color: #8290a1; font-size: 10px; }
.footer-legal nav { display: flex; gap: 22px; }
.footer-legal > a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; }

.floating-contact { position: fixed; z-index: 100; right: 24px; top: 50%; bottom: auto; transform: translateY(-50%); display: grid; justify-items: end; gap: 10px; pointer-events: auto; }
.floating-contact-toggle { position: relative; z-index: 2; width: 58px; min-width: 58px; height: 58px; padding: 0; border: 0; border-radius: 50%; display: grid; grid-template-columns: 1fr; gap: 0; place-items: center; background: var(--blue); color: var(--white); box-shadow: 0 14px 34px rgba(28,91,153,.24); cursor: pointer; font-size: 11px; font-weight: 700; pointer-events: auto; touch-action: manipulation; }
.floating-contact-toggle:hover { background: var(--blue-dark); }
.floating-contact-toggle svg { width: 20px; height: 20px; }
.floating-contact-toggle svg { display: none; }
.floating-contact-toggle span { display: none; }
.floating-contact-toggle i { font-size: 20px; }
.floating-contact-toggle i { transition: transform .25s ease; }
.floating-contact-toggle.is-rotated i { transform: rotate(180deg); }
.floating-contact-menu { position: absolute; right: calc(100% + 12px); top: 50%; width: 154px; padding: 7px; border: 1px solid rgba(207,222,237,.78); border-radius: 6px; display: grid; background: rgba(255,255,255,.84); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 18px 42px rgba(26,56,88,.15); opacity: 0; visibility: hidden; transform: translateY(-50%) translateX(8px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.floating-contact.is-open .floating-contact-menu { opacity: 1; visibility: visible; transform: translateY(-50%); }
.floating-contact-menu a, .floating-contact-menu button { min-height: 43px; padding: 0 10px; border: 0; border-radius: 4px; display: grid; grid-template-columns: 20px 1fr; gap: 9px; align-items: center; background: transparent; color: #44566b; cursor: pointer; text-align: left; font-size: 11px; }
.floating-contact-menu a:hover, .floating-contact-menu button:hover { background: var(--soft-blue); color: var(--blue-dark); }
.floating-contact-menu svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.floating-contact-menu i, .floating-contact-toggle i { width: 18px; text-align: center; }
.floating-contact-menu img { width: 18px; height: 18px; object-fit: contain; }
.reveal-group, .reveal-item { visibility: visible; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .logo-track { animation: none; }
}
