:root {
  --primary: #0b5e75;
  --primary-dark: #073d4d;
  --primary-light: #e9f6f8;
  --accent: #44c2b0;
  --accent-2: #d6f26d;
  --ink: #13252b;
  --muted: #66777d;
  --white: #ffffff;
  --surface: #f7fafb;
  --line: #dfe8ea;
  --shadow: 0 22px 60px rgba(17, 53, 63, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 12px; top: 12px; z-index: 999; background: white; padding: 10px 14px; border-radius: 8px; }

.topbar { background: var(--primary-dark); color: rgba(255,255,255,.86); font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 36px; }
.topbar-links { display: flex; gap: 22px; }
.topbar a:hover { color: var(--accent-2); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,94,117,.08);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 215px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 25px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.btn) { position: relative; }
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 2px; background: var(--accent);
  transition: .25s ease;
}
.main-nav > a:not(.btn):hover::after { right: 0; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; min-height: 52px; padding: 0 24px;
  border-radius: 12px; border: 1px solid transparent;
  font-weight: 800; transition: .25s ease; cursor: pointer;
}
.btn-sm { min-height: 43px; padding: 0 18px; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 14px 30px rgba(11,94,117,.2); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-ghost { background: white; border-color: var(--line); color: var(--primary-dark); }
.btn-ghost:hover { border-color: var(--primary); transform: translateY(-2px); }
.btn-ghost svg { fill: currentColor; stroke: none; }
.btn-light { background: white; color: var(--primary-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.15); }
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(233,246,248,.95), rgba(255,255,255,.98)),
    radial-gradient(circle at 20% 30%, rgba(68,194,176,.2), transparent 40%);
  padding: 92px 0 82px;
}
.hero-bg-shape { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.shape-one { width: 430px; height: 430px; background: rgba(68,194,176,.12); right: -120px; top: -180px; }
.shape-two { width: 250px; height: 250px; border: 46px solid rgba(214,242,109,.2); left: -130px; bottom: -140px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 80px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--primary); text-transform: uppercase;
  letter-spacing: .14em; font-size: 12px; font-weight: 800;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); }
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 1.05; letter-spacing: -.045em;
  margin: 19px 0 24px;
}
.hero h1 span { color: var(--primary); }
.hero-copy > p { font-size: 18px; color: var(--muted); max-width: 610px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 36px; margin-top: 42px; padding-top: 27px; border-top: 1px solid var(--line); }
.hero-trust div { display: grid; }
.hero-trust strong { font-size: 20px; color: var(--primary-dark); }
.hero-trust span { color: var(--muted); font-size: 12px; }

.hero-visual { position: relative; min-height: 500px; }
.main-visual { background: linear-gradient(145deg, var(--primary), #12829c); padding: 22px; border-radius: 36px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.main-visual img { width: 100%; border-radius: 25px; }
.floating-badge {
  position: absolute; left: -25px; bottom: 18px;
  background: white; padding: 14px 18px; border-radius: 15px;
  box-shadow: var(--shadow); display: flex; gap: 11px; align-items: center;
  transform: rotate(-1.5deg);
}
.floating-badge .badge-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-2); display: grid; place-items: center; font-weight: 900; color: var(--primary-dark); }
.floating-badge div { display: grid; }
.floating-badge small, .mini-card small { color: var(--muted); }
.mini-card {
  position: absolute; background: white; border: 1px solid rgba(255,255,255,.65);
  padding: 13px 16px; border-radius: 15px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 11px;
}
.mini-card > span { width: 42px; height: 42px; border-radius: 12px; background: var(--primary-light); display: grid; place-items: center; color: var(--primary); font-weight: 900; }
.mini-card div { display: grid; }
.mini-one { right: -36px; top: 42px; }
.mini-two { right: -24px; bottom: 52px; }

