@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #18384a;
  --ink-strong: #102f40;
  --slate: #587482;
  --muted: #79909b;
  --line: #dce9e8;
  --surface: #ffffff;
  --blue-wash: #e9f7fb;
  --blue-soft: #d8f0f6;
  --blue: #2f91a8;
  --blue-deep: #17657b;
  --shadow-sm: 0 10px 28px rgba(24, 56, 74, 0.07);
  --shadow-md: 0 22px 60px rgba(24, 56, 74, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover {
  color: var(--blue-deep);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink-strong);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

h1,
h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  max-width: 1180px;
}

.topbar {
  position: relative;
  z-index: 1031;
  color: #eaf8fb;
  background: var(--ink-strong);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.topbar a:hover {
  color: #fff;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-note .bi {
  color: #8ed5df;
}

.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #c9e6eb;
}

.site-nav {
  position: relative;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 233, 232, 0.9);
}

.navbar {
  min-height: 86px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-strong) !important;
  line-height: 1;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 8px 18px rgba(47, 145, 168, 0.24);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.brand-tagline {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 10px 14px !important;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}

.navbar-nav .nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 2px;
  left: 14px;
  height: 2px;
  content: '';
  background: var(--blue);
  border-radius: 10px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--blue-deep);
}

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

.navbar-toggler {
  padding: 7px 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(47, 145, 168, 0.13);
}

.btn {
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  box-shadow: 0 10px 22px rgba(23, 101, 123, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background: var(--ink-strong);
  border-color: var(--ink-strong);
  box-shadow: 0 14px 28px rgba(23, 101, 123, 0.25);
}

.btn-outline-primary {
  color: var(--blue-deep);
  border-color: #a8d6df;
  background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--blue-deep);
  border-color: var(--blue-deep);
  background: var(--blue-wash);
}

