:root {
  --navy-950: #041226;
  --navy-900: #071b34;
  --navy-850: #0a2342;
  --navy-800: #0d2c50;
  --blue: #0d5bd8;
  --blue-2: #1976ed;
  --sky: #dbeafe;
  --gold: #f4ad28;
  --gold-2: #ffd06a;
  --white: #ffffff;
  --paper: #f7f9fc;
  --paper-2: #eef3f8;
  --ink: #10243e;
  --muted: #61738a;
  --line: #dce5ef;
  --green: #1ca76b;
  --shadow-sm: 0 10px 30px rgba(8, 31, 58, .08);
  --shadow: 0 24px 70px rgba(8, 31, 58, .13);
  --shadow-lg: 0 35px 100px rgba(4, 18, 38, .22);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 34px;
  --shell: min(1240px, calc(100% - 40px));
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Montserrat", "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }
::selection { background: var(--gold); color: var(--navy-950); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 9px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.page { display: none; }
.page.active { display: block; animation: pageIn .45s var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Common typography */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow.light { color: var(--gold-2); }
.centered-eyebrow { justify-content: center; }
.centered-eyebrow > span:last-child { display: block; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.13; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.7rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.15rem, 4.25vw, 4.25rem); }
h3 { font-size: 1.22rem; }
h1 em, h2 em { color: var(--blue-2); font-style: normal; }
.dark-section h1 em,
.dark-section h2 em,
.hero h1 em,
.inner-hero h1 em { color: var(--gold-2); }
.lead { color: #40556e; font-size: clamp(1.03rem, 1.5vw, 1.16rem); line-height: 1.85; }
.section { position: relative; padding: 110px 0; }
.soft-section { background: var(--paper); }
.dark-section { color: var(--white); background: var(--navy-900); }
.section-heading { margin-bottom: 52px; }
.section-heading.centered { max-width: 800px; margin-inline: auto; text-align: center; }
.section-heading.centered > p { max-width: 640px; margin: 0 auto; color: var(--muted); }
.dark-section .section-heading.centered > p { color: #aebdd0; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); align-items: end; gap: 60px; }
.split-heading h2 { margin-bottom: 0; }
.heading-side { padding-bottom: 8px; }
.heading-side p { margin: 0 0 21px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-weight: 800; }
.text-link i { transition: transform .3s var(--ease); }
.text-link:hover i { transform: translateX(5px); }

/* Buttons */
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 24px;
  border: 0;
  border-radius: 13px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 28px rgba(244, 173, 40, .25);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(244, 173, 40, .34); filter: saturate(1.08); }
.button i { transition: transform .3s var(--ease); }
.button:hover i.fa-arrow-right { transform: translateX(4px); }
.button-sm { min-height: 44px; padding: 11px 17px; border-radius: 11px; font-size: .82rem; }
.button-dark { color: var(--white); background: linear-gradient(135deg, var(--navy-850), var(--navy-950)); box-shadow: 0 14px 28px rgba(4, 18, 38, .18); }
.button-dark:hover { box-shadow: 0 20px 40px rgba(4, 18, 38, .26); }
.button-ghost { color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.26); box-shadow: none; backdrop-filter: blur(12px); }
.button-ghost:hover { background: rgba(255,255,255,.14); box-shadow: none; }
.button-block { width: 100%; }

/* Header */
.site-notice { position: relative; z-index: 1100; color: #dce7f5; background: var(--navy-950); }
.notice-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .72rem; }
.notice-inner p { margin: 0; }
.notice-inner p i { margin-right: 7px; color: var(--gold); }
.notice-links { display: flex; align-items: center; gap: 22px; color: #aec0d6; }
.notice-links a { color: var(--white); font-weight: 700; }
.notice-links i { margin-right: 5px; color: var(--gold); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(13,44,80,.08);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: 0 12px 35px rgba(4, 18, 38, .1); background: rgba(255,255,255,.985); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; }
.brand img { width: 290px; max-height: 58px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 31px); }
.desktop-nav a { position: relative; padding: 31px 0 27px; color: #42536a; font-size: .84rem; font-weight: 800; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 19px; left: 0; height: 3px; transform: scaleX(0); transform-origin: right; border-radius: 4px; background: var(--gold); transition: transform .3s var(--ease); }
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--navy-900); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 13px; }
.header-call { display: flex; align-items: center; gap: 10px; }
.header-call-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: var(--sky); }
.header-call span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.header-call small { margin-bottom: 4px; color: var(--muted); font-size: .62rem; }
.header-call strong { color: var(--navy-900); font-size: .78rem; }
.menu-toggle { width: 47px; height: 47px; display: none; place-items: center; border: 0; border-radius: 12px; background: var(--navy-900); }
.menu-toggle span { grid-area: 1/1; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }
.mobile-menu { position: fixed; inset: 0; z-index: 2000; pointer-events: none; visibility: hidden; background: rgba(4,18,38,.62); opacity: 0; transition: .35s ease; backdrop-filter: blur(8px); }
.mobile-menu.open { pointer-events: auto; visibility: visible; opacity: 1; }
.mobile-menu-panel { width: min(430px, 91vw); height: 100%; margin-left: auto; padding: 26px; display: flex; flex-direction: column; color: var(--white); background: var(--navy-900); transform: translateX(105%); transition: transform .42s var(--ease); }
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-menu-head img { width: 245px; padding: 8px; border-radius: 10px; background: var(--white); }
.mobile-menu-head button { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: var(--white); background: rgba(255,255,255,.06); }
.mobile-menu nav { margin-top: 25px; }
.mobile-menu nav a { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 17px 2px; border-bottom: 1px solid rgba(255,255,255,.11); font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; }
.mobile-menu nav a span { color: var(--gold); font-family: var(--font-body); font-size: .7rem; }
.mobile-menu nav a i { color: #8497ad; font-size: .82rem; }
.mobile-menu-contact { margin-top: auto; padding-top: 30px; }
.mobile-menu-contact p { color: #b5c5d8; font-size: .85rem; }

/* Hero */
.hero { position: relative; min-height: 705px; color: var(--white); background: var(--navy-900); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 90px; background: linear-gradient(transparent, rgba(4,18,38,.42)); pointer-events: none; }
.hero-slider { min-height: 705px; }
.hero-slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; transition: opacity .8s ease, visibility .8s ease; }
.hero-slide.active { position: relative; visibility: visible; opacity: 1; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(4,18,38,.96) 0%, rgba(4,18,38,.86) 40%, rgba(4,18,38,.38) 72%, rgba(4,18,38,.58) 100%), var(--hero-image); background-position: center; background-size: cover; transform: scale(1.02); }
.hero-slide::after { content: ""; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, #000, transparent 60%); }
.hero-grid { position: relative; z-index: 2; min-height: 705px; display: grid; grid-template-columns: minmax(0, 1fr) 375px; align-items: center; gap: 78px; padding-top: 55px; padding-bottom: 95px; }
.hero-copy { max-width: 790px; }
.hero-copy h1 { margin-bottom: 27px; font-size: clamp(3.25rem, 6.5vw, 6.6rem); line-height: .98; }
.hero-copy > p { max-width: 690px; margin-bottom: 32px; color: #c5d2e0; font-size: clamp(1rem, 1.45vw, 1.16rem); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 32px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; color: #dce6f2; font-size: .78rem; font-weight: 700; }
.hero-points span { display: flex; align-items: center; gap: 7px; }
.hero-points i { color: var(--gold); }
.hero-card { padding: 31px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(9,35,66,.64); box-shadow: var(--shadow-lg); backdrop-filter: blur(16px); }
.hero-card-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 19px; color: var(--gold-2); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.hero-card > strong { display: block; margin-bottom: 12px; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.25; }
.hero-card > p { margin-bottom: 25px; color: #b7c7d9; font-size: .86rem; }
.hero-card-metric { display: grid; grid-template-columns: 43px 1fr; gap: 13px; align-items: center; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.12); }
.hero-card-metric > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; color: var(--gold-2); background: rgba(244,173,40,.12); font-weight: 800; }
.hero-card-metric p { margin: 0; display: flex; flex-direction: column; }
.hero-card-metric b { font-size: .86rem; }
.hero-card-metric small { margin-top: 3px; color: #9fb2c8; font-size: .7rem; line-height: 1.45; }
.compact-card { align-self: end; margin-bottom: 25px; }
.visual-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 18px; color: var(--navy-950); background: var(--gold); font-size: 1.55rem; }
.compact-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-2); font-size: .8rem; font-weight: 800; }
.hero-controls { position: absolute; right: 0; bottom: 25px; left: 0; z-index: 5; display: flex; align-items: center; justify-content: space-between; }
.hero-dots { display: flex; gap: 9px; }
.hero-dots button { width: 30px; height: 4px; padding: 0; border: 0; border-radius: 4px; background: rgba(255,255,255,.28); transition: width .3s ease, background .3s ease; }
.hero-dots button.active { width: 58px; background: var(--gold); }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrows button { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); background: rgba(4,18,38,.3); backdrop-filter: blur(10px); transition: .3s ease; }
.hero-arrows button:hover { color: var(--navy-950); background: var(--gold); border-color: var(--gold); }

