:root {
  --navy: #07101f;
  --navy-2: #0d192d;
  --navy-3: #14243c;
  --ink: #142034;
  --muted: #667085;
  --line: #dfe5ec;
  --paper: #f7f5f0;
  --white: #ffffff;
  --orange: #f27a32;
  --orange-2: #ff9a58;
  --pink: #dc386d;
  --green: #19a66a;
  --radius: 24px;
  --shadow: 0 28px 70px rgba(7, 16, 31, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 245, 240, .92);
  border-color: rgba(20, 32, 52, .08);
  box-shadow: 0 12px 40px rgba(7, 16, 31, .06);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { border-radius: 50%; box-shadow: 0 8px 22px rgba(7, 16, 31, .12); }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 21px; line-height: 1; letter-spacing: -.03em; color: var(--navy); }
.brand-copy strong span { color: var(--orange); }
.brand-copy small { font-size: 9px; font-weight: 800; letter-spacing: .13em; color: #778093; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; color: #3a4559; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { right: 0; }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(7, 16, 31, .16);
}
.nav-cta:hover { background: var(--orange); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--navy); padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--white); }

.hero {
  position: relative;
  min-height: 850px;
  padding: 158px 0 92px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .38)),
    linear-gradient(145deg, #f9f7f1 15%, #f2eee7 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  z-index: -1;
}
.hero-glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(4px); opacity: .72; }
.hero-glow-one { width: 520px; height: 520px; right: -150px; top: 75px; background: radial-gradient(circle, rgba(220, 56, 109, .22), transparent 68%); }
.hero-glow-two { width: 480px; height: 480px; left: -180px; bottom: -90px; background: radial-gradient(circle, rgba(242, 122, 50, .18), transparent 68%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 80px; align-items: center; }
.eyebrow { margin: 0 0 20px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.eyebrow > span { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(25, 166, 106, .12); }
.eyebrow.light { color: var(--orange-2); }
.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(54px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--orange); font-family: Georgia, serif; font-weight: 500; }
.hero-lead { max-width: 640px; margin: 28px 0 0; color: #536075; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 23px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 18px 35px rgba(7, 16, 31, .2); }
.button-primary:hover { background: var(--orange); box-shadow: 0 18px 35px rgba(242, 122, 50, .26); }
.button-secondary { color: var(--navy); background: rgba(255, 255, 255, .72); border-color: rgba(20, 32, 52, .14); }
.button-secondary:hover { background: var(--white); border-color: rgba(20, 32, 52, .28); }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 30px 0 0; padding: 0; list-style: none; color: #5b6678; font-size: 13px; font-weight: 700; }
.hero-points span { color: var(--green); }

.hero-visual { position: relative; min-height: 590px; }
.showcase { position: absolute; overflow: hidden; margin: 0; background: var(--white); box-shadow: var(--shadow); }
.showcase img { width: 100%; height: 100%; object-fit: cover; }
.showcase-main { z-index: 2; left: 70px; top: 35px; width: 330px; height: 500px; border: 10px solid rgba(255, 255, 255, .85); border-radius: 42px; transform: rotate(-2.5deg); }
.showcase-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 16, 31, .92), transparent 42%); }
.showcase-main > div { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 26px; display: grid; gap: 6px; color: var(--white); transform: rotate(2.5deg); }
.showcase-main span { color: var(--orange-2); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.showcase-main strong { font-size: 19px; }
.showcase-top, .showcase-bottom { z-index: 1; width: 205px; height: 225px; border: 7px solid rgba(255, 255, 255, .9); border-radius: 28px; }
.showcase-top { right: -12px; top: 0; transform: rotate(7deg); }
.showcase-bottom { right: -6px; bottom: 18px; transform: rotate(-5deg); }
.showcase-top::after, .showcase-bottom::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(to top, rgba(7, 16, 31, .78), transparent); }
.showcase-top > span, .showcase-bottom > span { position: absolute; z-index: 1; left: 16px; bottom: 13px; color: var(--white); font-size: 12px; font-weight: 800; }
.hero-badge {
  position: absolute;
  z-index: 5;
  left: 8px;
  bottom: 20px;
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--orange), var(--pink));
  box-shadow: 0 22px 45px rgba(220, 56, 109, .28);
}
.hero-badge strong { font-size: 37px; line-height: 1; }
.hero-badge span { max-width: 90px; margin-top: 5px; font-size: 11px; font-weight: 800; line-height: 1.25; }

