
:root {
  --primary: #049bb6;
  --primary-dark: #047d96;
  --primary-light: #e7f8fb;
  --navy: #0b2842;
  --navy-deep: #061a2b;
  --text: #40596c;
  --muted: #718596;
  --line: #dce8ee;
  --surface: #ffffff;
  --soft: #f5fafc;
  --shadow: 0 18px 50px rgba(9, 43, 70, .11);
  --shadow-sm: 0 9px 28px rgba(9, 43, 70, .08);
  --radius: 22px;
  --radius-sm: 15px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.12; margin: 0 0 16px; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.025em; }
h1 { font-size: clamp(2.75rem, 5.6vw, 5rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.5rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 18px; }
ul { margin: 0; padding-left: 20px; }
svg { display: block; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-soft { background: linear-gradient(180deg, #f7fbfd 0%, #eef8fb 100%); }
.section-dark { background: linear-gradient(135deg, var(--navy-deep), #103a59); color: rgba(255,255,255,.78); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 45px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  align-items: center;
  color: var(--primary-dark);
  display: inline-flex;
  font-size: .75rem;
  font-weight: 850;
  gap: 8px;
  letter-spacing: .12em;
  margin-bottom: 17px;
  text-transform: uppercase;
}
.eyebrow::before { background: var(--primary); border-radius: 50%; content: ""; height: 7px; width: 7px; }
.accent { color: var(--primary-dark); }

.skip-link { left: -999px; position: absolute; top: 0; z-index: 9999; }
.skip-link:focus { background: #fff; border-radius: 8px; box-shadow: var(--shadow); left: 12px; padding: 12px 16px; top: 12px; }

.site-header { left: 0; padding: 14px 0; position: fixed; right: 0; top: 0; transition: .25s ease; z-index: 1000; }
.site-header.scrolled { padding: 8px 0; }
.nav-shell {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(9,43,70,.12);
  display: flex;
  min-height: 72px;
  padding: 10px 14px 10px 20px;
}
.brand { align-items: center; display: inline-flex; flex: 0 0 auto; gap: 12px; min-width: 250px; }
.brand img { height: 49px; object-fit: contain; width: 67px; }
.brand-copy { line-height: 1.05; }
.brand-copy strong { color: var(--navy); display: block; font-family: Georgia, serif; font-size: 1.55rem; letter-spacing: .03em; }
.brand-copy small { color: var(--text); display: block; font-size: .57rem; font-weight: 800; letter-spacing: .08em; margin-top: 3px; text-transform: uppercase; }
.nav { align-items: center; display: flex; flex: 1; gap: 2px; justify-content: center; }
.nav a { border-radius: 9px; color: var(--navy); font-size: .87rem; font-weight: 750; padding: 11px 12px; position: relative; }
.nav a::after { background: var(--primary); bottom: 4px; content: ""; height: 2px; left: 12px; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; width: calc(100% - 24px); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:hover, .nav a.active { color: var(--primary-dark); }
.nav-cta { align-items: center; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: 11px; box-shadow: 0 9px 22px rgba(4,155,182,.22); color: #fff; display: inline-flex; font-size: .83rem; font-weight: 800; gap: 8px; padding: 13px 16px; white-space: nowrap; }
.nav-cta:hover { box-shadow: 0 13px 30px rgba(4,155,182,.30); transform: translateY(-2px); }
.menu-toggle { background: transparent; border: 0; display: none; height: 44px; margin-left: auto; padding: 8px; width: 44px; }
.menu-toggle span { background: var(--navy); border-radius: 2px; display: block; height: 2px; margin: 6px 0; transition: .2s; width: 26px; }
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  display: grid;
  overflow: hidden;
  position: relative;
}
.hero-slide {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 35%, rgba(255,255,255,.18) 67%, rgba(255,255,255,.04) 100%),
    url('../images/team.jpg') center / cover no-repeat;
  grid-area: 1 / 1;
  min-height: 795px;
  opacity: 0;
  padding: 155px 0 90px;
  pointer-events: none;
  transition: opacity .65s ease, visibility .65s ease;
  visibility: hidden;
}
.hero-slide-process {
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 30%, rgba(255,255,255,.2) 58%, rgba(255,255,255,.03) 100%),
    url('../images/hero-business-process.png') center / cover no-repeat;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; visibility: visible; z-index: 1; }
.hero::before { background: radial-gradient(circle, rgba(4,155,182,.14) 0 2px, transparent 2px); background-size: 24px 24px; bottom: -70px; content: ""; height: 310px; left: -60px; opacity: .5; position: absolute; width: 470px; }
.hero::after { background: linear-gradient(145deg, rgba(4,155,182,.08), transparent 55%); clip-path: polygon(0 70%,100% 0,100% 100%,0 100%); bottom: 0; content: ""; height: 230px; left: 0; position: absolute; right: 0; }
.hero-grid { align-items: center; display: grid; grid-template-columns: minmax(0, .87fr) minmax(470px, 1.13fr); min-height: 550px; position: relative; z-index: 2; }
.hero-copy { max-width: 650px; padding: 28px 0; }
.hero h1, .hero h2 { font-size: clamp(2.75rem, 5.6vw, 5rem); margin-bottom: 22px; }
.hero-lead { color: #365267; font-size: 1.08rem; max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 30px 0 28px; }
.btn { align-items: center; border: 1px solid transparent; border-radius: 11px; display: inline-flex; font-size: .88rem; font-weight: 800; gap: 9px; justify-content: center; min-height: 49px; padding: 12px 20px; transition: .22s ease; }
.btn-primary { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); box-shadow: 0 10px 25px rgba(4,155,182,.24); color: #fff; }
.btn-primary:hover { box-shadow: 0 15px 34px rgba(4,155,182,.33); transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,.78); border-color: rgba(4,155,182,.55); color: var(--primary-dark); }
.btn-outline:hover { background: #fff; border-color: var(--primary); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--primary-dark); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof span { align-items: center; backdrop-filter: blur(10px); background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.95); border-radius: 999px; box-shadow: var(--shadow-sm); color: var(--navy); display: inline-flex; font-size: .76rem; font-weight: 750; gap: 7px; padding: 9px 12px; }
.hero-proof svg { color: var(--primary); height: 17px; width: 17px; }
.hero-visual { height: 100%; min-height: 560px; position: relative; }
.float-card { align-items: center; backdrop-filter: blur(15px); background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.94); border-radius: 14px; box-shadow: var(--shadow); display: flex; gap: 12px; padding: 14px 16px; position: absolute; width: min(280px, calc(50% - 8px)); z-index: 5; }
.float-card.one { bottom: 20px; left: 0; }
.float-card.two { bottom: 20px; right: 0; }
.float-icon { align-items: center; background: var(--primary-light); border-radius: 10px; color: var(--primary-dark); display: inline-flex; height: 42px; justify-content: center; width: 42px; }
.float-card strong { color: var(--navy); display: block; font-size: .82rem; }
.float-card strong, .float-card small { white-space: nowrap; }
.float-card small { color: var(--muted); display: block; font-size: .58rem; }
.carousel-arrow { align-items: center; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.96); border-radius: 50%; box-shadow: var(--shadow-sm); color: var(--navy); display: flex; height: 44px; justify-content: center; position: absolute; top: 50%; transform: translateY(-50%); transition: .2s ease; width: 44px; z-index: 12; }
.carousel-arrow:hover { background: var(--primary); color: #fff; }
.carousel-arrow svg { height: 20px; width: 20px; }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }
.carousel-dots { bottom: 24px; display: flex; gap: 8px; left: 50%; position: absolute; transform: translateX(-50%); z-index: 12; }
.carousel-dots [data-carousel-dot] { background: rgba(11,40,66,.32); border: 0; border-radius: 999px; height: 8px; padding: 0; transition: .22s ease; width: 8px; }
.carousel-dots [data-carousel-dot].is-active { background: var(--primary); width: 28px; }
.carousel-toggle { align-items: center; background: rgba(255,255,255,.92); border: 1px solid rgba(11,40,66,.14); border-radius: 50%; color: var(--navy); display: inline-flex; font-size: .68rem; height: 26px; justify-content: center; margin-left: 4px; padding: 0; width: 26px; }

.trust-wrap { margin-top: -70px; position: relative; z-index: 8; }
.trust-strip { background: rgba(255,255,255,.97); border: 1px solid rgba(220,232,238,.85); border-radius: 20px; box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; }
.trust-item { align-items: center; border-left: 1px solid var(--line); display: flex; gap: 13px; min-height: 98px; padding: 20px 24px; }
.trust-item:first-child { border-left: 0; }
.trust-icon { align-items: center; border: 2px solid rgba(4,155,182,.22); border-radius: 50%; color: var(--primary-dark); display: inline-flex; flex: 0 0 50px; height: 50px; justify-content: center; }
.trust-item strong { color: var(--navy); display: block; font-size: 1rem; }
.trust-item small { color: var(--muted); display: block; font-size: .76rem; }

.card-grid { display: grid; gap: 20px; }
.card-grid.five { grid-template-columns: repeat(5, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); padding: 28px; position: relative; transition: .25s ease; }
.card:hover { border-color: rgba(4,155,182,.40); box-shadow: var(--shadow); transform: translateY(-7px); }
.icon-box { align-items: center; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: 12px; box-shadow: 0 10px 22px rgba(4,155,182,.18); color: #fff; display: inline-flex; height: 50px; justify-content: center; margin-bottom: 25px; width: 50px; }
.icon-box svg { height: 24px; width: 24px; }
.card h3 { min-height: 3.6em; }
.card p { color: var(--muted); font-size: .88rem; }
.card-arrow { align-items: center; border: 1px solid rgba(4,155,182,.45); border-radius: 50%; color: var(--primary-dark); display: inline-flex; height: 34px; justify-content: center; margin-top: 12px; transition: .2s; width: 34px; }
.card:hover .card-arrow { background: var(--primary); color: #fff; transform: translateX(4px); }

.process-layout { align-items: start; display: grid; gap: 55px; grid-template-columns: .85fr 1.15fr; }
.steps { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); padding: 27px; position: relative; }
.step-number { color: rgba(4,155,182,.25); font-size: 2.5rem; font-weight: 900; position: absolute; right: 20px; top: 13px; }
.step .icon-box { margin-bottom: 20px; }

.benefit-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.benefit { border-left: 1px solid var(--line); padding: 10px 21px; text-align: center; }
.benefit:first-child { border-left: 0; }
.benefit-icon { align-items: center; background: #fff; border-radius: 50%; box-shadow: var(--shadow-sm); color: var(--primary-dark); display: inline-flex; height: 68px; justify-content: center; margin-bottom: 22px; width: 68px; }
.benefit h3 { font-size: .96rem; }
.benefit p { color: var(--muted); font-size: .78rem; }

.industry-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.industry-card { align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); display: flex; gap: 13px; min-height: 88px; padding: 17px 19px; transition: .22s ease; }
.industry-card:hover { border-color: rgba(4,155,182,.44); transform: translateY(-4px); }
.industry-card svg { color: var(--primary-dark); flex: 0 0 31px; height: 31px; width: 31px; }
.industry-card strong { color: var(--navy); font-size: .88rem; }
.industry-card .arrow { color: var(--primary); margin-left: auto; }

.cta { background: linear-gradient(120deg, #027e99, #05395c 68%, #071f39); border-radius: 26px; box-shadow: 0 26px 60px rgba(5,57,92,.24); color: rgba(255,255,255,.8); overflow: hidden; padding: 48px 52px; position: relative; }
.cta::before, .cta::after { border: 1px solid rgba(83,226,239,.16); border-radius: 50%; content: ""; position: absolute; }
.cta::before { height: 400px; right: -90px; top: -270px; width: 400px; }
.cta::after { bottom: -210px; height: 330px; right: 150px; width: 330px; }
.cta-grid { align-items: center; display: grid; gap: 35px; grid-template-columns: 1fr auto; position: relative; z-index: 2; }
.cta h2 { color: #fff; font-size: clamp(2rem,3.4vw,3.2rem); margin-bottom: 8px; }
.cta p { margin: 0; }

.page-hero { background: linear-gradient(135deg, #071c2c 0%, #0c4664 100%); color: rgba(255,255,255,.76); overflow: hidden; padding: 175px 0 85px; position: relative; }
.page-hero::after { border: 70px solid rgba(84,223,235,.06); border-radius: 50%; content: ""; height: 410px; position: absolute; right: -90px; top: -190px; width: 410px; }
.page-hero h1 { color: #fff; font-size: clamp(2.8rem,5vw,4.8rem); }
.page-hero p { font-size: 1.08rem; max-width: 720px; }
.breadcrumb { color: #7de3ed; font-size: .78rem; font-weight: 750; letter-spacing: .06em; margin-bottom: 18px; text-transform: uppercase; }

.content-grid { display: grid; gap: 28px; grid-template-columns: repeat(2,1fr); }
.content-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.content-panel-head { background: linear-gradient(135deg, var(--navy), #0f5870); color: rgba(255,255,255,.75); padding: 36px; }
.content-panel-head h2 { color: #fff; font-size: 2rem; }
.content-panel-body { padding: 36px; }
.check-list { list-style: none; padding: 0; }
.check-list li { align-items: flex-start; color: var(--text); display: flex; gap: 11px; margin: 12px 0; }
.check-list li::before { align-items: center; background: var(--primary-light); border-radius: 50%; color: var(--primary-dark); content: "✓"; display: inline-flex; flex: 0 0 23px; font-size: .7rem; font-weight: 900; height: 23px; justify-content: center; margin-top: 2px; }

.industry-list-grid { display: grid; gap: 16px; grid-template-columns: repeat(3,1fr); }
.industry-list-item { align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: var(--shadow-sm); display: flex; gap: 13px; min-height: 92px; padding: 20px; }
.industry-list-item svg { color: var(--primary-dark); flex: 0 0 27px; height: 27px; margin-top: 2px; width: 27px; }
.industry-list-item strong { color: var(--navy); font-size: .88rem; }

.about-layout { align-items: center; display: grid; gap: 65px; grid-template-columns: 1fr 1fr; }
.about-photo { border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; position: relative; }
.about-photo::after { background: linear-gradient(180deg, transparent 52%, rgba(6,26,43,.38)); content: ""; inset: 0; position: absolute; }
.about-photo img { height: auto; object-fit: contain; width: 100%; }
.team-carousel { margin-inline: auto; max-width: 1120px; padding-bottom: 48px; position: relative; }
.team-carousel-stage { aspect-ratio: 3/2; background: var(--navy-deep); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); display: grid; overflow: hidden; }
.team-slide { grid-area: 1 / 1; margin: 0; opacity: 0; pointer-events: none; position: relative; transition: opacity .6s ease, visibility .6s ease; visibility: hidden; }
.team-slide.is-active { opacity: 1; pointer-events: auto; visibility: visible; z-index: 1; }
.team-slide img { height: 100%; object-fit: contain; width: 100%; }
.team-slide figcaption { background: linear-gradient(90deg, rgba(6,26,43,.92), rgba(6,26,43,.5), transparent); bottom: 0; color: #fff; font-size: .86rem; font-weight: 750; left: 0; padding: 22px 26px; position: absolute; right: 0; }
.team-carousel-arrow { align-items: center; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.96); border-radius: 50%; box-shadow: var(--shadow-sm); color: var(--navy); display: flex; height: 48px; justify-content: center; position: absolute; top: calc(50% - 24px); transform: translateY(-50%); transition: .2s ease; width: 48px; z-index: 4; }
.team-carousel-arrow:hover { background: var(--primary); color: #fff; }
.team-carousel-arrow svg { height: 22px; width: 22px; }
.team-carousel-prev { left: 18px; }
.team-carousel-next { right: 18px; }
.team-carousel-controls { align-items: center; bottom: 0; display: flex; gap: 9px; justify-content: center; left: 50%; position: absolute; transform: translateX(-50%); }
.team-carousel-controls [data-team-dot] { background: rgba(11,40,66,.3); border: 0; border-radius: 999px; height: 9px; padding: 0; transition: .22s ease; width: 9px; }
.team-carousel-controls [data-team-dot].is-active { background: var(--primary); width: 30px; }
.team-carousel-toggle { align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); display: inline-flex; font-size: .68rem; height: 28px; justify-content: center; margin-left: 4px; padding: 0; width: 28px; }
.value-grid { display: grid; gap: 18px; grid-template-columns: repeat(3,1fr); }
.value-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 28px; }
.value-card .icon-box { background: rgba(83,226,239,.12); box-shadow: none; color: #7ce6ee; }
.value-card p { font-size: .88rem; }

.job-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); display: grid; gap: 38px; grid-template-columns: .55fr 1.45fr; overflow: hidden; }
.job-summary { background: linear-gradient(145deg, var(--navy), #0d526b); color: rgba(255,255,255,.75); padding: 42px; }
.job-summary h2 { color: #fff; font-size: 2.2rem; }
.job-tag { background: rgba(83,226,239,.12); border: 1px solid rgba(83,226,239,.28); border-radius: 999px; color: #80e8f0; display: inline-block; font-size: .73rem; font-weight: 850; letter-spacing: .08em; margin-bottom: 20px; padding: 7px 11px; text-transform: uppercase; }
.job-detail { padding: 42px 42px 42px 0; }
.job-detail h3 { margin-top: 28px; }

.contact-layout { display: grid; gap: 30px; grid-template-columns: .8fr 1.2fr; }
.contact-info { background: linear-gradient(145deg, var(--navy), #0d526b); border-radius: var(--radius); color: rgba(255,255,255,.76); padding: 40px; }
.contact-info h2, .contact-info h3 { color: #fff; }
.contact-line { align-items: flex-start; border-top: 1px solid rgba(255,255,255,.13); display: flex; gap: 13px; padding: 18px 0; }
.contact-line:first-of-type { border-top: 0; }
.contact-line svg { color: #74e0e9; flex: 0 0 24px; height: 24px; margin-top: 2px; width: 24px; }
.contact-line a { color: #fff; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 40px; }
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2,1fr); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1/-1; }
.field label { color: var(--navy); font-size: .8rem; font-weight: 800; }
.field input, .field textarea, .field select { background: #fbfdfe; border: 1px solid var(--line); border-radius: 10px; color: var(--navy); outline: 0; padding: 13px 14px; width: 100%; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(4,155,182,.10); }
.form-note { color: var(--muted); font-size: .76rem; margin-top: 12px; }

.faq { border-bottom: 1px solid var(--line); }
.faq button { align-items: center; background: transparent; border: 0; color: var(--navy); display: flex; font-weight: 800; justify-content: space-between; padding: 20px 0; text-align: left; width: 100%; }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-panel p { color: var(--muted); padding-bottom: 20px; }
.faq.open .faq-panel { max-height: 260px; }
.faq .plus { color: var(--primary); font-size: 1.35rem; transition: .2s; }
.faq.open .plus { transform: rotate(45deg); }

.footer { background: linear-gradient(135deg, #061b2d, #073650); color: rgba(255,255,255,.68); padding: 60px 0 0; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1.2fr repeat(2,.65fr) .75fr 1fr 1.3fr; }
.footer-brand { align-items: center; display: flex; gap: 12px; }
.footer-brand img { height: 52px; width: 72px; }
.footer-brand strong { color: #fff; display: block; font-family: Georgia, serif; font-size: 1.5rem; }
.footer-brand small { color: #76e2eb; display: block; font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-about { font-size: .85rem; margin-top: 17px; max-width: 280px; }
.footer h3 { color: #fff; font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { font-size: .83rem; transition: .2s; }
.footer-links a:hover { color: #75e2eb; transform: translateX(3px); }
.footer-contact { display: grid; gap: 11px; font-size: .82rem; }
.footer-contact a:hover { color: #75e2eb; }
.footer-map iframe { background: #dbe3ea; border: 0; border-radius: 10px; display: block; height: 190px; width: 100%; }
.footer-map a { align-items: center; color: #75e2eb; display: inline-flex; font-size: .83rem; font-weight: 800; margin-top: 10px; }
.footer-map a:hover, .footer-map a:focus-visible { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); font-size: .75rem; margin-top: 45px; padding: 18px 0; text-align: center; }
.socials { display: flex; gap: 9px; margin-top: 19px; }
.socials a { align-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: inline-flex; height: 35px; justify-content: center; width: 35px; }
.socials a:hover { background: rgba(4,155,182,.25); color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.progress-bar { background: linear-gradient(90deg, var(--primary), #70e3ec); height: 3px; left: 0; position: fixed; top: 0; transform-origin: left; width: 100%; z-index: 2000; }
.scroll-top { align-items: center; background: var(--primary); border: 0; border-radius: 12px; bottom: 20px; box-shadow: var(--shadow-sm); color: #fff; display: flex; height: 44px; justify-content: center; opacity: 0; pointer-events: none; position: fixed; right: 20px; transform: translateY(12px); transition: .22s; width: 44px; z-index: 900; }
.scroll-top.show { opacity: 1; pointer-events: auto; transform: none; }

@media (max-width: 1160px) {
  .brand { min-width: 220px; }
  .nav a { padding-inline: 9px; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; }
  .float-card { padding-inline: 12px; }
  .float-card .float-icon { display: none; }
  .card-grid.five { grid-template-columns: repeat(3,1fr); }
  .benefit-grid { grid-template-columns: repeat(3,1fr); row-gap: 35px; }
  .benefit:nth-child(4) { border-left: 0; }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 930px) {
  .site-header { padding: 8px 0; }
  .nav-shell { min-height: 65px; }
  .brand { min-width: auto; }
  .brand img { height: 43px; width: 59px; }
  .brand-copy strong { font-size: 1.28rem; }
  .nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav.mobile-open { background: #fff; border-radius: 15px; box-shadow: var(--shadow); display: flex; flex-direction: column; left: 20px; padding: 18px; position: fixed; right: 20px; top: 90px; }
  .nav.mobile-open a { text-align: center; width: 100%; }
  .hero-slide { background-position: 63% center; min-height: 815px; padding: 130px 0 55px; }
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: 630px; }
  .hero-copy { background: rgba(255,255,255,.87); border: 1px solid rgba(255,255,255,.8); border-radius: 22px; box-shadow: var(--shadow); max-width: 680px; padding: 30px; }
  .hero-visual { display: none; }
  .trust-wrap { margin-top: -12px; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .card-grid.five, .card-grid.three { grid-template-columns: repeat(2,1fr); }
  .process-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .industry-grid, .industry-list-grid { grid-template-columns: repeat(2,1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .job-card { grid-template-columns: 1fr; }
  .job-detail { padding: 0 38px 40px; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 1.15rem; }
  .hero-slide { background: linear-gradient(145deg, #f7fcfd 0%, #fff 62%, #eaf8fa 100%); min-height: 670px; padding: 105px 0 85px; }
  .hero-grid { min-height: auto; }
  .hero-copy { margin-top: 0; padding: 24px 21px; }
  .hero h1, .hero h2 { font-size: clamp(2.5rem, 13vw, 3.8rem); }
  .carousel-arrow { bottom: 20px; top: auto; transform: none; }
  .carousel-prev { left: 18px; }
  .carousel-next { right: 18px; }
  .carousel-dots { bottom: 38px; }
  .card h3 { min-height: auto; }
  .team-carousel { padding-bottom: 42px; }
  .team-carousel-arrow { height: 40px; top: calc(50% - 21px); width: 40px; }
  .team-carousel-prev { left: 8px; }
  .team-carousel-next { right: 8px; }
  .team-slide figcaption { font-size: .72rem; padding: 13px 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { flex-direction: column; }
  .hero-proof span { width: fit-content; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid var(--line); min-height: 82px; }
  .trust-item:first-child { border-top: 0; }
  .card-grid.five, .card-grid.three, .card-grid.two, .steps, .industry-grid, .industry-list-grid, .form-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit:nth-child(odd) { border-left: 0; }
  .benefit:nth-child(4) { border-left: 1px solid var(--line); }
  .cta { padding: 35px 27px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta .btn { width: 100%; }
  .page-hero { padding: 135px 0 65px; }
  .content-panel-head, .content-panel-body { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1/-1; }
  .footer-map { grid-column: 1/-1; }
}
@media (max-width: 420px) {
  .nav-shell { padding-left: 12px; }
  .brand img { height: 38px; width: 52px; }
  .benefit-grid, .footer-grid { grid-template-columns: 1fr; }
  .benefit { border-left: 0 !important; border-top: 1px solid var(--line); }
  .benefit:first-child { border-top: 0; }
  .footer-grid > :first-child { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Professional visual refinement */
:root {
  --primary: #0b91a8;
  --primary-dark: #08768a;
  --primary-light: #e8f6f8;
  --navy: #0a263d;
  --navy-deep: #051a2a;
  --text: #344e62;
  --muted: #687e8e;
  --line: #d9e5ea;
  --soft: #f5f9fa;
  --shadow: 0 24px 60px rgba(6, 35, 56, .10);
  --shadow-sm: 0 10px 30px rgba(6, 35, 56, .07);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1220px;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.005em;
}

h1, h2 { font-family: Cambria, Georgia, "Times New Roman", serif; letter-spacing: -.035em; }
h3, h4 { letter-spacing: -.012em; }
.section { padding-block: 108px; }
.section-soft { background: #f5f9fa; }
.section-head { margin-bottom: 52px; }
.section-head p { line-height: 1.75; max-width: 680px; }
.section-head.center p { margin-inline: auto; }
.eyebrow { font-size: .72rem; letter-spacing: .16em; }

.site-header { padding-block: 18px; }
.site-header.scrolled { padding-block: 9px; }
.nav-shell {
  background: rgba(255,255,255,.96);
  border-color: rgba(10,38,61,.08);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(5,26,42,.10);
  min-height: 76px;
  padding: 9px 12px 9px 20px;
}
.brand-copy strong { letter-spacing: .015em; }
.brand-copy small { color: #52697a; letter-spacing: .09em; }
.nav { gap: 4px; }
.nav a { font-size: .84rem; letter-spacing: .01em; padding: 12px 11px; }
.nav a::after { bottom: 3px; height: 2px; }
.nav-cta { border-radius: 9px; box-shadow: 0 8px 20px rgba(8,118,138,.20); padding: 13px 17px; }

.hero-slide { min-height: 820px; padding-bottom: 105px; }
.hero-copy { max-width: 620px; }
.hero h1, .hero h2 { line-height: 1.03; }
.hero-lead { color: #405b6e; line-height: 1.75; }
.hero-proof span { border-color: rgba(10,38,61,.08); box-shadow: 0 8px 24px rgba(6,35,56,.08); }
.float-card { border-color: rgba(10,38,61,.09); border-radius: 11px; box-shadow: 0 16px 42px rgba(6,35,56,.12); }
.trust-strip { border-color: rgba(10,38,61,.10); border-radius: 14px; box-shadow: 0 20px 50px rgba(6,35,56,.10); }

.btn { border-radius: 8px; letter-spacing: .01em; }
.btn-primary { box-shadow: 0 9px 22px rgba(8,118,138,.22); }
.card, .step, .industry-card, .industry-list-item, .content-panel {
  border-color: rgba(10,38,61,.10);
  box-shadow: 0 10px 30px rgba(6,35,56,.055);
}
.card { padding: 30px; }
.card:hover, .industry-card:hover {
  border-color: rgba(11,145,168,.38);
  box-shadow: 0 20px 44px rgba(6,35,56,.10);
  transform: translateY(-4px);
}
.icon-box { border-radius: 10px; box-shadow: 0 9px 20px rgba(8,118,138,.17); }
.step-number { color: rgba(11,145,168,.20); }
.cta { border-radius: 16px; box-shadow: 0 24px 55px rgba(5,57,92,.20); }

.page-hero {
  background: linear-gradient(120deg, #061c2d 0%, #0a3852 60%, #0b5870 100%);
  padding-bottom: 96px;
}
.page-hero::after { border-color: rgba(114,226,234,.055); }
.page-hero p { line-height: 1.75; }
.content-panel, .job-card, .contact-info, .contact-form, .about-photo, .team-carousel-stage { border-radius: 14px; }
.content-panel-head { background: linear-gradient(135deg, #09283f, #0b5269); }
.job-summary { background: linear-gradient(145deg, #09283f, #0b5269); }
.contact-form { box-shadow: 0 16px 42px rgba(6,35,56,.08); }

.footer { background: #051b2b; padding-top: 72px; }
.footer-grid { gap: 42px 34px; grid-template-columns: 1.25fr repeat(3,.72fr) 1.05fr; }
.footer h3 { font-size: .76rem; letter-spacing: .14em; }
.footer-links { gap: 10px; }
.footer-links a, .footer-contact { line-height: 1.6; }
.footer-map {
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.10);
  display: grid;
  gap: 10px 34px;
  grid-column: 1 / -1;
  grid-template-columns: 180px minmax(0,1fr);
  padding-top: 34px;
}
.footer-map h3 { grid-column: 1; grid-row: 1; margin: 4px 0 0; }
.footer-map iframe { border-radius: 8px; grid-column: 2; grid-row: 1 / 3; height: 220px; }
.footer-map a { align-self: start; grid-column: 1; grid-row: 2; margin-top: 0; }
.footer-bottom { margin-top: 38px; padding-block: 20px; }

@media (max-width: 1160px) {
  .footer-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 930px) {
  .section { padding-block: 88px; }
  .nav.mobile-open { border: 1px solid rgba(10,38,61,.10); border-radius: 12px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .section { padding-block: 76px; }
  .hero-slide { min-height: 680px; }
  .hero-copy { border-radius: 14px; }
  .page-hero { padding-bottom: 72px; }
  .footer { padding-top: 56px; }
  .footer-grid { gap: 36px 28px; }
  .footer-map { gap: 16px; grid-template-columns: 1fr; }
  .footer-map h3, .footer-map iframe, .footer-map a { grid-column: 1; grid-row: auto; }
  .footer-map iframe { height: 230px; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* About page */
.about-page .about-hero {
  background:
    radial-gradient(circle at 82% 28%, rgba(80, 219, 230, .16) 0 1px, transparent 2px) 0 0 / 25px 25px,
    linear-gradient(120deg, #051a2b 0%, #073650 58%, #08768a 140%);
  min-height: 680px;
  padding: 176px 0 86px;
}
.about-page .about-hero::before {
  background: linear-gradient(140deg, transparent 30%, rgba(112, 227, 236, .08));
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  inset: 0;
  position: absolute;
}
.about-page .about-hero::after {
  border: 1px solid rgba(125, 227, 237, .12);
  height: 520px;
  right: -175px;
  top: -175px;
  width: 520px;
}
.about-hero-grid { display: grid; gap: 70px; grid-template-columns: minmax(0, 1fr) 260px; position: relative; z-index: 1; }
.about-hero-copy { max-width: 810px; }
.about-hero .breadcrumb { align-items: center; display: flex; gap: 10px; }
.about-hero .breadcrumb a { transition: color .2s ease; }
.about-hero .breadcrumb a:hover { color: #fff; }
.about-kicker { color: rgba(255,255,255,.64); display: block; font-size: .77rem; font-weight: 800; letter-spacing: .14em; margin-bottom: 20px; text-transform: uppercase; }
.about-page .about-hero h1 { font-size: clamp(3.15rem, 6vw, 5.7rem); line-height: .98; margin-bottom: 28px; max-width: 800px; }
.about-page .about-hero p { color: rgba(255,255,255,.72); font-size: 1.12rem; max-width: 650px; }
.about-hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.about-page .btn svg, .about-page .nav-cta svg { flex: 0 0 18px; height: 18px; width: 18px; }
.about-hero-actions .btn { background: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.15); color: var(--primary-dark); }
.about-hero-actions .btn:hover { box-shadow: 0 18px 40px rgba(0,0,0,.2); }
.about-text-link { align-items: center; color: var(--primary-dark); display: inline-flex; font-size: .84rem; font-weight: 850; gap: 10px; }
.about-text-link span { transition: transform .2s ease; }
.about-text-link:hover span { transform: translateX(4px); }
.about-hero .about-text-link { color: #8be8ef; }
.about-hero .about-text-link:hover span { transform: translateY(3px); }
.about-hero-proof { align-self: end; border-left: 1px solid rgba(255,255,255,.15); display: grid; gap: 23px; padding-left: 28px; }
.about-hero-proof div { display: grid; }
.about-hero-proof strong { color: #fff; font-family: Cambria, Georgia, serif; font-size: 1.25rem; font-weight: 600; }
.about-hero-proof span { color: rgba(255,255,255,.52); font-size: .7rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }

.about-story { background: linear-gradient(180deg, #fff, #f8fbfc); }
.about-page .about-layout { gap: clamp(55px, 8vw, 100px); grid-template-columns: minmax(330px, .86fr) minmax(0, 1.14fr); }
.about-photo-wrap { max-width: 520px; padding: 0 28px 38px 0; position: relative; }
.about-page .about-photo { aspect-ratio: 4 / 5; background: #e9f3f5; border-radius: 4px 70px 4px 4px; box-shadow: 0 26px 60px rgba(6,35,56,.15); }
.about-page .about-photo::after { background: linear-gradient(180deg, transparent 62%, rgba(5,26,42,.28)); }
.about-page .about-photo img { height: 100%; object-fit: cover; }
.about-photo-wrap::before { border: 1px solid rgba(11,145,168,.23); bottom: 0; content: ""; left: 34px; position: absolute; right: 0; top: 36px; }
.about-photo-note { background: #fff; bottom: 0; box-shadow: 0 18px 45px rgba(6,35,56,.15); display: grid; max-width: 275px; padding: 21px 24px; position: absolute; right: 0; z-index: 2; }
.about-photo-note span { color: var(--primary-dark); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.about-photo-note strong { color: var(--navy); font-family: Cambria, Georgia, serif; font-size: 1.22rem; line-height: 1.25; margin-top: 5px; }
.about-story-copy { margin-bottom: 0; max-width: 650px; }
.about-story-copy h2 { font-size: clamp(2.7rem, 4.4vw, 4rem); }
.about-story-copy .about-lead { color: var(--navy); font-size: 1.13rem; line-height: 1.7; }
.about-story-copy > p:not(.about-lead) { font-size: .95rem; }
.about-service-list { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; gap: 0 20px; grid-template-columns: 1fr 1fr; margin: 30px 0; padding: 17px 0; }
.about-service-list span { align-items: center; color: var(--navy); display: flex; font-size: .82rem; font-weight: 750; gap: 9px; padding: 8px 0; }
.about-service-list span::before { background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 4px var(--primary-light); content: ""; flex: 0 0 5px; height: 5px; width: 5px; }

.about-values { background: #051b2b; overflow: hidden; }
.about-values::before { background: radial-gradient(circle, rgba(95,218,228,.16) 0 1px, transparent 1.5px); background-size: 28px 28px; content: ""; height: 250px; opacity: .35; position: absolute; right: -25px; top: 35px; width: 420px; }
.about-values .section-head { position: relative; }
.about-values .section-head .eyebrow { color: #83e7ee; }
.about-values .section-head p { color: rgba(255,255,255,.57); }
.about-values .value-grid { gap: 22px; position: relative; }
.about-values .value-card { background: linear-gradient(150deg, rgba(255,255,255,.085), rgba(255,255,255,.035)); border-color: rgba(255,255,255,.13); border-radius: 4px; min-height: 350px; overflow: hidden; padding: 38px; position: relative; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.about-values .value-card:hover { background: linear-gradient(150deg, rgba(11,145,168,.22), rgba(255,255,255,.05)); border-color: rgba(124,230,238,.3); transform: translateY(-5px); }
.about-values .value-card .icon-box { margin-bottom: 42px; }
.about-values .value-card h3 { font-family: Cambria, Georgia, serif; font-size: 1.55rem; }
.about-values .value-card p { color: rgba(255,255,255,.62); line-height: 1.75; }
.value-index { color: rgba(255,255,255,.1); font-family: Cambria, Georgia, serif; font-size: 4.5rem; line-height: 1; position: absolute; right: 22px; top: 20px; }

.about-principles { background: var(--soft); }
.about-principles .process-layout { gap: clamp(48px, 7vw, 92px); grid-template-columns: .72fr 1.28fr; }
.about-principles .section-head { margin-bottom: 0; position: sticky; top: 130px; }
.about-principles .section-head h2 { font-size: clamp(2.6rem, 4vw, 3.7rem); }
.about-principles .section-head .about-text-link { margin-top: 12px; }
.about-principles .steps { gap: 16px; }
.about-principles .step { border-radius: 4px; box-shadow: none; min-height: 250px; overflow: hidden; padding: 30px; transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.about-principles .step:hover { border-color: rgba(11,145,168,.35); box-shadow: 0 18px 40px rgba(6,35,56,.08); transform: translateY(-4px); }
.about-principles .step .icon-box { background: var(--primary-light); box-shadow: none; color: var(--primary-dark); }
.about-principles .step h3 { font-family: Cambria, Georgia, serif; font-size: 1.4rem; }
.about-principles .step p { color: var(--muted); font-size: .86rem; line-height: 1.7; }
.about-principles .step-number { font-family: Cambria, Georgia, serif; font-size: 3.2rem; right: 18px; top: 15px; }

.about-cta-section { background: #fff; padding-block: 86px; }
.about-cta-section .cta { border-radius: 4px 42px 4px 4px; }
.about-cta-section .cta .eyebrow { color: #85e6ed; margin-bottom: 14px; }
.about-cta-section .cta .eyebrow::before { background: #85e6ed; }
.about-cta-section .cta h2 { max-width: 700px; }

@media (max-width: 930px) {
  .about-page .about-hero { min-height: 0; }
  .about-hero-grid { gap: 50px; grid-template-columns: 1fr; }
  .about-hero-copy { max-width: 760px; }
  .about-hero-proof { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); gap: 20px; grid-template-columns: repeat(3, 1fr); padding: 26px 0 0; }
  .about-page .about-layout { grid-template-columns: 1fr; }
  .about-photo-wrap { margin-inline: auto; }
  .about-story-copy { margin-inline: auto; max-width: 700px; }
  .about-principles .process-layout { grid-template-columns: 1fr; }
  .about-principles .section-head { max-width: 700px; position: static; }
}

@media (max-width: 640px) {
  .about-page .about-hero { padding: 140px 0 66px; }
  .about-page .about-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .about-hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .about-hero-actions .btn { width: 100%; }
  .about-hero-proof { gap: 14px; }
  .about-hero-proof strong { font-size: 1rem; }
  .about-hero-proof span { font-size: .58rem; }
  .about-photo-wrap { padding-right: 18px; }
  .about-photo-note { max-width: 235px; padding: 17px 18px; }
  .about-photo-note strong { font-size: 1.05rem; }
  .about-service-list { grid-template-columns: 1fr; }
  .about-values .value-card { min-height: 0; padding: 30px; }
  .about-values .value-card .icon-box { margin-bottom: 30px; }
  .about-principles .step { min-height: 0; }
  .about-cta-section { padding-block: 70px; }
  .about-cta-section .cta { border-radius: 4px 26px 4px 4px; }
}

@media (max-width: 420px) {
  .about-hero-proof { grid-template-columns: 1fr; }
  .about-hero-proof div { grid-template-columns: 105px 1fr; }
  .about-hero-proof span { align-self: center; }
}

/* Homepage experience refresh */
.home-page {
  background: #fbfdfe;
}

.home-page .shared-menu-cta {
  background: var(--navy);
  border-radius: 999px;
  color: #fff;
  margin-left: 4px;
  padding: 12px 18px;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.home-page .shared-menu-cta::after { display: none; }
.home-page .shared-menu-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(8,118,138,.22);
  color: #fff;
  transform: translateY(-1px);
}

.home-page .hero-slide {
  background: linear-gradient(135deg, #f7fbfc 0%, #ffffff 58%, #edf8fa 100%);
  min-height: 620px;
  padding: 44px 0 70px;
}
.home-page .hero-slide::before {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.68));
  content: "";
  inset: 0 auto 0 0;
  pointer-events: none;
  position: absolute;
  width: min(51vw, 780px);
}
.home-page .hero-slide-process {
  background: linear-gradient(135deg, #f7fbfc 0%, #ffffff 58%, #edf8fa 100%);
}
.home-page .hero-slide-process::before { display: none; }
.home-page .hero-slide-process .hero-copy {
  max-width: 570px;
  text-shadow: 0 1px 0 rgba(255,255,255,.72);
}
.home-page .hero-slide-process .hero-copy::after {
  background: linear-gradient(90deg, rgba(255,255,255,.42), transparent);
  border-radius: 24px;
  content: "";
  inset: -22px -34px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
.home-page .hero-grid { min-height: 475px; }
.home-page .hero-copy { position: relative; z-index: 3; }
.home-page .hero-copy::before {
  background: var(--primary);
  border-radius: 999px;
  content: "";
  height: 48px;
  left: -28px;
  opacity: .09;
  position: absolute;
  top: 10px;
  width: 48px;
}
.home-page .hero h1,
.home-page .hero h2 {
  font-size: clamp(2.9rem, 4vw, 4.1rem);
  letter-spacing: -.042em;
  line-height: 1.02;
  max-width: 590px;
}
.home-page .hero-slide-process h2 { font-size: clamp(2.8rem, 3.8vw, 3.95rem); }
.home-page .hero-lead { font-size: 1rem; line-height: 1.65; max-width: 550px; }
.home-page .hero-actions { margin: 25px 0 22px; }
.home-page .hero-actions .btn { min-height: 52px; padding-inline: 20px; white-space: nowrap; }
.home-page .btn svg { flex: 0 0 18px; height: 18px; width: 18px; }
.home-page .hero-proof { gap: 8px; }
.home-page .hero-proof span { box-shadow: none; }
.home-page .hero-grid {
  gap: clamp(38px, 4vw, 64px);
  grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
}
.home-page .hero-visual {
  align-items: center;
  display: flex;
  min-height: 0;
  padding-bottom: 0;
  position: relative;
}
.hero-media {
  aspect-ratio: 16 / 9;
  background: #eaf2f4;
  border: 6px solid #fff;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(6,35,56,.18);
  grid-column: 1 / -1;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
  width: 100%;
}
.hero-media:hover { box-shadow: 0 34px 80px rgba(6,35,56,.22); transform: translateY(-3px); }
.hero-media img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.hero-media-wide img { background: #eef3f4; }
.hero-media-wide { aspect-ratio: 1916 / 821; }
.home-page .float-card {
  backdrop-filter: none;
  background: rgba(255,255,255,.96);
  bottom: auto;
  box-shadow: 0 10px 28px rgba(6,35,56,.08);
  min-height: 72px;
  padding: 12px 14px;
  position: static;
  width: auto;
}
.home-page .float-card.one,
.home-page .float-card.two { bottom: auto; left: auto; right: auto; }
.home-page .float-card strong,
.home-page .float-card small { white-space: normal; }
.home-page .float-card small { font-size: .62rem; line-height: 1.35; margin-top: 2px; }

.home-page .trust-wrap { margin-top: -32px; }
.home-page .trust-strip { background: rgba(255,255,255,.985); }
.home-page .trust-item { min-height: 108px; }
.home-page .trust-icon { background: var(--primary-light); border: 0; border-radius: 12px; }
.home-page .trust-item { transition: background .2s ease; }
.home-page .trust-item:hover { background: #f7fbfc; }

.home-page #services .card-grid.five {
  counter-reset: service-card;
  grid-template-columns: repeat(6, 1fr);
}
.home-page #services .card {
  counter-increment: service-card;
  grid-column: span 2;
  isolation: isolate;
  min-height: 300px;
  overflow: hidden;
}
.home-page #services .card::before {
  color: rgba(11,145,168,.1);
  content: "0" counter(service-card);
  font-family: Cambria, Georgia, serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: -1;
}
.home-page #services .card::after {
  background: linear-gradient(90deg, var(--primary), #67dce5);
  content: "";
  height: 3px;
  left: 28px;
  position: absolute;
  right: 72%;
  top: 0;
  transition: right .25s ease;
}
.home-page #services .card:hover::after { right: 28px; }
.home-page #services .card:nth-child(4) { grid-column: 2 / span 2; }
.home-page #services .card:nth-child(5) { grid-column: 4 / span 2; }
.home-page #services .card h3 { min-height: auto; }
.home-page #services .card p { font-size: .91rem; line-height: 1.7; }
.home-page #services .card-arrow { bottom: 28px; position: absolute; }

.home-page .benefit-grid { gap: 14px; }
.home-page .benefit {
  background: #fff;
  border: 1px solid rgba(10,38,61,.09);
  border-radius: 14px;
  padding: 25px 18px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.home-page .benefit:first-child { border-left: 1px solid rgba(10,38,61,.09); }
.home-page .benefit:hover { border-color: rgba(11,145,168,.32); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.home-page .benefit-icon { background: var(--primary-light); box-shadow: none; height: 58px; width: 58px; }
.home-page .benefit p { line-height: 1.6; }

.home-page .process-layout { gap: clamp(48px, 6vw, 82px); }
.home-page .steps { position: relative; }
.home-page .step { overflow: hidden; transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.home-page .step::after {
  background: linear-gradient(180deg, rgba(11,145,168,.1), transparent);
  content: "";
  inset: 0 0 auto;
  height: 54px;
  pointer-events: none;
  position: absolute;
}
.home-page .step:hover { border-color: rgba(11,145,168,.32); box-shadow: var(--shadow-sm); transform: translateY(-3px); }

.home-page .industry-card { overflow: hidden; position: relative; }
.home-page .industry-card::before {
  background: var(--primary-light);
  border-radius: 50%;
  content: "";
  height: 82px;
  left: -46px;
  opacity: .75;
  position: absolute;
  top: -44px;
  width: 82px;
}
.home-page .industry-card > * { position: relative; }
.home-page .industry-card .arrow { transition: transform .2s ease; }
.home-page .industry-card:hover .arrow { transform: translateX(4px); }

.home-page .cta {
  background: linear-gradient(118deg, #08768a 0%, #08445e 58%, #061d31 100%);
  border: 1px solid rgba(255,255,255,.1);
}

.home-page .faq button { font-size: 1rem; padding: 23px 0; }
.home-page .faq button:focus-visible { outline: 3px solid rgba(11,145,168,.25); outline-offset: 5px; }
.home-page .faq-panel { transition: max-height .35s ease; }
.home-page :is(a, button):focus-visible { outline: 3px solid rgba(11,145,168,.3); outline-offset: 3px; }

@media (max-width: 1120px) {
  .home-page .shared-menu-cta { margin-left: 0; padding-inline: 14px; }
}

@media (max-width: 930px) {
  .home-page .shared-menu-cta { border-radius: 9px; margin-top: 10px; text-align: center; }
  .home-page .hero-slide { min-height: 0; padding: 58px 0 88px; }
  .home-page .hero-slide::before { width: 100%; }
  .home-page .hero-slide-process { background: linear-gradient(135deg, #f7fbfc 0%, #ffffff 58%, #edf8fa 100%); }
  .home-page .hero-copy { backdrop-filter: blur(14px); background: rgba(255,255,255,.88); }
  .home-page .hero-slide-process .hero-copy { background: rgba(255,255,255,.72); }
  .home-page .hero-slide-process .hero-copy::after { display: none; }
  .home-page .hero-grid { gap: 34px; grid-template-columns: 1fr; }
  .home-page .hero-visual { display: flex; margin-inline: auto; max-width: 760px; min-height: 0; width: 100%; }
  .home-page #services .card-grid.five { grid-template-columns: repeat(2, 1fr); }
  .home-page #services .card,
  .home-page #services .card:nth-child(4),
  .home-page #services .card:nth-child(5) { grid-column: auto; }
  .home-page #services .card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .home-page .hero-slide { background: linear-gradient(145deg, #f6fbfc 0%, #fff 58%, #eaf7f9 100%); min-height: 0; padding: 62px 0 88px; }
  .home-page .hero-slide-process { background: linear-gradient(145deg, #f6fbfc 0%, #fff 58%, #eaf7f9 100%); }
  .home-page .hero-copy { backdrop-filter: none; background: transparent; border: 0; box-shadow: none; padding: 10px 2px; }
  .home-page .hero h1,
  .home-page .hero h2 { font-size: clamp(2.7rem, 13vw, 3.65rem); }
  .home-page .hero-lead { font-size: .98rem; }
  .home-page .trust-wrap { margin-top: -18px; }
  .home-page .hero-visual { padding-bottom: 0; }
  .home-page .hero-media { border-width: 5px; border-radius: 16px; }
  .home-page .hero-visual .float-card { display: none; }
  .home-page #services .card-grid.five { grid-template-columns: 1fr; }
  .home-page #services .card:last-child { grid-column: auto; }
  .home-page #services .card { min-height: 0; padding-bottom: 78px; }
  .home-page .benefit-grid { gap: 10px; }
  .home-page .benefit { border: 1px solid rgba(10,38,61,.09) !important; }
}