/* Trust strip */
.trust-strip { position: relative; z-index: 10; margin-top: -1px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.trust-grid { min-height: 116px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 14px; padding: 24px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; color: var(--blue); background: var(--sky); }
.trust-grid p { margin: 0; display: flex; flex-direction: column; }
.trust-grid strong { font-size: .84rem; }
.trust-grid small { margin-top: 4px; color: var(--muted); font-size: .68rem; line-height: 1.4; }

/* Services */
.services-intro { background: linear-gradient(180deg, #fff 0%, #f9fbfd 100%); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 35px rgba(10,35,66,.06); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease; }
.service-card:hover { transform: translateY(-9px); border-color: #bfd1e5; box-shadow: var(--shadow); }
.service-photo { position: relative; height: 218px; overflow: hidden; background: #d8e2ec; }
.service-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(4,18,38,.58)), var(--card-image) center/cover no-repeat; transition: transform .65s var(--ease); }
.service-card:hover .service-photo::before { transform: scale(1.06); }
.service-number { position: absolute; top: 18px; left: 18px; color: rgba(255,255,255,.9); font-family: var(--font-display); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.service-icon { position: absolute; right: 18px; bottom: 18px; width: 47px; height: 47px; display: grid; place-items: center; border-radius: 14px; color: var(--navy-950); background: var(--gold); box-shadow: 0 10px 22px rgba(4,18,38,.25); }
.service-body { padding: 27px 27px 28px; }
.service-body h3 { margin-bottom: 12px; font-size: 1.3rem; }
.service-body > p { min-height: 72px; margin-bottom: 18px; color: var(--muted); font-size: .84rem; }
.service-body ul { margin: 0 0 22px; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.service-body li { padding: 6px 10px; border: 1px solid #dce7f3; border-radius: 20px; color: #50677f; background: #f8fbff; font-size: .65rem; font-weight: 700; }
.service-body a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: .78rem; font-weight: 800; }
.service-body a i { transition: transform .3s var(--ease); }
.service-body a:hover i { transform: translateX(4px); }

/* Process */
.process-section { overflow: hidden; }
.process-section::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px); background-size: 60px 60px; }
.process-section .shell { position: relative; z-index: 1; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process-grid::before { content: ""; position: absolute; top: 59px; right: 10%; left: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(244,173,40,.55), transparent); }
.process-step { position: relative; z-index: 1; padding: 0 14px; text-align: center; }
.process-step > span { position: absolute; top: -6px; right: 21px; color: rgba(255,255,255,.12); font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; }
.process-icon { width: 78px; height: 78px; display: grid; place-items: center; margin: 0 auto 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: var(--gold); background: var(--navy-850); box-shadow: 0 0 0 9px var(--navy-900); font-size: 1.35rem; }
.process-step h3 { margin-bottom: 10px; color: var(--white); }
.process-step p { margin: 0; color: #aebfd2; font-size: .78rem; }

/* Project showcase */
.project-showcase { background: var(--white); }
.project-grid { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: repeat(2, 260px); gap: 20px; }
.project-card { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius); background: var(--navy-900); text-align: left; }
.project-large { grid-row: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease); }
.project-card:hover img { transform: scale(1.06); }
.project-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; color: var(--white); background: linear-gradient(180deg, transparent 35%, rgba(4,18,38,.88)); }
.project-overlay small { margin-bottom: 7px; color: var(--gold-2); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-overlay strong { padding-right: 50px; font-family: var(--font-display); font-size: 1.15rem; }
.project-large .project-overlay strong { font-size: 1.55rem; }
.project-overlay i { position: absolute; right: 24px; bottom: 25px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.08); }

/* Why */
.why-section { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 88px; }
.why-visual { position: relative; min-height: 620px; }
.why-main-photo { position: absolute; inset: 0 42px 40px 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.why-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.experience-badge { position: absolute; right: 0; bottom: 0; width: 210px; padding: 25px; border-radius: 22px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.experience-badge strong { display: block; color: var(--gold); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.experience-badge b { display: block; margin: 2px 0 4px; font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.experience-badge span { color: #b9c7d7; font-size: .7rem; line-height: 1.45; }
.why-pattern { position: absolute; top: -30px; left: -30px; width: 160px; height: 160px; opacity: .35; background-image: radial-gradient(var(--blue) 2px, transparent 2px); background-size: 17px 17px; }
.why-copy .lead { margin-bottom: 28px; }
.benefit-list { margin: 30px 0 34px; }
.benefit-list > div { display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.benefit-list > div > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; color: var(--blue); background: var(--sky); }
.benefit-list p { margin: 0; display: flex; flex-direction: column; }
.benefit-list strong { margin-bottom: 4px; }
.benefit-list small { color: var(--muted); line-height: 1.55; }

/* CTA and footer */
.cta-band { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .09; background-image: radial-gradient(circle at 10% 30%, var(--white) 1px, transparent 1px); background-size: 22px 22px; }
.cta-band-inner { position: relative; z-index: 1; min-height: 335px; display: flex; align-items: center; justify-content: space-between; gap: 60px; padding-top: 65px; padding-bottom: 65px; }
.cta-band h2 { max-width: 760px; margin-bottom: 15px; font-size: clamp(2rem, 3.6vw, 3.6rem); }
.cta-band p { max-width: 700px; margin: 0; color: #bdcbdc; }
.cta-actions { flex: 0 0 auto; display: flex; flex-direction: column; gap: 12px; min-width: 218px; }
.site-footer { color: #c2ccda; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: 1.45fr .7fr .9fr 1.15fr; gap: 60px; padding-top: 75px; padding-bottom: 58px; }
.footer-brand img { width: 300px; margin-bottom: 24px; padding: 12px; border-radius: 14px; background: var(--white); }
.footer-brand p { max-width: 385px; color: #91a4ba; font-size: .82rem; }
.footer-social { display: flex; gap: 9px; margin-top: 24px; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; color: var(--white); transition: .3s ease; }
.footer-social a:hover { color: var(--navy-950); background: var(--gold); border-color: var(--gold); }
.footer-column h3,
.footer-contact h3 { margin-bottom: 25px; color: var(--white); font-size: 1rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column a { color: #93a6bc; font-size: .78rem; transition: color .25s ease, transform .25s ease; }
.footer-column a:hover { color: var(--gold-2); transform: translateX(3px); }
.footer-contact > a,
.footer-contact > div { display: grid; grid-template-columns: 38px 1fr; gap: 11px; align-items: start; margin-bottom: 16px; color: #dce6f1; font-size: .76rem; }
.footer-contact > a > i,
.footer-contact > div > i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: var(--gold); background: rgba(255,255,255,.07); }
.footer-contact span { display: flex; flex-direction: column; }
.footer-contact small { margin-bottom: 3px; color: #788da4; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); color: #7f93a9; font-size: .7rem; }
.footer-bottom p { margin: 0; }

/* Inner pages */
.inner-hero { position: relative; min-height: 470px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-900); }
.inner-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,18,38,.96) 0%, rgba(4,18,38,.78) 52%, rgba(4,18,38,.42) 100%), var(--inner-image) center/cover no-repeat; }
.inner-hero::after { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 65px 65px; }
.inner-hero-content { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }
.inner-hero h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(3rem, 6vw, 5.4rem); }
.inner-hero-content > p { max-width: 720px; margin-bottom: 28px; color: #c4d0de; font-size: 1.02rem; }
.breadcrumbs { display: flex; align-items: center; gap: 11px; color: #9cafc4; font-size: .72rem; }
.breadcrumbs a { color: var(--white); font-weight: 800; }
.breadcrumbs i { color: var(--gold); font-size: .55rem; }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; }
.story-copy > p:not(.lead) { color: var(--muted); }
.signature-block { display: flex; align-items: center; gap: 15px; margin-top: 31px; }
.signature-mark { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--gold); font-family: var(--font-display); font-weight: 800; }
.signature-block p { margin: 0; display: flex; flex-direction: column; }
.signature-block small { color: var(--muted); }
.story-visual { position: relative; min-height: 610px; }
.story-image-main { position: absolute; inset: 0 80px 80px 0; overflow: hidden; border-radius: var(--radius-lg); }
.story-image-main img,
.story-image-small img { width: 100%; height: 100%; object-fit: cover; }
.story-image-small { position: absolute; right: 0; bottom: 0; width: 230px; height: 230px; overflow: hidden; border: 8px solid var(--white); border-radius: 25px; box-shadow: var(--shadow); }
.story-note { position: absolute; top: 45px; right: -10px; width: 235px; padding: 24px; border-radius: 18px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.story-note i { margin-bottom: 12px; color: var(--gold); }
.story-note p { margin: 0; font-family: var(--font-display); font-size: .88rem; line-height: 1.55; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { position: relative; min-height: 305px; padding: 31px 27px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.value-card > span { position: absolute; top: 15px; right: 18px; color: #e4ebf3; font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; }
.value-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 50px; border-radius: 16px; color: var(--blue); background: var(--sky); font-size: 1.2rem; }
.value-card h3 { margin-bottom: 11px; }
.value-card p { margin: 0; color: var(--muted); font-size: .8rem; }
.capability-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 90px; }
.capability-media { position: relative; min-height: 590px; overflow: hidden; border-radius: var(--radius-lg); }
.capability-media > img { width: 100%; height: 100%; object-fit: cover; }
.capability-label { position: absolute; right: 26px; bottom: 26px; left: 26px; display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; padding: 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; color: var(--white); background: rgba(4,18,38,.78); backdrop-filter: blur(14px); }
.capability-label > i { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: var(--navy-950); background: var(--gold); }
.capability-label span { display: flex; flex-direction: column; }
.capability-label small { color: #b7c5d5; }
.capability-copy > p { color: var(--muted); }
.capability-list { margin: 29px 0 34px; }
.capability-list > div { display: grid; grid-template-columns: 30px 1fr; gap: 13px; margin-bottom: 17px; }
.capability-list > div > i { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: .65rem; }
.capability-list span { display: flex; flex-direction: column; }
.capability-list small { color: var(--muted); }
.faq-section { overflow: hidden; }
.faq-section::before { content: ""; position: absolute; top: -130px; left: -130px; width: 420px; height: 420px; border: 80px solid rgba(255,255,255,.025); border-radius: 50%; }
.faq-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; }
.faq-intro > p { margin-bottom: 30px; color: #aebdd0; }
.accordion { border-top: 1px solid rgba(255,255,255,.12); }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,.12); }
.accordion-item button { width: 100%; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border: 0; color: var(--white); background: transparent; text-align: left; font-family: var(--font-display); font-weight: 700; }
.accordion-item button i { color: var(--gold); transition: transform .3s var(--ease); }
.accordion-item.open button i { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease); }
.accordion-content p { margin: 0; padding: 0 38px 25px 0; color: #9fb1c5; font-size: .84rem; }

/* Service detail page */
.service-detail-list { display: flex; flex-direction: column; gap: 42px; }
.service-detail { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 18px 55px rgba(10,35,66,.07); }
.service-detail.reverse { grid-template-columns: 1.08fr .92fr; }
.service-detail.reverse .service-detail-image { order: 2; }
.service-detail-image { position: relative; min-height: 100%; overflow: hidden; background: var(--paper-2); }
.service-detail-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,18,38,.44)); }
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-image > span { position: absolute; z-index: 2; right: 24px; bottom: 20px; color: var(--white); font-family: var(--font-display); font-size: 3rem; font-weight: 800; }
.service-detail-copy { align-self: center; padding: 55px 60px; }
.service-tag { display: inline-flex; margin-bottom: 18px; padding: 6px 11px; border-radius: 30px; color: var(--blue); background: var(--sky); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-detail-copy h2 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.1rem); }
.service-detail-copy > p { color: var(--muted); }
.feature-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 27px 0 31px; }
.feature-columns ul { margin: 0; padding: 0; list-style: none; }
.feature-columns li { display: flex; align-items: flex-start; gap: 8px; margin: 9px 0; color: #415871; font-size: .78rem; }
.feature-columns li i { margin-top: 5px; color: var(--green); font-size: .65rem; }
.material-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.material-copy > p { color: var(--muted); }
.material-cards { display: flex; flex-direction: column; gap: 14px; }
.material-cards article { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: center; padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.material-cards article > span { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; color: var(--blue); background: var(--sky); }
.material-cards h3 { margin-bottom: 5px; }
.material-cards p { margin: 0; color: var(--muted); font-size: .78rem; }

/* Gallery */
.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 45px; }
.gallery-head h2 { margin-bottom: 0; }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.gallery-filters button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 30px; color: #526980; background: var(--white); font-size: .72rem; font-weight: 800; transition: .25s ease; }
.gallery-filters button:hover,
.gallery-filters button.active { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.gallery-grid { display: grid; grid-auto-rows: 260px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 19px; background: var(--navy-900); text-align: left; transition: opacity .3s ease, transform .3s ease; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item > span { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: var(--white); background: linear-gradient(180deg, transparent 35%, rgba(4,18,38,.88)); }
.gallery-item small { margin-bottom: 5px; color: var(--gold-2); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.gallery-item strong { padding-right: 55px; font-family: var(--font-display); font-size: 1.08rem; }
.gallery-item > span i { position: absolute; right: 20px; bottom: 20px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.gallery-note { display: grid; grid-template-columns: 50px 1fr auto; gap: 16px; align-items: center; margin-top: 30px; padding: 24px; border: 1px solid #d4e2f0; border-radius: 18px; background: #f4f9ff; }
.gallery-note > i { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; color: var(--blue); background: var(--sky); }
.gallery-note p { margin: 0; display: flex; flex-direction: column; }
.gallery-note span { color: var(--muted); font-size: .77rem; }
.gallery-note a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: .76rem; font-weight: 800; }
.lightbox { position: fixed; inset: 0; z-index: 4000; display: grid; place-items: center; padding: 35px; visibility: hidden; opacity: 0; background: rgba(2,10,23,.92); backdrop-filter: blur(12px); transition: .3s ease; }
.lightbox.open { visibility: visible; opacity: 1; }
.lightbox-content { max-width: min(1120px, 94vw); max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox-content img { max-height: 80vh; border-radius: 15px; box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox-content p { margin: 0; color: var(--white); font-family: var(--font-display); font-weight: 700; }
.lightbox-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.08); font-size: 1.1rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .84fr 1.16fr; align-items: start; gap: 85px; }
.contact-info > p { color: var(--muted); }
.contact-card-list { margin-top: 31px; }
.contact-card-list > a,
.contact-card-list > div { display: grid; grid-template-columns: 52px 1fr auto; gap: 16px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-card-list > a > span,
.contact-card-list > div > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: var(--blue); background: var(--sky); }
.contact-card-list p { margin: 0; display: flex; flex-direction: column; }
.contact-card-list small { margin-bottom: 3px; color: var(--muted); font-size: .68rem; }
.contact-card-list strong { font-size: .9rem; }
.contact-card-list em { color: #75869a; font-size: .67rem; font-style: normal; }
.contact-card-list > a > i { color: #9eb0c3; transition: transform .3s var(--ease); }
.contact-card-list > a:hover > i { color: var(--blue); transform: translateX(4px); }
.quote-panel { overflow: hidden; border: 1px solid #d6e1ec; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.quote-panel-head { display: flex; align-items: center; gap: 15px; padding: 27px 33px; color: var(--white); background: linear-gradient(130deg, var(--navy-900), var(--navy-800)); }
.quote-panel-head > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; color: var(--navy-950); background: var(--gold); }
.quote-panel-head small { color: #b4c4d7; font-size: .68rem; text-transform: uppercase; letter-spacing: .11em; }
.quote-panel-head h2 { margin: 2px 0 0; font-size: 1.6rem; }
.quote-panel form { padding: 32px 33px 24px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quote-panel label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 17px; color: var(--ink); font-size: .72rem; font-weight: 800; }
.quote-panel label b { color: #df3b3b; }
.quote-panel input,
.quote-panel select,
.quote-panel textarea { width: 100%; border: 1px solid #d5e0eb; border-radius: 12px; outline: 0; color: var(--ink); background: #fbfdff; font-size: .82rem; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.quote-panel input,
.quote-panel select { height: 50px; padding: 0 14px; }
.quote-panel textarea { min-height: 130px; resize: vertical; padding: 13px 14px; }
.quote-panel input:focus,
.quote-panel select:focus,
.quote-panel textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(13,91,216,.1); }
.quote-panel .invalid { border-color: #dc3d3d; box-shadow: 0 0 0 4px rgba(220,61,61,.08); }
.form-consent { margin: -2px 0 18px; }
.check-label { display: grid !important; grid-template-columns: 20px 1fr; align-items: center; gap: 9px !important; cursor: pointer; }
.check-label input { position: absolute; opacity: 0; pointer-events: none; }
.check-label > span { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid #cbd8e5; border-radius: 6px; background: #f8fbff; }
.check-label input:checked + span { border-color: var(--blue); background: var(--blue); }
.check-label input:checked + span::after { content: "✓"; color: var(--white); font-size: .68rem; }
.check-label small { color: var(--muted); font-weight: 600; }
.form-status { min-height: 22px; margin: 12px 0 0; text-align: center; color: var(--muted); font-size: .72rem; }
.form-status.error { color: #c43333; }
.form-status.success { color: var(--green); }
.quote-tip { display: grid; grid-template-columns: 35px 1fr; gap: 10px; align-items: start; margin: 0 33px 30px; padding: 14px; border-radius: 12px; background: #f0f6fd; }
.quote-tip i { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; color: var(--blue); background: var(--white); }
.quote-tip p { margin: 0; color: var(--muted); font-size: .7rem; }
.prep-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prep-grid article { position: relative; min-height: 260px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.prep-grid article > span { position: absolute; top: 17px; right: 20px; color: #dce6f0; font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; }
.prep-grid article > i { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 16px; color: var(--blue); background: var(--sky); font-size: 1.2rem; }
.prep-grid h3 { margin-bottom: 9px; }
.prep-grid p { margin: 0; color: var(--muted); font-size: .78rem; }

/* Legal */
.legal-grid { display: grid; grid-template-columns: 250px 1fr; align-items: start; gap: 80px; }
.legal-nav { position: sticky; top: 115px; padding: 24px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper); }
.legal-nav strong { display: block; margin-bottom: 13px; font-family: var(--font-display); }
.legal-nav a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .74rem; }
.legal-nav a:hover { color: var(--blue); }
.legal-nav p { margin: 19px 0 0; color: #8a9aae; font-size: .64rem; }
.legal-content article { position: relative; padding: 0 0 50px 65px; margin-bottom: 48px; border-bottom: 1px solid var(--line); }
.legal-content article > span { position: absolute; top: 3px; left: 0; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--blue); background: var(--sky); font-weight: 800; }
.legal-content h2 { margin-bottom: 18px; font-size: 2rem; }
.legal-content p { color: var(--muted); }

/* Floating controls */
.floating-actions { position: fixed; right: 22px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.floating-actions a { min-width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 0 17px; border-radius: 28px; color: var(--white); box-shadow: 0 14px 34px rgba(4,18,38,.24); font-size: .74rem; font-weight: 800; transition: transform .3s var(--ease); }
.floating-actions a:hover { transform: translateY(-3px); }
.float-call { background: var(--blue); }
.float-whatsapp { background: #18a864; }
.back-to-top { position: fixed; right: 24px; bottom: 160px; z-index: 850; width: 43px; height: 43px; border: 0; border-radius: 50%; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow-sm); visibility: hidden; opacity: 0; transform: translateY(10px); transition: .3s ease; }
.back-to-top.show { visibility: visible; opacity: 1; transform: none; }
.noscript { padding: 14px 20px; color: #fff; background: #b22525; text-align: center; font-weight: 700; }

/* Reveal: content stays visible when JavaScript is unavailable. */
.reveal,
.reveal-left,
.reveal-right { opacity: 1; transform: none; }
.js .reveal,
.js .reveal-left,
.js .reveal-right { opacity: 0; transition: opacity .72s var(--ease), transform .72s var(--ease); }
.js .reveal { transform: translateY(34px); }
.js .reveal-left { transform: translateX(-42px); }
.js .reveal-right { transform: translateX(42px); }
.js .reveal.in-view,
.js .reveal-left.in-view,
.js .reveal-right.in-view { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --shell: min(100% - 36px, 1080px); }
  .desktop-nav { gap: 18px; }
  .header-call { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 330px; gap: 42px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 45px; }
  .process-grid::before { display: none; }
  .why-grid,
  .story-grid,
  .capability-grid { gap: 55px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.3fr .7fr .9fr; }
  .footer-contact { grid-column: span 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.09); }
  .footer-contact h3 { grid-column: 1 / -1; margin: 0; }
  .service-detail-copy { padding: 45px; }
  .contact-grid { gap: 50px; }
}

@media (max-width: 960px) {
  html { scroll-padding-top: 92px; }
  .site-notice { display: none; }
  .header-inner { min-height: 74px; }
  .brand img { width: 250px; }
  .desktop-nav,
  .header-actions > .button { display: none; }
  .menu-toggle { display: grid; }
  .hero,
  .hero-slider,
  .hero-grid { min-height: 670px; }
  .hero-grid { grid-template-columns: 1fr; align-content: center; padding-top: 70px; padding-bottom: 105px; }
  .hero-card { display: none; }
  .hero-copy { max-width: 780px; }
  .hero-slide::before { background-image: linear-gradient(90deg, rgba(4,18,38,.97) 0%, rgba(4,18,38,.81) 70%, rgba(4,18,38,.65) 100%), var(--hero-image); }
  .section { padding: 88px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .heading-side { max-width: 670px; padding: 0; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 370px 240px; }
  .project-large { grid-column: span 2; grid-row: auto; }
  .why-grid,
  .story-grid,
  .capability-grid,
  .faq-grid,
  .material-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .why-visual { min-height: 540px; }
  .story-visual { min-height: 540px; order: -1; }
  .capability-media { min-height: 520px; }
  .faq-intro { max-width: 650px; }
  .service-detail,
  .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-image { order: 0; }
  .service-detail-image { min-height: 390px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .prep-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-grid { grid-template-columns: 1fr; gap: 40px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 5px 15px; }
  .legal-nav strong, .legal-nav p { width: 100%; }
  .legal-nav a { border: 0; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { min-width: 0; flex-direction: row; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 15px; }
  .brand img { width: 215px; }
  .header-inner { min-height: 68px; }
  .menu-toggle { width: 44px; height: 44px; }
  .mobile-menu-panel { padding: 20px; }
  .mobile-menu-head img { width: 210px; }
  .hero,
  .hero-slider,
  .hero-grid { min-height: 690px; }
  .hero-grid { padding-top: 65px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 13vw, 4.25rem); }
  .hero-copy > p { font-size: .92rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 10px 16px; }
  .hero-controls { bottom: 20px; }
  .hero-arrows button { width: 43px; height: 43px; }
  .trust-grid { grid-template-columns: 1fr; padding: 10px 0; }
  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) { border: 0; border-bottom: 1px solid var(--line); padding: 15px 4px; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .section-heading { margin-bottom: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-body > p { min-height: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 35px 10px; }
  .process-step { padding: 0 6px; }
  .process-step > span { right: 5px; }
  .process-step p { font-size: .71rem; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 280px); }
  .project-large { grid-column: auto; }
  .why-visual { min-height: 430px; }
  .why-main-photo { right: 24px; bottom: 45px; }
  .experience-badge { width: 180px; padding: 20px; }
  .why-pattern { display: none; }
  .benefit-list > div { grid-template-columns: 47px 1fr; }
  .benefit-list > div > span { width: 47px; height: 47px; }
  .cta-band-inner { min-height: 0; gap: 32px; }
  .cta-actions { width: 100%; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; padding-top: 58px; }
  .footer-brand { grid-column: span 2; }
  .footer-contact { grid-column: span 2; grid-template-columns: 1fr; gap: 0; }
  .footer-contact h3 { grid-column: auto; margin-bottom: 20px; }
  .footer-bottom { flex-direction: column; justify-content: center; padding: 20px 0; text-align: center; }
  .inner-hero { min-height: 430px; }
  .inner-hero h1 { font-size: clamp(2.7rem, 12vw, 4.1rem); }
  .story-visual { min-height: 440px; }
  .story-image-main { right: 35px; bottom: 60px; }
  .story-image-small { width: 180px; height: 180px; }
  .story-note { top: 20px; right: 0; width: 190px; padding: 18px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 250px; }
  .value-icon { margin-bottom: 32px; }
  .capability-media { min-height: 430px; }
  .faq-grid { gap: 42px; }
  .service-detail-image { min-height: 300px; }
  .service-detail-copy { padding: 32px 24px 36px; }
  .feature-columns { grid-template-columns: 1fr; gap: 0; }
  .gallery-head { align-items: flex-start; flex-direction: column; }
  .gallery-filters { justify-content: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 290px; }
  .gallery-item.wide { grid-column: auto; }
  .gallery-note { grid-template-columns: 45px 1fr; }
  .gallery-note a { grid-column: 2; }
  .contact-card-list > a,
  .contact-card-list > div { grid-template-columns: 48px 1fr auto; }
  .quote-panel-head { padding: 23px; }
  .quote-panel form { padding: 24px 20px 18px; }
  .quote-tip { margin: 0 20px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .prep-grid { grid-template-columns: 1fr; }
  .prep-grid article { min-height: 230px; }
  .legal-content article { padding-left: 0; padding-top: 58px; }
  .legal-content article > span { top: 0; }
  .floating-actions { right: 12px; bottom: 14px; flex-direction: row; }
  .floating-actions a { width: 50px; min-width: 50px; height: 50px; padding: 0; }
  .floating-actions span { display: none; }
  .back-to-top { right: 17px; bottom: 82px; }
}

@media (max-width: 430px) {
  .brand img { width: 190px; }
  .hero-points span { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-rows: repeat(3, 245px); }
  .why-visual { min-height: 360px; }
  .experience-badge { width: 155px; padding: 16px; }
  .experience-badge b { font-size: 2rem; }
  .story-visual { min-height: 360px; }
  .story-image-small { width: 145px; height: 145px; }
  .story-note { display: none; }
  .capability-media { min-height: 350px; }
  .capability-label { right: 14px; bottom: 14px; left: 14px; padding: 14px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-contact { grid-column: auto; }
  .footer-brand img { width: 100%; max-width: 285px; }
}

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


/* ========================================================================
   MULTI-PAGE + MOTION ENHANCEMENTS (v3)
   ======================================================================== */
html.js body { opacity: 1; }
body { position: relative; }
body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mouse-x, 80%) var(--mouse-y, 10%), rgba(25,118,237,.075), transparent 24rem),
    radial-gradient(circle at 10% 75%, rgba(244,173,40,.045), transparent 28rem);
}
.page { display: block; }
.page.active { display: block; animation: multipageIn .72s var(--ease) both; }
@keyframes multipageIn { from { opacity: 0; transform: translateY(13px); } to { opacity: 1; transform: none; } }
body.page-leaving main, body.page-leaving .site-footer { animation: pageLeave .24s ease both; }
@keyframes pageLeave { to { opacity: 0; transform: translateY(8px); } }

.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 6000; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-2));
  box-shadow: 0 0 14px rgba(244,173,40,.55); transition: width .08s linear;
}
.page-loader {
  position: fixed; inset: 0; z-index: 7000; display: grid; place-items: center;
  background: #fff; transition: opacity .55s ease, visibility .55s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark { width: min(320px, 72vw); display: grid; gap: 22px; }
.loader-mark img { width: 100%; animation: loaderLogo 1.1s var(--ease) both; }
.loader-mark span { position: relative; height: 3px; overflow: hidden; border-radius: 999px; background: #e4ebf3; }
.loader-mark span::after { content:""; position:absolute; inset:0; width:42%; border-radius:inherit; background:linear-gradient(90deg,var(--blue),var(--gold)); animation: loaderLine 1.1s ease-in-out infinite; }
@keyframes loaderLogo { from { opacity:0; transform:translateY(12px) scale(.97); } to { opacity:1; transform:none; } }
@keyframes loaderLine { from { transform:translateX(-120%); } to { transform:translateX(340%); } }

/* Animated page details */
.site-header .brand img { transition: transform .45s var(--ease), filter .45s ease; }
.site-header .brand:hover img { transform: translateY(-2px) scale(1.015); filter: drop-shadow(0 8px 12px rgba(4,18,38,.08)); }
.desktop-nav a::before { content:""; position:absolute; left:50%; right:50%; bottom:17px; height:2px; border-radius:2px; background:linear-gradient(90deg,var(--blue),var(--gold)); transition:left .3s var(--ease), right .3s var(--ease); }
.desktop-nav a:hover::before, .desktop-nav a.active::before { left:14px; right:14px; }
.hero::after, .inner-hero::after { animation: heroGlow 8s ease-in-out infinite alternate; }
@keyframes heroGlow { from { opacity:.65; transform:translate3d(-1%,0,0) scale(1); } to { opacity:1; transform:translate3d(1.5%,-1%,0) scale(1.03); } }
.hero-slide.active .hero-copy > * { animation: heroItemIn .78s var(--ease) both; }
.hero-slide.active .hero-copy > *:nth-child(2) { animation-delay:.08s; }
.hero-slide.active .hero-copy > *:nth-child(3) { animation-delay:.16s; }
.hero-slide.active .hero-copy > *:nth-child(4) { animation-delay:.24s; }
.hero-slide.active .hero-copy > *:nth-child(5) { animation-delay:.32s; }
@keyframes heroItemIn { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
.hero-slide.active .hero-card { animation: cardFloatIn .9s .2s var(--ease) both, cardHover 5s 1.1s ease-in-out infinite; }
@keyframes cardFloatIn { from { opacity:0; transform:translate3d(30px,18px,0) rotate(1.5deg); } to { opacity:1; transform:none; } }
@keyframes cardHover { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
.inner-hero-content > * { animation: innerHeroIn .72s var(--ease) both; }
.inner-hero-content > *:nth-child(2) { animation-delay:.08s; }
.inner-hero-content > *:nth-child(3) { animation-delay:.16s; }
.inner-hero-content > *:nth-child(4) { animation-delay:.24s; }
@keyframes innerHeroIn { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }

.expertise-ticker { overflow:hidden; color:#fff; background:linear-gradient(90deg,var(--navy-950),var(--navy-800)); border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); }
.ticker-track { display:flex; width:max-content; align-items:center; gap:25px; padding:18px 0; animation:tickerMove 28s linear infinite; }
.ticker-track span { font-family:var(--font-display); font-size:.82rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase; white-space:nowrap; }
.ticker-track i { width:8px; height:8px; border:2px solid var(--gold); transform:rotate(45deg); }
.expertise-ticker:hover .ticker-track { animation-play-state:paused; }
@keyframes tickerMove { to { transform:translateX(-50%); } }

.service-card, .value-card, .prep-grid article, .gallery-item, .project-card { will-change:transform; }
.service-card:hover, .value-card:hover, .prep-grid article:hover { transform:translateY(-10px); }
.service-card::after, .value-card::after, .prep-grid article::after {
  content:""; position:absolute; inset:auto 18px 0; height:3px; border-radius:3px 3px 0 0;
  background:linear-gradient(90deg,var(--blue),var(--gold)); transform:scaleX(0); transform-origin:left; transition:transform .42s var(--ease);
}
.service-card:hover::after, .value-card:hover::after, .prep-grid article:hover::after { transform:scaleX(1); }
.process-icon::after { content:""; position:absolute; inset:-8px; border:1px solid rgba(244,173,40,.35); border-radius:inherit; animation:pulseRing 2.6s ease-out infinite; }
@keyframes pulseRing { 0% { opacity:.8; transform:scale(.84); } 75%,100% { opacity:0; transform:scale(1.32); } }
.float-whatsapp { animation:whatsPulse 2.4s ease-in-out infinite; }
@keyframes whatsPulse { 0%,100% { box-shadow:0 12px 30px rgba(28,167,107,.28); } 50% { box-shadow:0 12px 40px rgba(28,167,107,.48),0 0 0 8px rgba(28,167,107,.08); } }

/* More reliable image rendering and anchors on separate pages */
.service-detail, .legal-content article { scroll-margin-top: 125px; }
img { height:auto; }
img[data-fallback-applied="true"] { object-fit:cover; background:linear-gradient(135deg,#0a2342,#0d5bd8); }

/* Mobile motion and path fixes */
@media (max-width: 720px) {
  .page-loader .loader-mark { width:min(260px,74vw); }
  .expertise-ticker .ticker-track { padding:14px 0; gap:19px; animation-duration:22s; }
  .ticker-track span { font-size:.7rem; }
  .hero-slide.active .hero-card { animation:cardFloatIn .8s .2s var(--ease) both; }
  .desktop-nav a::before { display:none; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .float-whatsapp, .hero-slide.active .hero-card, .process-icon::after, .hero::after, .inner-hero::after { animation:none !important; }
  .page-loader { display:none; }
}

/* Progressive enhancement: never block content when JavaScript is disabled. */
.page-loader { display: none; }
html.js .page-loader { display: grid; }
.js .reveal, .js .reveal-left, .js .reveal-right { transition-delay: var(--reveal-delay, 0ms); }
