:root {
  --navy: #172b61;
  --navy-deep: #0d1d46;
  --blue: #1d3f91;
  --blue-bright: #2f67d8;
  --orange: #ff7112;
  --orange-dark: #e85a00;
  --ink: #14233f;
  --body: #56647b;
  --muted: #7f8ba0;
  --line: #e6eaf1;
  --surface: #f6f8fb;
  --white: #fff;
  --green: #16ba67;
  --shadow: 0 18px 55px rgba(15, 35, 77, .1);
  --radius: 22px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -.035em;
  line-height: 1.12;
}

h2 {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: clamp(2.2rem, 4.2vw, 3.65rem);
}

h3 {
  color: var(--blue);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.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;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(20, 35, 63, .08);
  box-shadow: 0 7px 28px rgba(13, 29, 70, .06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: 238px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.main-nav a {
  position: relative;
  color: #37445a;
  font-size: .94rem;
  font-weight: 650;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-outline {
  color: var(--orange);
  background: transparent;
  border-color: var(--orange);
}

.button-outline:hover {
  color: var(--white);
  background: var(--orange);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(255, 113, 18, .2);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 38px rgba(255, 113, 18, .3);
}

.button-light {
  color: var(--blue);
  background: var(--white);
}

.button-large {
  min-height: 61px;
  padding-inline: 28px;
}

.header-cta {
  padding-inline: 25px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: .25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 24%, rgba(62, 102, 195, .35), transparent 31%),
    linear-gradient(125deg, #182d65 0%, #20438f 56%, #303e66 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.045));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  align-items: center;
  grid-template-columns: 1.03fr .97fr;
  gap: 35px;
  padding-top: 70px;
  padding-bottom: 105px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(3.1rem, 5.4vw, 5.6rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy > p {
  max-width: 660px;
  margin-bottom: 31px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.92);
  font-weight: 650;
}

.hero-contact svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-contact .whatsapp-icon {
  stroke: #24e17f;
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 620px;
}

.hero-image {
  position: absolute;
  right: -95px;
  bottom: 35px;
  width: 780px;
  height: auto;
  max-width: none;
  border-radius: 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.orbit-one {
  top: -230px;
  left: 18%;
  width: 900px;
  height: 900px;
}

.orbit-two {
  top: 130px;
  left: 32%;
  width: 560px;
  height: 560px;
}

.proof-strip {
  position: relative;
  z-index: 5;
  display: grid;
  margin-top: -67px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(20,35,63,.06);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(10, 28, 65, .15);
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip div {
  position: relative;
  padding: 25px 28px;
}

.proof-strip div:not(:last-child)::after {
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  content: "";
  background: var(--line);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: .96rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: .78rem;
}

.services {
  padding-top: 145px;
  background: var(--surface);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--body);
  font-size: 1.08rem;
}

.kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 540px;
  flex-direction: column;
  padding: 38px 34px 32px;
  background: var(--white);
  border: 1px solid #edf0f5;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15,35,77,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  border-color: rgba(255,113,18,.45);
  box-shadow: 0 18px 48px rgba(15,35,77,.11);
}

.popular-label {
  position: absolute;
  top: 20px;
  right: -34px;
  width: 150px;
  padding: 5px 0;
  color: var(--white);
  background: var(--orange);
  font-size: .66rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(43deg);
}

.service-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(15,35,77,.14);
}

.service-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-blue {
  background: var(--blue);
}

.icon-dark {
  background: #34445d;
}

.icon-orange {
  background: var(--orange);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.service-card > p {
  min-height: 79px;
  margin-bottom: 24px;
  color: var(--body);
}

.check-list {
  display: grid;
  margin: 0 0 27px;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #46556c;
  font-size: .94rem;
}

.check-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 800;
}

.service-card .text-link {
  margin-top: auto;
}

.heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.heading-row > div {
  max-width: 650px;
}

.heading-row > p {
  max-width: 450px;
  padding-bottom: 10px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 13px 35px rgba(15,35,77,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.project-art {
  position: relative;
  overflow: hidden;
  height: 270px;
  background: var(--navy);
}

.project-main .project-art {
  height: 270px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.project-card:hover .project-image {
  transform: scale(1.035);
}

.project-image-electric {
  object-position: 40% center;
}

.project-image-camera {
  object-position: 35% center;
}

.project-image-renovation {
  object-position: center;
}

.project-content {
  padding: 27px 27px 30px;
}

.project-content > span {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-content h3 {
  margin: 8px 0 11px;
  font-size: 1.35rem;
}

.project-main .project-content h3 {
  font-size: 1.35rem;
}

.project-content p {
  color: var(--body);
  font-size: .93rem;
}

.why-us {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(52,83,156,.45), transparent 35%),
    var(--navy-deep);
}

.why-us::after {
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.why-copy h2 {
  color: var(--white);
}

.why-copy h2 span {
  color: var(--orange);
}

.why-copy p {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit {
  display: flex;
  min-height: 96px;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
}

.benefit > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit span,
.benefit strong,
.benefit small {
  display: block;
}

.benefit strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: .95rem;
  line-height: 1.35;
}

.benefit small {
  color: rgba(255,255,255,.57);
  line-height: 1.4;
}

.process {
  background: var(--surface);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  top: 65px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, #bdc7d9 0 8px, transparent 8px 17px);
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

.process-step > span {
  position: absolute;
  top: 0;
  right: 22px;
  color: #dce2ec;
  font-size: 2.1rem;
  font-weight: 900;
}

.numbered-process .process-step > span {
  position: relative;
  top: auto;
  right: auto;
  display: grid;
  width: 76px;
  height: 76px;
  margin: 27px auto 24px;
  place-items: center;
  color: var(--orange);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(15,35,77,.1);
  font-size: 1.25rem;
}

.process-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 27px auto 24px;
  place-items: center;
  color: var(--orange);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(15,35,77,.1);
}

.process-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-icon {
  font-size: 1.8rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.process-step p {
  color: var(--body);
  font-size: .9rem;
}

.trust-section {
  overflow: hidden;
}

.trust-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.trust-visual {
  position: relative;
  min-height: 500px;
}

.experience-card {
  position: absolute;
  z-index: 2;
  inset: 35px 35px 45px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
  color: var(--white);
  background:
    linear-gradient(rgba(18,40,88,.88), rgba(10,27,64,.94)),
    repeating-linear-gradient(45deg, #213d7d 0 2px, #1d3975 2px 8px);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(15,35,77,.2);
}

.experience-label {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.experience-card > strong {
  max-width: 430px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -.04em;
  line-height: 1.1;
}

.experience-card > p {
  color: rgba(255,255,255,.68);
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-top: 12px;
}

.mini-points span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  font-weight: 700;
}

.mini-points svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}

.orange-square,
.blue-square {
  position: absolute;
  border-radius: 20px;
}

.orange-square {
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: var(--orange);
  transform: rotate(8deg);
}

.blue-square {
  bottom: 15px;
  left: 0;
  width: 180px;
  height: 180px;
  background: #edf3ff;
  transform: rotate(-8deg);
}

.trust-copy > p {
  margin-bottom: 32px;
  color: var(--body);
  font-size: 1.04rem;
}

.audience-list {
  display: grid;
  gap: 16px;
}

.audience-list > div {
  position: relative;
  padding: 16px 20px 16px 52px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.audience-list > div::before {
  position: absolute;
  top: 21px;
  left: 22px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,113,18,.12);
}

.audience-list strong,
.audience-list span {
  display: block;
}

.audience-list strong {
  color: var(--blue);
}

.audience-list span {
  color: var(--body);
  font-size: .9rem;
}

.reviews {
  background: var(--surface);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  margin: 0;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15,35,77,.06);
}

.trust-marker {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--orange);
  background: rgba(255,113,18,.1);
  border-radius: 12px;
}

.trust-marker svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-proof-card h3 {
  margin-bottom: 13px;
  font-size: 1.35rem;
}

.trust-proof-card p {
  margin-bottom: 0;
  color: #3f4e65;
  font-size: 1rem;
  line-height: 1.75;
}

.area-teaser {
  background: var(--white);
}

.area-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.area-chip-grid a,
.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(15,35,77,.06);
}

.area-chip-grid a {
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 20px 23px;
  color: var(--blue);
  border-radius: 15px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}

.area-chip-grid a::before {
  width: 10px;
  height: 10px;
  margin-right: 12px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,113,18,.11);
}

.area-chip-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.area-card {
  min-height: 100%;
  padding: 30px;
  border-radius: var(--radius);
}

.area-card > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.area-card h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.area-card p {
  margin-bottom: 0;
  color: var(--body);
  font-size: .94rem;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 135px;
}

.faq-intro p {
  color: var(--body);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 45px 23px 0;
  color: var(--blue);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 15px;
  height: 2px;
  content: "";
  background: var(--orange);
  transition: transform .25s ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 45px 24px 0;
  color: var(--body);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 15%, rgba(55,107,218,.34), transparent 31%),
    linear-gradient(130deg, #0c1d46, #172f69);
}

.contact-section::after {
  position: absolute;
  top: -320px;
  right: -260px;
  width: 750px;
  height: 750px;
  content: "";
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: .82fr 1.18fr;
  gap: 85px;
}

.kicker-light {
  color: #ff934f;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  color: rgba(255,255,255,.68);
  font-size: 1.04rem;
}

.contact-options {
  display: grid;
  margin-top: 36px;
  gap: 14px;
}

.contact-options > a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  transition: background .2s ease;
}

.contact-options > a:hover {
  background: rgba(255,255,255,.11);
}

.contact-options > a > span {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  color: var(--orange);
  background: rgba(255,113,18,.12);
  border-radius: 10px;
}

.contact-options svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.mail-icon {
  font-size: 1.25rem;
  font-weight: 850;
}

.contact-options small,
.contact-options strong {
  display: block;
}

.contact-options small {
  color: rgba(255,255,255,.52);
  font-size: .72rem;
}

.contact-options strong {
  color: var(--white);
  font-size: .94rem;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 10px;
  color: rgba(255,255,255,.62);
  font-size: .8rem;
}

.contact-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.contact-meta svg {
  width: 17px;
  height: 17px;
  stroke: var(--orange);
}

.quote-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(3,13,34,.3);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading > span {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 6px 0 0;
  font-size: 1.65rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form > label,
.form-row label {
  display: block;
  margin-bottom: 13px;
  color: #3e4c61;
  font-size: .78rem;
  font-weight: 750;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8f9fb;
  border: 1px solid #dde2ea;
  border-radius: 9px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  background: var(--white);
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(47,103,216,.1);
}

.quote-form input[aria-invalid="true"],
.quote-form textarea[aria-invalid="true"] {
  border-color: #d63f3f;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  color: var(--body) !important;
  font-weight: 500 !important;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.button-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.button-submit:disabled {
  opacity: .7;
  cursor: wait;
}

.h-captcha {
  min-height: 78px;
  margin: 4px 0 16px;
}

.form-success {
  display: none;
  padding: 28px;
  color: #155e39;
  background: #ecf9f1;
  border: 1px solid #bde7ce;
  border-radius: 12px;
  text-align: center;
}

.form-success strong,
.form-success span {
  display: block;
}

.form-success span {
  margin-top: 6px;
  color: #387054;
  font-size: .84rem;
}

.form-error {
  margin-top: 14px;
  padding: 16px 18px;
  color: #8b1f1f;
  background: #fff1f1;
  border: 1px solid #f3caca;
  border-radius: 12px;
}

.form-error[hidden] {
  display: none !important;
}

.form-error strong,
.form-error span {
  display: block;
}

.form-error span {
  margin-top: 4px;
  font-size: .84rem;
}

.quote-form.submitted > *:not(.form-success) {
  display: none !important;
}

.quote-form.submitted .form-success {
  display: block;
}

.site-footer {
  color: rgba(255,255,255,.65);
  background: #08142f;
}

.footer-top {
  display: grid;
  padding-top: 74px;
  padding-bottom: 58px;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 55px;
}

.brand-logo-footer {
  width: 255px;
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  font-size: .9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  font-size: .76rem;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.social-links a:hover {
  color: var(--white);
  background: rgba(255,107,11,.14);
  border-color: rgba(255,107,11,.45);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-top h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: .95rem;
  letter-spacing: 0;
}

.footer-top > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: .83rem;
}

.footer-top a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover {
  color: var(--orange);
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(22,186,103,.35);
  font-size: .85rem;
  font-weight: 800;
  transition: transform .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Multipage layouts */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(63, 111, 219, .32), transparent 30%),
    linear-gradient(125deg, #0d1d46, #20438f);
}

.page-hero::after {
  position: absolute;
  top: -250px;
  right: -150px;
  width: 650px;
  height: 650px;
  content: "";
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 390px;
  align-items: center;
  grid-template-columns: 1.08fr .92fr;
  gap: 65px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: var(--orange);
}

.page-hero h1 {
  max-width: 790px;
  margin-bottom: 23px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-hero-copy > p {
  max-width: 670px;
  margin-bottom: 29px;
  color: rgba(255,255,255,.76);
  font-size: 1.08rem;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.page-hero-visual {
  position: relative;
  min-height: 360px;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(3, 13, 34, .32);
}

.page-hero-image.contain {
  object-fit: contain;
  border: 0;
  box-shadow: none;
}

.page-hero-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(310px, 72%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 35px rgba(3,13,34,.28));
}

.page-hero-card {
  position: absolute;
  right: -15px;
  bottom: 24px;
  max-width: 290px;
  padding: 20px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.page-hero-card strong,
.page-hero-card span {
  display: block;
}

.page-hero-card strong {
  color: var(--blue);
}

.page-hero-card span {
  color: var(--body);
  font-size: .82rem;
}

.page-hero-visual-outset .page-hero-card {
  right: -14px;
  bottom: -46px;
  max-width: 285px;
}

.section-alt {
  background: var(--surface);
}

.intro-grid,
.detail-grid,
.about-grid,
.contact-page-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
}

.intro-copy > p,
.detail-copy > p,
.about-copy > p {
  color: var(--body);
  font-size: 1.02rem;
}

.lead {
  color: var(--ink) !important;
  font-size: 1.16rem !important;
  font-weight: 600;
}

.content-panel {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-panel h3 {
  font-size: 1.5rem;
}

.content-panel-dark {
  color: rgba(255,255,255,.72);
  background: var(--navy);
  border-color: rgba(255,255,255,.08);
}

.content-panel-dark h3,
.content-panel-dark strong {
  color: var(--white);
}

.service-overview-grid,
.feature-card-grid,
.values-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.service-overview-card,
.feature-card,
.value-card,
.related-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15,35,77,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-overview-card:hover,
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-overview-card h2,
.service-overview-card h3,
.feature-card h3,
.value-card h3,
.related-card h3 {
  margin-bottom: 13px;
  font-size: 1.4rem;
}

.service-overview-card p,
.feature-card p,
.value-card p,
.related-card p {
  color: var(--body);
}

.service-overview-card > p {
  min-height: 78px;
}

.service-overview-card .service-icon {
  margin-bottom: 24px;
}

.service-overview-card .spec-grid {
  margin-top: 0;
}

.service-overview-card .text-link {
  margin-top: 24px;
}

.related-card .text-link {
  margin-top: auto;
}

.detail-section {
  padding: 105px 0;
}

.detail-section + .detail-section {
  border-top: 1px solid var(--line);
}

.detail-grid.reverse .detail-media {
  order: 2;
}

.detail-media {
  position: relative;
}

.detail-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.detail-badge {
  position: absolute;
  right: -18px;
  bottom: 26px;
  max-width: 250px;
  padding: 17px 19px;
  color: var(--white);
  background: var(--orange);
  border-radius: 13px;
  box-shadow: 0 16px 35px rgba(255,113,18,.28);
}

.detail-badge strong,
.detail-badge span {
  display: block;
}

.detail-badge span {
  font-size: .76rem;
  opacity: .8;
}

.spec-grid {
  display: grid;
  margin-top: 29px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #46556c;
  font-size: .9rem;
}

.spec-item::before {
  flex: 0 0 auto;
  content: "\2713";
  color: var(--orange);
  font-weight: 900;
}

.spec-item svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.workflow-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15,35,77,.06);
}

.workflow-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 23px;
  place-items: center;
  color: var(--orange);
  background: rgba(255,113,18,.1);
  border-radius: 16px;
}

.workflow-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-card h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.workflow-card p {
  margin-bottom: 0;
  color: var(--body);
  font-size: .94rem;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 46px;
}

.service-nav a {
  padding: 10px 17px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 750;
}

.service-nav a:hover,
.service-nav a.active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.stat-card {
  padding: 28px 22px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--orange);
  font-size: 2rem;
}

.stat-card span {
  color: var(--body);
  font-size: .83rem;
}

.project-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.project-showcase {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15,35,77,.07);
}

.project-showcase-media {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.project-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-showcase-content {
  padding: 30px;
}

.project-showcase-content h2,
.project-showcase-content h3 {
  font-size: 1.55rem;
}

.project-showcase-content p {
  color: var(--body);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 35px;
}

.timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 10px;
  width: 2px;
  content: "";
  background: #dce3ef;
}

.timeline-item {
  position: relative;
  padding: 22px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.timeline-item::before {
  position: absolute;
  top: 27px;
  left: -32px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--orange);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--orange);
}

.timeline-item h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.timeline-item p {
  margin: 0;
  color: var(--body);
  font-size: .9rem;
}

.contact-page-grid {
  align-items: start;
}

.contact-info-grid {
  display: grid;
  gap: 14px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.contact-info-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: var(--orange);
  background: rgba(255,113,18,.1);
  border-radius: 10px;
}

.contact-info-card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-info-card small,
.contact-info-card strong {
  display: block;
}

.contact-info-card small {
  color: var(--muted);
}

.contact-info-card strong {
  color: var(--blue);
}

.cta-band {
  padding: 45px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0, rgba(67,112,216,.35), transparent 35%),
    var(--navy);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta-band h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.cta-band p {
  margin: 0;
  color: rgba(255,255,255,.67);
}

.notice {
  padding: 16px 19px;
  color: #725123;
  background: #fff8e9;
  border: 1px solid #f1dba8;
  border-radius: 11px;
  font-size: .84rem;
}

.legal-hero {
  padding: 72px 0 76px;
}

.legal-hero .page-hero-grid {
  min-height: 250px;
  grid-template-columns: 1fr;
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-hero .page-hero-copy > p {
  margin-bottom: 0;
}

.legal-section {
  padding: 90px 0 110px;
  background: var(--surface);
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 45px;
}

.legal-toc {
  position: sticky;
  top: 120px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15,35,77,.06);
}

.legal-toc strong {
  display: block;
  margin-bottom: 13px;
  color: var(--blue);
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  color: var(--body);
  font-size: .84rem;
}

.legal-toc a:hover {
  color: var(--orange);
}

.legal-content {
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-meta {
  margin-bottom: 30px;
  padding-bottom: 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: .84rem;
}

.legal-content section {
  scroll-margin-top: 125px;
}

.legal-content section + section {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
}

.legal-content h3 {
  margin: 25px 0 8px;
  font-size: 1.12rem;
}

.legal-content p,
.legal-content li {
  color: var(--body);
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a,
.privacy-check a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-warning {
  margin-bottom: 34px;
  padding: 20px 22px;
  color: #62461c;
  background: #fff8e8;
  border: 1px solid #efd699;
  border-radius: 12px;
}

.legal-warning strong {
  display: block;
  margin-bottom: 5px;
  color: #49320f;
}

.legal-contact-box {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.legal-contact-box p:last-child {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.og-capture .hero-grid {
  min-height: 538px;
  padding-top: 45px;
  padding-bottom: 45px;
}

.og-capture .hero-actions,
.og-capture .hero-contact,
.og-capture .proof-strip,
.og-capture .floating-whatsapp {
  display: none;
}

.og-capture .hero-visual {
  min-height: 500px;
}

@media (max-width: 1120px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 25px;
  }

  .hero-grid {
    grid-template-columns: 1.12fr .88fr;
  }

  .hero-image {
    right: -135px;
  }

  .badge-camera {
    right: -15px;
  }

  .why-grid,
  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .page-hero-grid,
  .intro-grid,
  .detail-grid,
  .about-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-visual {
    min-height: 330px;
  }

  .service-overview-grid,
  .feature-card-grid,
  .values-grid,
  .related-grid,
  .workflow-grid,
  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-showcase-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-grid.reverse .detail-media {
    order: 0;
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 92px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .main-nav.open {
    transform: none;
  }

  .main-nav a {
    padding: 17px 7px;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 85px;
    padding-bottom: 0;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero-visual {
    min-height: 525px;
  }

  .hero-image {
    right: 50%;
    bottom: 10px;
    width: 650px;
    transform: translateX(52%);
  }

  .badge-elektra {
    left: 8%;
  }

  .badge-camera {
    right: 5%;
  }

  .proof-strip {
    margin-top: 0;
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
  }

  .proof-strip div:nth-child(2)::after {
    display: none;
  }

  .services {
    padding-top: 90px;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card > p {
    min-height: 0;
  }

  .why-grid,
  .trust-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .trust-grid,
  .faq-grid,
  .contact-grid {
    gap: 55px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 20px;
  }

  .process-grid::before {
    display: none;
  }

  .faq-intro {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 4;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 78px;
  }

  .main-nav {
    top: 78px;
  }

  .brand-logo {
    width: 204px;
  }

  .section {
    padding: 72px 0;
  }

  .page-hero {
    padding: 60px 0 68px;
  }

  .legal-hero {
    padding: 54px 0 58px;
  }

  .legal-section {
    padding: 60px 0 75px;
  }

  .legal-content {
    padding: 27px 22px;
  }

  .page-hero-grid {
    gap: 35px;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }

  .page-hero-visual {
    min-height: 260px;
  }

  .page-hero-card {
    right: 8px;
    bottom: 10px;
  }

  .page-hero-visual-outset .page-hero-card {
    right: 10px;
    bottom: -32px;
    max-width: calc(100% - 20px);
  }

  .service-overview-grid,
  .feature-card-grid,
  .values-grid,
  .related-grid,
  .workflow-grid,
  .area-grid,
  .area-chip-grid,
  .stats-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .service-overview-card > p {
    min-height: 0;
  }

  .content-panel,
  .service-overview-card,
  .feature-card,
  .value-card,
  .related-card,
  .area-card {
    padding: 25px;
  }

  .detail-section {
    padding: 72px 0;
  }

  .detail-media img {
    min-height: 280px;
  }

  .detail-badge {
    right: 8px;
  }

  .project-showcase-media {
    height: 260px;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-grid {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-contact {
    flex-direction: column;
    gap: 13px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-image {
    bottom: 18px;
    width: 520px;
  }

  .proof-strip {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    padding: 18px 24px;
  }

  .proof-strip div:not(:last-child)::after {
    top: auto;
    right: 24px;
    bottom: 0;
    left: 24px;
    width: auto;
    height: 1px;
  }

  .heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-main {
    grid-column: auto;
  }

  .project-main .project-art,
  .project-art {
    height: 270px;
  }

  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    inset: 25px 15px 35px 10px;
    padding: 35px 28px;
  }

  .trust-visual {
    min-height: 470px;
  }

  .review-card {
    min-height: 300px;
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form {
    padding: 25px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-top > div:last-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
  }
}

.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  background: #0b1a43;
  box-shadow: 0 20px 60px rgba(5, 15, 40, .28);
  color: var(--white);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-copy {
  max-width: 690px;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.cookie-banner-copy p {
  margin: 0 0 5px;
  color: #dce5f7;
  line-height: 1.55;
}

.cookie-banner-copy a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-banner-actions .button {
  min-height: 48px;
  white-space: nowrap;
}

.cookie-settings-button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  color: var(--orange);
}

@media (max-width: 760px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .cookie-banner-actions {
    flex-direction: column-reverse;
  }

  .cookie-banner-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .floating-whatsapp,
  .cookie-banner,
  .legal-toc {
    display: none !important;
  }

  .legal-section {
    padding: 0;
    background: var(--white);
  }

  .legal-layout {
    display: block;
  }

  .legal-content {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