.trust-strip { position: relative; z-index: 5; padding: 0 0 34px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid rgba(20, 32, 52, .08); border-radius: 22px; box-shadow: 0 18px 50px rgba(7, 16, 31, .07); }
.trust-grid > div { display: grid; gap: 3px; padding: 24px 28px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { color: var(--navy); font-size: 17px; }
.trust-grid span { color: var(--muted); font-size: 12px; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading h2, .business h2, .faq h2, .quote h2 { margin: 0; color: var(--navy); font-size: clamp(38px, 5vw, 60px); line-height: 1.04; letter-spacing: -.045em; }
.section-heading > p:last-child, .faq-intro > p:last-child { margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.15fr .7fr; gap: 80px; align-items: end; }
.split-heading > p { margin: 0 0 8px !important; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { overflow: hidden; border-radius: var(--radius); box-shadow: 0 18px 40px rgba(7, 16, 31, .09); }
.service-image { height: 290px; overflow: hidden; background: #e9e4da; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-content { position: relative; min-height: 280px; padding: 32px; }
.service-number { position: absolute; right: 28px; top: 26px; color: currentColor; opacity: .28; font-size: 13px; font-weight: 900; }
.service-content h3 { max-width: 270px; margin: 0 0 15px; font-size: 29px; line-height: 1.08; letter-spacing: -.035em; }
.service-content p { margin: 0; font-size: 15px; line-height: 1.65; opacity: .76; }
.service-content a { display: inline-block; margin-top: 26px; font-size: 13px; font-weight: 900; }
.service-dark { color: var(--white); background: var(--navy); }
.service-dark .service-image { background: #d4d7dd; }
.service-warm { color: var(--navy); background: #f3dfca; }
.service-accent { color: var(--white); background: linear-gradient(145deg, #d94d45, var(--pink)); }

.business { color: var(--white); background: var(--navy); overflow: hidden; }
.business-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: center; }
.business h2 { color: var(--white); }
.business-copy > p:not(.eyebrow) { margin: 24px 0 0; color: #b8c4d6; font-size: 17px; line-height: 1.75; }
.business-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.business-visual::before { content: ""; position: absolute; width: 470px; height: 470px; border-radius: 50%; background: radial-gradient(circle, rgba(242, 122, 50, .35), rgba(220, 56, 109, .08) 55%, transparent 72%); }
.product-pair { position: relative; z-index: 1; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; transform: rotate(-2deg); }
.product-pair figure { margin: 0; padding: 13px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 27px; background: rgba(255, 255, 255, .06); backdrop-filter: blur(12px); }
.product-pair figure:nth-child(2) { transform: translateY(58px) rotate(5deg); }
.product-pair img { width: 100%; height: 420px; object-fit: cover; border-radius: 18px; }
.product-pair figcaption { padding: 12px 3px 2px; color: #d6dce7; font-size: 12px; font-weight: 800; text-align: center; }
.scan-line { position: absolute; z-index: 3; top: 25%; left: 4%; width: 45%; height: 2px; background: var(--orange); box-shadow: 0 0 18px 3px rgba(242, 122, 50, .75); }
.business-steps { display: grid; gap: 16px; margin: 34px 0 0; padding: 0; list-style: none; }
.business-steps li { display: flex; align-items: center; gap: 16px; }
.business-steps li > span { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; color: var(--orange-2); font-size: 12px; font-weight: 900; }
.business-steps div { display: grid; gap: 3px; }
.business-steps strong { font-size: 16px; }
.business-steps small { color: #9facbf; font-size: 13px; }
.demo-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.demo-links a { display: inline-flex; gap: 9px; padding: 11px 14px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; color: #dbe2ed; font-size: 12px; font-weight: 800; }
.demo-links a:hover { border-color: var(--orange); color: var(--white); }

.work { background: #eef0f2; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.filter { min-height: 42px; border: 1px solid #cdd5df; border-radius: 999px; padding: 9px 16px; color: #546074; background: transparent; font-size: 13px; font-weight: 800; }
.filter:hover, .filter.is-active { border-color: var(--navy); color: var(--white); background: var(--navy); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project { position: relative; min-height: 440px; overflow: hidden; border-radius: 20px; background: #dfe3e8; box-shadow: 0 14px 28px rgba(7, 16, 31, .08); }
.project.project-wide { grid-row: span 2; min-height: 898px; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(to top, rgba(7, 16, 31, .96), transparent); }
.project:hover img { transform: scale(1.035); }
.project-info { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 23px; color: var(--white); }
.project-info span { color: var(--orange-2); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.project-info h3 { margin: 7px 0 6px; font-size: 22px; line-height: 1.1; }
.project-info p { margin: 0; color: #c8d1df; font-size: 13px; line-height: 1.45; }
.project.is-hidden { display: none; }
.load-more-wrap { display: flex; justify-content: center; margin-top: 34px; }
.dark-text { background: transparent; }

.process { background: var(--white); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 60px 0 0; padding: 0; list-style: none; }
.process-grid::before { content: ""; position: absolute; top: 29px; left: 9%; right: 9%; height: 1px; background: var(--line); }
.process-grid li { position: relative; padding: 0 28px; text-align: center; }
.process-grid li > span { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 24px; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); background: var(--white); font-size: 12px; font-weight: 900; }
.process-grid h3 { margin: 0 0 10px; color: var(--navy); font-size: 19px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.faq { background: #ede7dd; }
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-list { border-top: 1px solid rgba(20, 32, 52, .16); }
.faq-list details { border-bottom: 1px solid rgba(20, 32, 52, .16); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 4px; color: var(--navy); font-size: 17px; font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 26px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 45px 24px 4px; color: #687181; font-size: 14px; line-height: 1.7; }

.quote { color: var(--white); background: linear-gradient(135deg, #101e34, var(--navy)); }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }
.quote h2 { color: var(--white); }
.quote-copy > p:not(.eyebrow) { max-width: 520px; margin: 22px 0 0; color: #bdc8d7; font-size: 17px; line-height: 1.7; }
.direct-contact { display: grid; gap: 12px; margin-top: 35px; }
.direct-contact a { display: grid; gap: 4px; }
.direct-contact span { color: var(--orange-2); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.direct-contact strong { font-size: 16px; }
.quote-form { display: grid; gap: 18px; padding: 34px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 26px; background: rgba(255, 255, 255, .06); box-shadow: 0 30px 70px rgba(0, 0, 0, .22); backdrop-filter: blur(14px); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: grid; gap: 8px; }
.quote-form label > span { color: #d7dfeb; font-size: 12px; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid rgba(255, 255, 255, .15); border-radius: 13px; outline: 0; padding: 14px 15px; color: var(--white); background: rgba(2, 8, 20, .45); }
.quote-form input, .quote-form select { min-height: 49px; }
.quote-form textarea { resize: vertical; line-height: 1.5; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #8793a5; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242, 122, 50, .16); }
.quote-form select option { color: var(--navy); background: var(--white); }
.button-whatsapp { width: 100%; color: var(--white); background: var(--green); }
.button-whatsapp:hover { background: #148958; }
.form-note { margin: -5px 0 0; color: #98a6b8; font-size: 11px; text-align: center; }

.footer { padding: 68px 0 26px; color: #aab5c5; background: #040a13; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .6fr .8fr; gap: 70px; }
.brand-footer .brand-copy strong { color: var(--white); }
.footer-grid > div > p { max-width: 400px; margin: 22px 0 0; font-size: 14px; line-height: 1.7; }
.footer nav { display: grid; align-content: start; gap: 12px; }
.footer nav strong { margin-bottom: 6px; color: var(--white); font-size: 13px; }
.footer nav a { font-size: 13px; }
.footer nav a:hover { color: var(--orange-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .09); font-size: 11px; }
.mobile-actions { display: none; }

@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .hero-grid { gap: 30px; }
  .showcase-main { left: 30px; }
  .showcase-top, .showcase-bottom { right: -30px; }
  .business-grid, .quote-grid { gap: 50px; }
}

@media (max-width: 900px) {
  .section { padding: 86px 0; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    gap: 2px;
    padding: 18px;
    border: 1px solid rgba(20, 32, 52, .1);
    border-radius: 19px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 13px 14px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 7px; text-align: center; }
  .hero { min-height: 0; padding: 130px 0 78px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 560px; max-width: 600px; width: 100%; margin: 25px auto 0; }
  .showcase-main { left: 50%; transform: translateX(-55%) rotate(-2.5deg); }
  .showcase-top, .showcase-bottom { right: 5px; }
  .hero-badge { left: 12px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .service-image { height: auto; min-height: 320px; }
  .business-grid, .quote-grid, .faq-grid { grid-template-columns: 1fr; }
  .business-visual { max-width: 620px; width: 100%; margin-inline: auto; }
  .business-copy { max-width: 680px; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .project.project-wide { grid-row: auto; min-height: 440px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 38px 10px; }
  .process-grid::before { display: none; }
  .faq-intro { position: static; }
  .quote-copy { max-width: 680px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 76px; }
  body { padding-bottom: 68px; }
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 70px; }
  .brand img { width: 43px; height: 43px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 7px; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: clamp(45px, 14vw, 62px); }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 9px; }
  .hero-visual { min-height: 485px; margin-top: 18px; }
  .showcase-main { left: 48%; width: 260px; height: 400px; border-width: 7px; border-radius: 30px; }
  .showcase-main > div { left: 19px; right: 19px; bottom: 18px; }
  .showcase-main strong { font-size: 15px; }
  .showcase-top, .showcase-bottom { width: 145px; height: 165px; border-width: 5px; border-radius: 20px; right: -4px; }
  .showcase-top { top: 4px; }
  .showcase-bottom { bottom: 12px; }
  .hero-badge { left: -3px; bottom: 17px; width: 112px; height: 112px; }
  .hero-badge strong { font-size: 29px; }
  .hero-badge span { max-width: 75px; font-size: 9px; }
  .trust-grid > div { padding: 19px 17px; }
  .trust-grid strong { font-size: 15px; }
  .trust-grid span { font-size: 10px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .business h2, .faq h2, .quote h2 { font-size: 39px; }
  .section-heading > p:last-child, .faq-intro > p:last-child { font-size: 15px; }
  .service-card { display: block; }
  .service-image { min-height: 0; height: 260px; }
  .service-content { min-height: 0; padding: 27px; }
  .business-grid { gap: 48px; }
  .business-visual { min-height: 455px; }
  .product-pair { gap: 10px; }
  .product-pair figure { padding: 8px; border-radius: 19px; }
  .product-pair img { height: 330px; border-radius: 13px; }
  .product-pair figcaption { font-size: 10px; }
  .demo-links { display: grid; }
  .demo-links a { justify-content: space-between; }
  .filter-bar { overflow-x: auto; flex-wrap: nowrap; margin-inline: -14px; padding-inline: 14px; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project, .project.project-wide { min-height: 470px; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-grid li { padding: 0 20px; }
  .field-row { grid-template-columns: 1fr; }
  .quote-form { padding: 22px; border-radius: 20px; }
  .footer { padding-top: 54px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 8px;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: rgba(4, 10, 19, .96);
    backdrop-filter: blur(14px);
  }
  .mobile-actions a { min-height: 47px; display: grid; place-items: center; border-radius: 999px; color: var(--white); background: #26354a; font-size: 13px; font-weight: 900; }
  .mobile-actions a:last-child { background: var(--green); }
}

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

:focus-visible { outline: 3px solid rgba(242, 122, 50, .75); outline-offset: 3px; }
