:root {
  --ink: #08111f;
  --ink-2: #111d2e;
  --teal: #28a7a8;
  --teal-bright: #56d2cc;
  --mint: #dff9f4;
  --mist: #edf3f5;
  --paper: #ffffff;
  --muted: #657183;
  --line: rgba(8,17,31,.12);
  --shadow: 0 30px 80px rgba(3,12,24,.14);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; inset-inline-start: 20px; top: -60px; z-index: 1000; background: var(--paper); color: var(--ink); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: white;
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 12px 35px rgba(5,17,31,.08); backdrop-filter: blur(16px); }
.header-inner { height: 88px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 230px; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 12px; background: white; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { letter-spacing: .12em; font-size: .98rem; }
.brand-copy small { margin-top: 6px; opacity: .68; font-size: .72rem; letter-spacing: .06em; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 26px; flex: 1; }
.primary-nav a { font-size: .9rem; font-weight: 600; opacity: .8; position: relative; }
.primary-nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: -7px; height: 2px; background: var(--teal-bright); transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.primary-nav a:hover { opacity: 1; }
.primary-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.language-toggle { border: 1px solid currentColor; background: transparent; border-radius: 999px; width: 43px; height: 43px; cursor: pointer; font-weight: 800; font-size: .8rem; opacity: .85; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; margin-inline-start: auto; }
.menu-toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: .25s; }

.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 22px; font-weight: 700; letter-spacing: .01em; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-solid { background: var(--teal); color: white; box-shadow: 0 14px 35px rgba(40,167,168,.28); }
.button-solid:hover { background: #218f90; box-shadow: 0 18px 40px rgba(40,167,168,.36); }
.button-ghost { border-color: rgba(255,255,255,.28); color: white; background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.10); }
.button-small { padding: 11px 17px; font-size: .84rem; }