.brands-strip { padding: 24px 0; border-bottom: 1px solid var(--line); background: white; }
.brands-strip .container { display: flex; align-items: center; gap: 35px; }
.brands-strip p { color: var(--muted); font-size: 13px; margin: 0; white-space: nowrap; }
.client-types { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; width: 100%; font-weight: 800; color: #6f7f84; }

.section { padding: 100px 0; }
.section-tint { background: var(--surface); }
.section-heading { max-width: 680px; margin-bottom: 45px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2, .why-copy h2, .quote-copy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15; letter-spacing: -.035em;
  margin: 13px 0 16px;
}
.section-heading p { color: var(--muted); margin: 0; font-size: 17px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  padding: 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: white; transition: .28s ease; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.service-card.featured { background: var(--primary); color: white; border-color: var(--primary); }
.service-card .icon-wrap {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; background: var(--primary-light); color: var(--primary);
  font-size: 28px; margin-bottom: 22px;
}
.service-card.featured .icon-wrap { background: rgba(255,255,255,.15); color: white; }
.service-card h3 { font-size: 20px; margin: 0 0 10px; }
.service-card p { color: var(--muted); margin: 0 0 24px; font-size: 14px; }
.service-card.featured p { color: rgba(255,255,255,.76); }
.service-card a { color: var(--primary); font-weight: 800; font-size: 14px; }
.service-card.featured a { color: var(--accent-2); }
.service-card a span { transition: .2s; display: inline-block; }
.service-card a:hover span { transform: translateX(5px); }

.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 82px; align-items: center; }
.why-visual { position: relative; }
.why-visual > img { border-radius: 30px; box-shadow: var(--shadow); width: 100%; }
.experience-stamp {
  position: absolute; right: -25px; bottom: 28px;
  width: 145px; height: 145px; border-radius: 50%;
  background: var(--accent-2); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; gap: 7px;
  box-shadow: 0 18px 40px rgba(7,61,77,.18);
}
.experience-stamp strong { font-size: 43px; line-height: 1; }
.experience-stamp span { font-size: 12px; font-weight: 800; line-height: 1.25; }
.why-copy > p { color: var(--muted); font-size: 16px; }
.benefits-list { display: grid; gap: 20px; margin: 30px 0; }
.benefits-list > div { display: flex; gap: 15px; }
.check { flex: 0 0 32px; height: 32px; border-radius: 50%; background: rgba(68,194,176,.17); color: var(--primary); display: grid; place-items: center; font-weight: 900; }
.benefits-list strong { display: block; margin-bottom: 3px; }
.benefits-list p { color: var(--muted); margin: 0; font-size: 14px; }
.text-link { color: var(--primary); font-weight: 800; border-bottom: 1px solid rgba(11,94,117,.3); padding-bottom: 5px; }
.text-link span { display: inline-block; transition: .2s; }
.text-link:hover span { transform: translateX(5px); }

.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sectors-grid article { background: white; padding: 32px; min-height: 185px; transition: .25s; }
.sectors-grid article:hover { background: var(--primary-light); }
.sectors-grid span { color: var(--accent); font-weight: 900; font-size: 13px; }
.sectors-grid h3 { margin: 18px 0 8px; font-size: 19px; }
.sectors-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.process-section { background: var(--primary-dark); color: white; padding: 88px 0; position: relative; overflow: hidden; }
.process-section::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(68,194,176,.08); right: -220px; top: -290px; }
.section-heading.light .eyebrow { color: var(--accent-2); }
.section-heading.light h2 { color: white; }
.process-grid { display: grid; grid-template-columns: 1fr 65px 1fr 65px 1fr 65px 1fr; align-items: center; }
.process-step { text-align: center; }
.process-step > span { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 17px; background: var(--accent-2); color: var(--primary-dark); display: grid; place-items: center; font-weight: 900; }
.process-step h3 { margin: 0 0 7px; }
.process-step p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; }
.process-line { height: 1px; background: rgba(255,255,255,.22); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.testimonial { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.featured-testimonial { box-shadow: var(--shadow); transform: translateY(-10px); border-color: transparent; }
.stars { color: #f2b01e; letter-spacing: 2px; }
.testimonial > p { color: #40535a; font-size: 16px; min-height: 105px; }
.author { display: flex; gap: 12px; align-items: center; }
.author > span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--primary-light); color: var(--primary); font-weight: 900; }
.author div { display: grid; }
.author small { color: var(--muted); }
.rating-summary { text-align: center; margin-top: 35px; }
.rating-summary strong { font-size: 42px; display: block; }
.rating-summary p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }

.quote-section { padding: 100px 0; background: linear-gradient(145deg, #eff8f9, white); }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; align-items: center; }
.quote-copy > p { color: var(--muted); }
.contact-cards { display: grid; gap: 12px; margin-top: 30px; }
.contact-cards a { display: flex; gap: 14px; align-items: center; padding: 16px; background: white; border: 1px solid var(--line); border-radius: 14px; transition: .2s; }
.contact-cards a:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--primary-light); display: grid; place-items: center; color: var(--primary); }
.contact-cards div { display: grid; }
.contact-cards small { color: var(--muted); }
.quote-form { padding: 34px; border-radius: 24px; background: white; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 800; margin-bottom: 16px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 11px;
  padding: 13px 14px; background: #fbfdfd; color: var(--ink); outline: none;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(68,194,176,.12); }
.privacy-check { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; font-weight: 500 !important; color: var(--muted); }
.privacy-check input { width: auto; margin-top: 5px; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.cta-banner { background: var(--primary); color: white; padding: 45px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.cta-inner span { color: var(--accent-2); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.cta-inner h2 { margin: 4px 0 0; font-size: 28px; }

.site-footer { background: #061f28; color: rgba(255,255,255,.72); padding: 72px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 50px; }
.footer-brand img { width: 215px; margin-bottom: 20px; }
.footer-brand p { max-width: 350px; }
.footer-grid h3 { color: white; font-size: 14px; margin: 0 0 18px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--accent-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 52px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }

.floating-call {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent); color: white; display: grid; place-items: center;
  box-shadow: 0 15px 35px rgba(7,61,77,.28);
}
.floating-call svg { width: 25px; height: 25px; fill: currentColor; stroke: none; }
.floating-call:hover { transform: translateY(-3px); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute; left: 20px; right: 20px; top: 72px;
    background: white; border: 1px solid var(--line); border-radius: 16px;
    box-shadow: var(--shadow); padding: 18px; display: none;
    flex-direction: column; align-items: stretch; gap: 14px;
  }
  .main-nav.open { display: flex; }
  .main-nav .btn { margin-top: 4px; }
  .hero { padding-top: 65px; }
  .hero-grid, .why-grid, .quote-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { max-width: 620px; margin: 0 auto; min-height: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
  .process-line { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
  .featured-testimonial { transform: none; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar-inner > span { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-links { gap: 15px; font-size: 11px; }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 180px; }
  .hero { padding: 50px 0 58px; }
  .hero h1 { font-size: 41px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 16px; justify-content: space-between; }
  .hero-trust strong { font-size: 17px; }
  .hero-trust span { font-size: 10px; }
  .main-visual { padding: 13px; border-radius: 24px; }
  .main-visual img { border-radius: 17px; }
  .floating-badge { left: 8px; bottom: 8px; padding: 10px 12px; }
  .floating-badge small { display: none; }
  .mini-card { display: none; }
  .brands-strip .container { display: block; }
  .brands-strip p { text-align: center; margin-bottom: 12px; }
  .client-types { justify-content: center; gap: 12px 18px; font-size: 12px; }
  .section, .quote-section { padding: 72px 0; }
  .section-heading h2, .why-copy h2, .quote-copy h2 { font-size: 34px; }
  .services-grid, .sectors-grid, .form-row { grid-template-columns: 1fr; }
  .why-grid { gap: 44px; }
  .experience-stamp { right: 10px; width: 120px; height: 120px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { max-width: 320px; margin: 0 auto; }
  .quote-form { padding: 24px 18px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