.btn-light-soft {
  color: var(--ink-strong);
  background: #fff;
  border-color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-light-soft:hover,
.btn-light-soft:focus {
  color: var(--blue-deep);
  background: #fff;
  border-color: #fff;
}

.btn-sm {
  min-height: 38px;
  padding: 9px 15px;
  font-size: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background: linear-gradient(120deg, var(--blue-wash) 0%, #f7fbfc 57%, var(--blue-wash) 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  width: 370px;
  height: 370px;
  content: '';
  border: 1px solid rgba(47, 145, 168, 0.11);
  border-radius: 50%;
}

.hero::before {
  top: -230px;
  left: -130px;
}

.hero::after {
  right: -170px;
  bottom: -250px;
  border-color: rgba(47, 145, 168, 0.13);
}

.hero > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 28px;
  height: 2px;
  content: '';
  background: var(--blue);
  border-radius: 5px;
}

.display-title {
  max-width: 710px;
  margin: 19px 0 20px;
  color: var(--ink-strong);
  font-size: clamp(42px, 5.5vw, 74px);
  line-height: 1.02;
}

.display-title em,
.section-title em {
  color: var(--blue-deep);
  font-style: normal;
}

.hero-copy {
  max-width: 590px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-caption {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: var(--slate);
  font-size: 12px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 2px solid #f7fcfb;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.avatar-stack span:nth-child(1) { background: #6ca9b7; }
.avatar-stack span:nth-child(2) { background: #568fa5; }
.avatar-stack span:nth-child(3) { background: #3f829a; }
.avatar-stack span:nth-child(4) { background: #6a9fb4; }

.hero-visual {
  position: relative;
  max-width: 530px;
  min-height: 515px;
  margin: 0 auto;
}

.hero-visual::before {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 95%;
  height: 95%;
  content: '';
  background: var(--blue-soft);
  border-radius: 55% 45% 48% 52% / 50% 44% 56% 50%;
  transform: rotate(-5deg);
}

.hero-image-wrap {
  position: absolute;
  inset: 26px 18px 27px 42px;
  z-index: 1;
  overflow: hidden;
  background: #c9e5e6;
  border: 10px solid rgba(255, 255, 255, 0.73);
  border-radius: 45% 44% 28% 38% / 32% 36% 46% 50%;
  box-shadow: var(--shadow-md);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-orbit {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 2;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--blue-soft);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 33px;
}

.hero-orbit::after {
  position: absolute;
  inset: 9px;
  content: '';
  border: 1px dashed #8ecbd4;
  border-radius: 50%;
}

.floating-stat {
  position: absolute;
  right: -5px;
  bottom: 52px;
  z-index: 2;
  min-width: 190px;
  padding: 17px 19px;
  background: #fff;
  border: 1px solid rgba(220, 233, 232, 0.9);
  border-radius: 17px 17px 5px 17px;
  box-shadow: var(--shadow-md);
}

.floating-stat .stat-number {
  display: block;
  color: var(--blue-deep);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.floating-stat .stat-label {
  display: block;
  margin-top: 4px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
}

.floating-note {
  position: absolute;
  bottom: 26px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.floating-note .bi {
  color: var(--blue);
  font-size: 17px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.trust-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: clamp(20px, 5vw, 60px);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
}

.trust-item .bi {
  color: var(--blue);
  font-size: 19px;
}

.section {
  padding: 108px 0;
}

.section-sm {
  padding: 76px 0;
}

.section-soft-blue {
  background: var(--blue-wash);
}

.section-title {
  margin: 15px 0 17px;
  font-size: clamp(34px, 4vw, 53px);
  line-height: 1.08;
}

.section-lead {
  max-width: 580px;
  color: var(--slate);
  font-size: 16px;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 43px;
}

.section-heading-row .section-lead {
  margin-bottom: 0;
}

.about-media {
  position: relative;
  min-height: 480px;
  padding: 16px 22px 20px 0;
}

.about-media::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 45px;
  content: '';
  background: var(--blue-wash);
  border-radius: 28px 8px 28px 28px;
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 425px;
  object-fit: cover;
  border-radius: 22px 22px 22px 5px;
  box-shadow: var(--shadow-md);
}

.media-badge {
  position: absolute;
  right: 0;
  bottom: 31px;
  z-index: 2;
  width: 156px;
  padding: 18px 15px;
  text-align: center;
  background: var(--blue-deep);
  border-radius: 17px 17px 5px 17px;
  box-shadow: var(--shadow-md);
}

.media-badge strong {
  display: block;
  color: #fff;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.media-badge span {
  display: block;
  margin-top: 7px;
  color: #c9e9ee;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate);
}

.check-list .bi {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 13px;
}

.check-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink-strong);
  font-size: 14px;
}

.check-list span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
}

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

.text-link:hover {
  gap: 12px;
  color: var(--ink-strong);
}

.why-card {
  height: 100%;
  padding: 29px 27px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(24, 56, 74, 0.025);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.icon-tile {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 16px 16px 16px 4px;
  font-size: 23px;
}

.icon-tile.blue { color: var(--blue-deep); background: var(--blue-soft); }

.why-card h3 {
  margin-bottom: 11px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.why-card p {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.7;
}

.services-section {
  background: #fcfdfd;
}

.service-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 7px 22px rgba(24, 56, 74, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.service-image-wrap {
  position: relative;
  overflow: hidden;
  height: 204px;
  background: var(--blue-wash);
}

.service-image-wrap::after {
  position: absolute;
  right: 14px;
  bottom: 13px;
  width: 32px;
  height: 32px;
  content: '';
  background: rgba(255, 255, 255, 0.83);
  border-radius: 50%;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.045);
}

.service-image-wrap .service-icon {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--blue-deep);
  font-size: 16px;
}

.service-card-body {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 23px 24px;
}


.service-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-bottom: 17px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.65;
}

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

.service-card-compact .service-image-wrap {
  height: 180px;
}

.service-card-compact .service-card-body {
  min-height: 230px;
}

.service-disclaimer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.testimonial-panel {
  position: relative;
  overflow: hidden;
  padding: 43px;
  background: var(--ink-strong);
  border-radius: 26px 26px 6px 26px;
}

.testimonial-panel::before {
  position: absolute;
  top: -94px;
  right: -74px;
  width: 255px;
  height: 255px;
  content: '';
  border: 1px solid rgba(154, 220, 223, 0.2);
  border-radius: 50%;
}

.testimonial-panel::after {
  position: absolute;
  right: 64px;
  bottom: -103px;
  width: 205px;
  height: 205px;
  content: '';
  border: 1px solid rgba(242, 185, 117, 0.24);
  border-radius: 50%;
}

.testimonial-panel .section-kicker {
  color: #9ee0e6;
}

.testimonial-panel .section-title {
  color: #fff;
  max-width: 450px;
}

.testimonial-panel .section-title em {
  color: #9ee0e6;
}

.testimonial-panel .section-lead {
  color: #b7d2d7;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px 18px 5px 18px;
}

.testimonial-quote .quote-mark {
  color: var(--blue-soft);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 0.7;
}

.testimonial-quote blockquote {
  margin: 18px 0 24px;
  color: #f3fbfb;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 23px;
  line-height: 1.35;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person .person-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink-strong);
  background: #c9edf0;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.testimonial-person strong {
  display: block;
  color: #fff;
  font-size: 12px;
}


.stars {
  color: var(--blue-soft);
  font-size: 12px;
  letter-spacing: 2px;
}

.faq-section {
  background: var(--blue-wash);
}

.faq-wrap {
  max-width: 790px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 11px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(47, 145, 168, 0.18) !important;
  border-radius: 14px !important;
}

.accordion-button {
  padding: 20px 23px;
  color: var(--ink-strong);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--blue-deep);
  background: #fff;
}

.accordion-button::after {
  width: 14px;
  height: 14px;
  background-size: 14px;
}

.accordion-body {
  padding: 0 23px 21px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.75;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 57px 62px;
  color: #fff;
  background: linear-gradient(117deg, var(--blue-deep), #277e8d);
  border-radius: 27px 27px 6px 27px;
}

.cta-banner::before,
.cta-banner::after {
  position: absolute;
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-banner::before {
  top: -125px;
  right: 16%;
  width: 280px;
  height: 280px;
}

.cta-banner::after {
  right: -84px;
  bottom: -140px;
  width: 320px;
  height: 320px;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin: 0 0 11px;
  color: #fff;
  font-size: clamp(30px, 4vw, 45px);
}

.cta-banner p {
  max-width: 580px;
  margin: 0;
  color: #cbe9eb;
  font-size: 14px;
}

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.blog-card-image {
  height: 215px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 23px 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
}

.blog-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.blog-card p {
  margin-bottom: 17px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.7;
}

.blog-card-button {
  margin-top: auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 75px;
  background: linear-gradient(120deg, var(--blue-wash), #f7fbfc 60%, var(--blue-wash));
}

.page-hero::after {
  position: absolute;
  right: -75px;
  bottom: -135px;
  width: 320px;
  height: 320px;
  content: '';
  border: 1px solid rgba(47, 145, 168, 0.14);
  border-radius: 50%;
}

.page-hero h1 {
  margin: 17px 0 15px;
  font-size: clamp(42px, 5.2vw, 66px);
}

.page-hero p {
  max-width: 640px;
  color: var(--slate);
  font-size: 16px;
}

.breadcrumb-wrap {
  margin-top: 23px;
}

.breadcrumb {
  margin: 0;
  font-size: 12px;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: var(--muted);
}

.breadcrumb-item.active {
  color: var(--blue-deep);
  font-weight: 800;
}

.story-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.story-card p {
  color: var(--slate);
}

.value-number {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 40px;
  line-height: 1;
}

.process-step {
  position: relative;
  height: 100%;
  padding: 27px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.process-step::after {
  position: absolute;
  top: 44px;
  right: -27px;
  width: 28px;
  height: 1px;
  content: '';
  background: #afd9e1;
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-radius: 50%;
  font-weight: 800;
}

.process-step h3 {
  font-size: 18px;
}

.process-step p {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.65;
}

.contact-info-card {
  height: 100%;
  padding: 32px;
  background: var(--ink-strong);
  border-radius: 24px 24px 5px 24px;
  box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 36px;
}

.contact-info-card > p {
  color: #bad7dc;
  font-size: 13px;
}

.contact-detail-list {
  display: grid;
  gap: 21px;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.contact-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #e9f7f8;
  font-size: 13px;
}

.contact-detail-list .detail-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #9de0e6;
  background: rgba(157, 224, 230, 0.12);
  border-radius: 10px 10px 10px 3px;
}

.contact-detail-list small {
  display: block;
  margin-bottom: 2px;
  color: #8dbac2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail-list a:hover {
  color: #fff;
}

.hours-box {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #bad7dc;
  font-size: 12px;
}

.form-shell {
  padding: 39px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.form-shell h2 {
  margin: 0 0 9px;
  font-size: 36px;
}

.form-shell > p {
  margin-bottom: 26px;
  color: var(--slate);
  font-size: 13px;
}

.form-label {
  margin-bottom: 7px;
  color: var(--ink-strong);
  font-size: 12px;
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 49px;
  padding: 12px 15px;
  color: var(--ink);
  background-color: #fbfdfd;
  border: 1px solid #d6e7e6;
  border-radius: 10px;
  font-size: 13px;
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-control::placeholder {
  color: #9aacb3;
}

.form-control:focus,
.form-select:focus {
  color: var(--ink);
  background-color: #fff;
  border-color: #83c8d1;
  box-shadow: 0 0 0 4px rgba(47, 145, 168, 0.11);
}

.form-check-input {
  border-color: #b9d4d3;
}

.form-check-input:checked {
  background-color: var(--blue-deep);
  border-color: var(--blue-deep);
}

.form-check-label,
.form-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.form-feedback.show {
  display: block;
}

.form-feedback.success {
  color: var(--blue-deep);
  background: var(--blue-wash);
  border: 1px solid #b9dfe6;
}

.form-feedback.info {
  color: var(--blue-deep);
  background: var(--blue-wash);
  border: 1px solid #b9dfe6;
}

.form-feedback.error {
  color: var(--blue-deep);
  background: #f5fbfc;
  border: 1px solid #b9dfe6;
}

.newsletter-panel {
  padding: 44px;
  background: var(--blue-wash);
  border: 1px solid #c8e6ec;
  border-radius: 24px 24px 5px 24px;
}

.newsletter-panel h2 {
  margin: 0 0 12px;
  font-size: 37px;
}

.newsletter-panel p {
  max-width: 580px;
  color: var(--slate);
  font-size: 13px;
}

.newsletter-form {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
}

.newsletter-form .form-control {
  flex: 1;
}

.inline-consent {
  margin-top: 11px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 39px 0 12px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

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

.legal-content p,
.legal-content li {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.85;
}

.legal-content ul {
  padding-left: 21px;
}

.article-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.article-card > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.article-body {
  max-width: 800px;
  padding: 38px 44px 45px;
  margin: 0 auto;
}

.article-body h2 {
  margin: 35px 0 12px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.9;
}

.article-body ul {
  padding-left: 21px;
}

.blog-featured {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 36px;
  background: var(--ink-strong);
  border-radius: 24px 24px 5px 24px;
}

.blog-featured > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.blog-featured::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(16, 47, 64, 0.94), rgba(16, 47, 64, 0.05) 70%);
}

.blog-featured-content {
  position: relative;
  z-index: 1;
}

.blog-featured-content h2 {
  max-width: 580px;
  margin: 13px 0;
  color: #fff;
  font-size: 39px;
}

.blog-featured-content p {
  max-width: 580px;
  color: #d2e6e8;
  font-size: 13px;
}

.blog-featured .blog-meta {
  color: #c0dadd;
}

.footer {
  padding: 65px 0 28px;
  color: #b9d1d5;
  background: var(--ink-strong);
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-tagline {
  color: #7faeb7;
}

.footer-copy {
  max-width: 285px;
  margin-top: 20px;
  color: #9cbdc3;
  font-size: 12px;
  line-height: 1.75;
}

.footer-title {
  margin: 0 0 17px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-links a {
  color: #a9c8cd;
  font-size: 12px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-newsletter-copy {
  margin-bottom: 13px;
  color: #a9c8cd;
  font-size: 12px;
  line-height: 1.65;
}

.footer-form {
  display: flex;
  gap: 7px;
}

.footer-form .form-control {
  min-width: 0;
  min-height: 43px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-form .form-control::placeholder {
  color: #92b5bc;
}

.footer-form .form-control:focus {
  background: rgba(255, 255, 255, 0.13);
  border-color: #86d5dc;
  box-shadow: 0 0 0 3px rgba(134, 213, 220, 0.14);
}

.footer-form .btn {
  min-height: 43px;
  padding: 9px 14px;
  flex: 0 0 auto;
}

.footer-small-note {
  margin-top: 11px;
  color: #789da5;
  font-size: 10px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #789da5;
  font-size: 10px;
}

.footer-bottom-links {
  display: flex;
  gap: 19px;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.alert-note {
  padding: 16px 18px;
  color: var(--slate);
  background: var(--blue-wash);
  border: 1px solid var(--blue-soft);
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.65;
}

.mini-stat {
  height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.mini-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.mini-stat span {
  color: var(--slate);
  font-size: 12px;
  line-height: 1.45;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 15px 0 19px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
  }

  .navbar-nav .nav-link::after {
    right: auto;
    bottom: 4px;
    left: 0;
    width: 28px;
  }

  .navbar-cta {
    margin-top: 10px;
  }

  .hero {
    padding: 67px 0 65px;
  }

  .hero-visual {
    max-width: 500px;
    min-height: 465px;
    margin-top: 48px;
  }

  .section {
    padding: 82px 0;
  }

  .about-media {
    max-width: 560px;
    margin: 0 auto 50px;
  }

  .testimonial-panel {
    padding: 34px;
  }

  .process-step::after {
    display: none;
  }

  .contact-info-card {
    min-height: auto;
    margin-bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .topbar-inner {
    justify-content: center;
    min-height: 36px;
  }

  .topbar-contact {
    display: none;
  }

  .navbar {
    min-height: 76px;
  }

  .brand-name {
    font-size: 12px;
  }

  .brand-tagline {
    font-size: 8px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    font-size: 20px;
  }

  .hero {
    padding: 55px 0 52px;
  }

  .display-title {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 360px;
    margin-top: 32px;
  }

  .hero-image-wrap {
    inset: 20px 15px 19px 24px;
    border-width: 7px;
  }

  .hero-orbit {
    top: 0;
    right: 2px;
    width: 69px;
    height: 69px;
    font-size: 24px;
  }

  .floating-stat {
    right: -1px;
    bottom: 33px;
    min-width: 150px;
    padding: 13px 14px;
  }

  .floating-stat .stat-number {
    font-size: 27px;
  }

  .floating-note {
    bottom: 11px;
    left: -3px;
    padding: 8px 10px;
    font-size: 10px;
  }

  .trust-strip-inner {
    display: block;
    padding: 20px 0;
  }

  .trust-label {
    display: block;
    margin-bottom: 14px;
  }

  .trust-items {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .trust-item {
    font-size: 11px;
  }

  .section,
  .section-sm {
    padding: 68px 0;
  }

  .section-heading-row {
    display: block;
    margin-bottom: 31px;
  }

  .section-heading-row .btn {
    margin-top: 22px;
  }

  .about-media {
    min-height: 355px;
    padding: 11px 11px 16px 0;
    margin-bottom: 38px;
  }

  .about-media::before {
    left: 26px;
  }

  .about-media img {
    width: 89%;
    height: 315px;
  }

  .media-badge {
    right: -1px;
    bottom: 22px;
    width: 125px;
    padding: 13px 10px;
  }

  .media-badge strong {
    font-size: 29px;
  }

  .testimonial-panel {
    padding: 27px 19px;
  }

  .testimonial-quote {
    padding: 23px;
  }

  .testimonial-quote blockquote {
    font-size: 20px;
  }

  .cta-banner {
    padding: 38px 24px;
  }

  .page-hero {
    padding: 56px 0 53px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .form-shell,
  .newsletter-panel,
  .story-card {
    padding: 27px 21px;
  }

  .form-shell h2,
  .newsletter-panel h2 {
    font-size: 31px;
  }

  .newsletter-form {
    display: block;
  }

  .newsletter-form .btn {
    width: 100%;
    margin-top: 10px;
  }

  .article-card > img {
    height: 230px;
  }

  .article-body {
    padding: 28px 22px 33px;
  }

  .blog-featured {
    min-height: 355px;
    padding: 25px 21px;
  }

  .blog-featured-content h2 {
    font-size: 31px;
  }

  .footer {
    padding-top: 53px;
  }

  .footer-bottom {
    display: block;
    margin-top: 36px;
  }

  .footer-bottom-links {
    margin-top: 11px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


.navbar-brand img{
  width: 250px;
}

.blog-content {
  text-align: justify;
}