.section-dark { background: var(--ink); color: white; }
.hero { min-height: 920px; display: flex; align-items: center; position: relative; overflow: hidden; padding: 150px 0 90px; }
#point-cloud { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.hero-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 82%); }
.hero::before { content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(40,167,168,.20), transparent 68%); top: 7%; right: -14%; filter: blur(10px); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 800; color: var(--teal-bright); margin: 0 0 24px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 0 0 rgba(86,210,204,.55); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(86,210,204,0); } 100% { box-shadow: 0 0 0 0 rgba(86,210,204,0); } }
.hero h1 { font-size: clamp(3.2rem, 6vw, 6.4rem); line-height: .96; letter-spacing: -.055em; max-width: 820px; margin: 0; }
.hero-lead { color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 660px; margin: 28px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; gap: 38px; margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13); max-width: 610px; }
.hero-trust div { display: grid; }
.hero-trust strong { font-size: 1.35rem; }
.hero-trust span { color: rgba(255,255,255,.48); font-size: .76rem; margin-top: 2px; }
.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.visual-frame { width: min(100%, 520px); aspect-ratio: .92; border-radius: 220px 220px 28px 28px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 60px 130px rgba(0,0,0,.45); background: #04080e; }
.visual-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,17,31,.88), transparent 48%), radial-gradient(circle at 50% 15%, transparent 0, rgba(8,17,31,.25) 75%); }
.visual-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.08); }
.scan-line { position: absolute; left: 0; right: 0; top: -10%; height: 2px; z-index: 3; background: linear-gradient(90deg, transparent, var(--teal-bright), transparent); box-shadow: 0 0 28px 8px rgba(86,210,204,.28); animation: scan 5s ease-in-out infinite; }
@keyframes scan { 0%, 10% { top: 10%; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 90%, 100% { top: 88%; opacity: 0; } }
.visual-label { position: absolute; z-index: 4; display: flex; justify-content: space-between; gap: 24px; align-items: center; color: white; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.visual-label b { color: var(--teal-bright); font-size: .72rem; }
.label-top { top: 30px; left: 34px; right: 34px; }
.label-bottom { bottom: 30px; left: 34px; right: 34px; }
.floating-card { position: absolute; z-index: 5; display: flex; gap: 12px; align-items: center; min-width: 210px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: var(--shadow); backdrop-filter: blur(12px); animation: float 5s ease-in-out infinite; }
.floating-card strong, .floating-card small { display: block; }
.floating-card small { color: var(--muted); font-size: .7rem; margin-top: 2px; }
.mini-icon { width: 38px; height: 38px; border-radius: 11px; background: var(--mint); display: grid; place-items: center; color: #128d8e; font-size: 1.2rem; }
.floating-card-a { top: 13%; left: -12%; }
.floating-card-b { bottom: 11%; right: -12%; animation-delay: -2.3s; }
@keyframes float { 50% { transform: translateY(-12px); } }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); width: 28px; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; z-index: 4; }
.scroll-cue span { width: 4px; height: 8px; background: var(--teal-bright); border-radius: 999px; position: absolute; left: 50%; top: 9px; transform: translateX(-50%); animation: scrollCue 2s infinite; }
@keyframes scrollCue { 70% { top: 26px; opacity: .1; } 100% { top: 9px; opacity: 0; } }

.marquee { background: var(--teal); color: white; overflow: hidden; padding: 15px 0; }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 26px; animation: marquee 28s linear infinite; }
.marquee span { font-weight: 800; letter-spacing: .11em; font-size: .74rem; }
.marquee i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.7); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-light { background: white; }
.section-mist { background: var(--mist); }
.section-brand { padding: 95px 0; background: #dfeceb; }
.section-kicker { margin: 0 0 16px; color: var(--teal); text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; font-weight: 800; }
.section h2, .contact-section h2 { margin: 0; font-size: clamp(2.35rem, 4.3vw, 4.8rem); line-height: 1.04; letter-spacing: -.045em; }
.split-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: start; }
.section-intro { position: sticky; top: 125px; }
.section-intro > p:last-child { color: var(--muted); max-width: 520px; }
.large-copy { font-size: clamp(1.25rem, 2vw, 1.7rem); color: var(--ink); line-height: 1.45; margin: 0 0 26px; }
.about-copy > p:not(.large-copy) { color: var(--muted); font-size: 1.03rem; }
.about-values { margin-top: 52px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.about-values > div { display: grid; grid-template-columns: 52px 170px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--line); align-items: start; }
.about-values span { color: var(--teal); font-weight: 800; }
.about-values strong { font-size: 1rem; }
.about-values p { margin: 0; color: var(--muted); font-size: .91rem; }
.section-heading { display: grid; grid-template-columns: 1.5fr .7fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading > p { color: var(--muted); margin: 0 0 5px; }
.section-heading.inverse > p { color: rgba(255,255,255,.62); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 410px; padding: 28px; background: white; border: 1px solid rgba(8,17,31,.08); border-radius: 20px; position: relative; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; background: var(--mint); top: -80px; right: -75px; transition: transform .35s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(8,17,31,.11); border-color: rgba(40,167,168,.3); }
.service-card:hover::after { transform: scale(1.25); }
.service-number { color: rgba(8,17,31,.35); font-size: .75rem; font-weight: 800; }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--mint); color: #168f91; font-size: 1.35rem; margin: 42px 0 24px; position: relative; z-index: 2; }
.service-card h3 { font-size: 1.35rem; line-height: 1.2; margin: 0 0 14px; }
.service-card p { color: var(--muted); margin: 0; font-size: .92rem; }
.service-card ul { list-style: none; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid var(--line); color: #455064; font-size: .82rem; }
.service-card li { margin: 6px 0; padding-inline-start: 15px; position: relative; }
.service-card li::before { content: ""; position: absolute; inset-inline-start: 0; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

.capabilities-section { position: relative; overflow: hidden; }
.capabilities-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 15%, rgba(40,167,168,.16), transparent 35%), linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: auto, 90px 90px, 90px 90px; }
.capabilities-section .shell { position: relative; }
.workflow { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.workflow-step { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 34px 25px; border-inline-end: 1px solid rgba(255,255,255,.13); }
.workflow-step:last-child { border-inline-end: 0; }
.workflow-step > span { color: var(--teal-bright); font-size: .75rem; font-weight: 800; }
.workflow-step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.workflow-step p { margin: 0; color: rgba(255,255,255,.55); font-size: .82rem; }
.capability-showcase { margin-top: 64px; display: grid; grid-template-columns: 1.5fr .7fr; gap: 18px; align-items: stretch; }
.capability-showcase figure { margin: 0; position: relative; overflow: hidden; border-radius: 24px; min-height: 510px; }
.capability-showcase img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.capability-showcase figure:hover img { transform: scale(1.035); }
.capability-showcase figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,17,31,.9), transparent 58%); }
.capability-showcase figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; display: grid; gap: 4px; }
.capability-showcase figcaption span { color: var(--teal-bright); text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; font-weight: 800; }
.capability-showcase figcaption b { font-size: 1.3rem; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 290px; gap: 14px; }
.gallery-item { grid-column: span 4; border: 0; padding: 0; position: relative; overflow: hidden; border-radius: 18px; cursor: zoom-in; background: #dce3e5; text-align: start; }
.gallery-wide { grid-column: span 8; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .7s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,17,31,.92), transparent 60%); }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.06); }
.gallery-item > span { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; color: white; display: grid; gap: 2px; }
.gallery-item b { font-size: 1rem; }
.gallery-item small { color: rgba(255,255,255,.62); }

.brand-panel { background: var(--ink); color: white; border-radius: 32px; padding: 18px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; box-shadow: var(--shadow); }
.brand-panel-image { min-height: 500px; border-radius: 22px; overflow: hidden; position: relative; }
.brand-panel-image img { width: 100%; height: 100%; object-fit: cover; }
.brand-panel-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,17,31,.64), transparent 48%); }
.brand-panel-image span { position: absolute; bottom: 18px; left: 20px; z-index: 2; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.62); }
.brand-panel-copy { padding: 56px 46px; display: flex; flex-direction: column; justify-content: center; }
.brand-panel-copy p:not(.section-kicker) { color: rgba(255,255,255,.64); }
.text-link { margin-top: 24px; color: var(--teal-bright); font-weight: 700; }
.text-link span { display: inline-block; transition: transform .2s; }
.text-link:hover span { transform: translate(3px,-3px); }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0; }
.faq-list summary { list-style: none; cursor: pointer; padding: 24px 45px 24px 0; font-weight: 700; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 20px; color: var(--teal); font-size: 1.5rem; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: -8px 45px 25px 0; color: var(--muted); }

.contact-section { padding: 120px 0; position: relative; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle, rgba(40,167,168,.22), transparent 66%); right: -180px; top: -240px; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; position: relative; }
.contact-copy p:not(.section-kicker) { color: rgba(255,255,255,.6); max-width: 560px; }
.email-link { display: inline-flex; gap: 14px; align-items: center; margin-top: 24px; font-size: clamp(1.2rem, 2vw, 1.65rem); color: var(--teal-bright); font-weight: 700; }
.quote-form { background: white; color: var(--ink); padding: 32px; border-radius: 24px; box-shadow: 0 40px 100px rgba(0,0,0,.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 8px; margin-bottom: 16px; font-size: .8rem; font-weight: 700; color: #4b5668; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #d9e0e4; border-radius: 11px; padding: 13px 14px; color: var(--ink); background: #fbfcfc; outline: none; transition: border-color .2s, box-shadow .2s; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(40,167,168,.12); }
.quote-form textarea { resize: vertical; }
.form-submit { width: 100%; border: 0; margin-top: 2px; }
.form-note { color: var(--muted); font-size: .72rem; margin: 12px 0 0; text-align: center; }

.site-footer { background: #050b13; color: white; }
.footer-top { padding: 70px 0 50px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-brand { display: flex; align-items: center; gap: 18px; align-self: start; }
.footer-brand img { width: 84px; height: 84px; object-fit: contain; border-radius: 15px; background: white; }
.footer-brand div { display: grid; }
.footer-brand strong { font-size: 1.15rem; letter-spacing: .12em; }
.footer-brand span { color: rgba(255,255,255,.45); font-size: .76rem; max-width: 280px; margin-top: 6px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links > div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { color: var(--teal-bright); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.55); font-size: .82rem; }
.footer-links a:hover { color: white; }
.footer-bottom { min-height: 72px; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.38); font-size: .75rem; }

.lightbox { width: min(980px, calc(100% - 30px)); border: 0; padding: 0; border-radius: 20px; background: #050b13; color: white; box-shadow: 0 40px 120px rgba(0,0,0,.55); overflow: hidden; }
.lightbox::backdrop { background: rgba(2,7,13,.86); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: black; }
.lightbox p { padding: 14px 22px 18px; margin: 0; color: rgba(255,255,255,.7); }
.lightbox-close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(8,17,31,.72); color: white; font-size: 1.5rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

[dir="rtl"] body { font-family: Tahoma, "Segoe UI", Arial, sans-serif; }
[dir="rtl"] .primary-nav, [dir="rtl"] .header-actions { direction: rtl; }
[dir="rtl"] .hero h1, [dir="rtl"] .section h2, [dir="rtl"] .contact-section h2 { letter-spacing: -.025em; }
[dir="rtl"] .brand-copy strong { letter-spacing: .04em; }
[dir="rtl"] .section-kicker, [dir="rtl"] .eyebrow { letter-spacing: .04em; }
[dir="rtl"] .faq-list summary { padding: 24px 0 24px 45px; }
[dir="rtl"] .faq-list summary::after { left: 8px; right: auto; }
[dir="rtl"] .faq-list details p { margin: -8px 0 25px 45px; }
[dir="rtl"] .lightbox-close { left: 12px; right: auto; }

@media (max-width: 1080px) {
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: .82rem; }
  .brand-copy { display: none; }
  .brand { min-width: auto; }
  .hero-layout { gap: 35px; }
  .floating-card-a { left: -3%; }
  .floating-card-b { right: -3%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: repeat(2, 1fr); }
  .workflow-step:nth-child(2) { border-inline-end: 0; }
  .workflow-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { color: white; }
  .site-header.scrolled { color: var(--ink); }
  .header-inner { height: 76px; }
  .header-actions .button { display: none; }
  .menu-toggle { display: block; order: 3; }
  .header-actions { margin-inline-start: auto; }
  .primary-nav { position: fixed; inset: 76px 0 auto; min-height: calc(100vh - 76px); background: rgba(8,17,31,.98); color: white; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; padding: 35px 28px; gap: 0; transform: translateX(100%); transition: transform .35s ease; }
  [dir="rtl"] .primary-nav { transform: translateX(-100%); }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav a { padding: 17px 0; font-size: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .primary-nav a::after { display: none; }
  .hero { min-height: auto; padding: 125px 0 85px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5.2rem); }
  .hero-visual { min-height: 520px; }
  .visual-frame { max-width: 470px; }
  .floating-card-a { left: 0; }
  .floating-card-b { right: 0; }
  .scroll-cue { display: none; }
  .split-layout, .section-heading, .contact-layout, .brand-panel, .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .section-intro { position: static; }
  .section { padding: 88px 0; }
  .section-heading { align-items: start; }
  .section-heading > p { max-width: 600px; }
  .about-values > div { grid-template-columns: 45px 1fr; }
  .about-values p { grid-column: 2; }
  .capability-showcase { grid-template-columns: 1fr; }
  .capability-showcase figure { min-height: 430px; }
  .gallery-item, .gallery-wide { grid-column: span 6; }
  .brand-panel-copy { padding: 35px 24px 40px; }
  .brand-panel-image { min-height: 390px; }
  .footer-links { gap: 25px; }
}

@media (max-width: 560px) {
  .hero-trust { gap: 18px; justify-content: space-between; }
  .hero-trust strong { font-size: 1.1rem; }
  .hero-trust span { font-size: .66rem; }
  .hero-visual { min-height: 430px; }
  .visual-frame { width: 92%; }
  .floating-card { min-width: 175px; padding: 11px 12px; }
  .floating-card-a { top: 6%; }
  .floating-card-b { bottom: 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .workflow { grid-template-columns: 1fr; }
  .workflow-step { border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .workflow-step:last-child { border-bottom: 0; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .gallery-item, .gallery-wide { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 22px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; justify-content: center; gap: 8px; text-align: center; padding: 18px 0; }
}

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