/* ==================== Color Tokens ==================== */
:root {
  --header-h: 70px;
  --bg: #f6f1e7;
  --bg-soft: #ede4d6;
  --mint: #d7efe7;
  --panel: #ffffff;
  --text: #16373d;
  --muted: #526972;
  --line: #e5d8c7;
  --brand: #0c9b88;
  --brand-2: #0a7f71;
  --accent: #146c83;
  --success: #168869;
  --error: #c0544f;
  --shadow: 0 20px 45px rgba(14, 77, 68, 0.08);
  --shadow-lg: 0 28px 55px rgba(12, 77, 68, 0.15);
  --radius: 16px;
  --navy: #0f3d45;
  /* New modern color additions */
  --brand-gradient-start: #0c9b88;
  --brand-gradient-end: #0a7f71;
  --secondary: #1f5f76;
  --light-accent: #f3e6d6;
  --dark-bg: #0d2b32;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== Base Styles ==================== */
*, *::before, *::after { 
  box-sizing: border-box; 
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset, 120px);
}

html, body { 
  height: 100%; 
  margin: 0; 
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-feature-settings: "liga" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-top: var(--header-offset, 118px);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 12% 22%, rgba(12, 155, 136, 0.1) 0%, transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(31, 95, 118, 0.08) 0%, transparent 30%);
  z-index: -1;
  pointer-events: none;
}

/* Base typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--navy);
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

/* ==================== Layout ==================== */
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.pad-xl { padding: 7rem 0; }
.pad-lg { padding: 5rem 0; }
.pad-md { padding: 3rem 0; }
.alt { 
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}

.alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 5% 10%, rgba(12, 155, 136, 0.05) 0%, transparent 15%),
    radial-gradient(circle at 95% 90%, rgba(139, 92, 246, 0.05) 0%, transparent 15%);
  pointer-events: none;
}

.services-alt {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 10px 30px rgba(0,0,0,.05);
}

.services-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(12, 155, 136, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 25%);
  pointer-events: none;
}

.services-alt .section-header h2 {
  color: #0f2d44;
}

.services-alt .section-header p {
  color: #334155;
}

.services-alt .card {
  background: #ffffff;
  border: 1px solid rgba(12, 155, 136, 0.16);
  box-shadow: 0 10px 25px rgba(15, 61, 69, 0.08);
}

.services-alt .card:hover {
  border-color: var(--brand);
  box-shadow: 0 18px 38px rgba(12, 155, 136, 0.2);
}

/* ==================== Header ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.header-top {
  background: linear-gradient(90deg, rgba(12, 155, 136, 0.18) 0%, rgba(31, 95, 118, 0.12) 40%, rgba(12, 155, 136, 0.08) 100%);
  border-bottom: 1px solid rgba(12, 155, 136, 0.25);
  font-size: 0.88rem;
  color: #0f2d44;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem 0;
}

.header-top-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.note-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(12, 155, 136, 0.18);
}

.header-top-actions {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.header-top-link,
.header-top-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  font-weight: 600;
  color: #0f2d44;
  transition: color 0.2s ease, transform 0.2s ease;
}

.header-top-link {
  color: var(--brand);
}

.header-top-link::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header-top-link:hover::after {
  transform: translate(4px, -1px) rotate(45deg);
}

.header-top-link:hover,
.header-top-phone:hover {
  transform: translateY(-2px);
  color: #0e7490;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: max-content;
}

/* ==================== Brand/Logo ==================== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
  position: relative;
  z-index: 101;
}

.brand:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.brand img {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  transition: color 0.3s ease;
}

.brand-tagline {
  font-size: 0.8rem;
  color: #64748b;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==================== Navigation ==================== */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  width: 100%;
}

.site-nav .menu {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  color: #0f2d44;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.menu-link::before {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  pointer-events: none;
}

.menu-link:hover,
.menu-link:focus {
  color: var(--brand);
  outline: none;
  transform: translateY(-2px);
  background: rgba(12, 155, 136, 0.08);
  border-color: rgba(12, 155, 136, 0.12);
}

.menu-link:hover::before,
.menu-link:focus::before,
.has-submenu.open > .menu-link::before {
  transform: scaleX(1);
}

.menu-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(12, 155, 136, 0.25);
}

.nav-cta {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-left: auto;
}

.nav-hotline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(12, 155, 136, 0.12);
  border: 1px solid rgba(12, 155, 136, 0.25);
  color: #0f2d44;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-hotline:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(12, 155, 136, 0.25);
}

.nav-hotline-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.88rem;
  line-height: 1.2;
}

.nav-hotline-text strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.nav-hotline-text span {
  color: var(--brand);
  font-weight: 600;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.header-hotline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #0f2d44;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(12, 155, 136, 0.12);
  border: 1px solid rgba(12, 155, 136, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.header-hotline:hover {
  transform: translateY(-2px);
  color: var(--brand);
  box-shadow: 0 12px 22px rgba(12, 155, 136, 0.22);
}

.hotline-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(12, 155, 136, 0.25), rgba(31, 95, 118, 0.2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(12, 155, 136, 0.25);
}

.hotline-icon svg {
  width: 20px;
  height: 20px;
}

.header-primary {
  box-shadow: 0 18px 30px rgba(12, 155, 136, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(12, 155, 136, 0.35);
}

/* ==================== Dropdown/Submenu ==================== */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: all .2s ease;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  min-width: 560px;
}

.submenu .submenu-col {
  display: grid;
  gap: .35rem;
}

.submenu a {
  color: var(--text);
  text-decoration: none;
  padding: .4rem .5rem;
  border-radius: 6px;
  transition: all .15s ease;
  font-size: .9rem;
}

.submenu a:hover {
  color: var(--brand);
  background: var(--bg-soft);
}

.submenu-heading {
  font-weight: 700;
  color: var(--muted);
  margin-bottom: .5rem;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.has-submenu:focus-within > .submenu,
.has-submenu:hover > .submenu,
.has-submenu.open > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==================== Hamburger Button ==================== */
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(12, 155, 136, 0.45);
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 101;
  padding: 0;
  border-radius: 14px;
  transition: all .3s ease;
  box-shadow: 0 6px 16px rgba(12, 155, 136, 0.15);
}

.nav-toggle:hover {
  transform: translateY(-2px);
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--brand);
  margin: 5px auto;
  transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.nav-toggle::before,
.nav-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
  transition: all .3s ease;
}

body.menu-open .nav-toggle .bar {
  opacity: 0;
}

body.menu-open .nav-toggle::before,
body.menu-open .nav-toggle::after {
  opacity: 1;
  background: #ffffff;
}

body.menu-open .nav-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .nav-toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: all .3s ease;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  white-space: nowrap;
  min-height: 48px; /* Better touch target */
  touch-action: manipulation; /* Better touch response */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand-gradient-start), var(--brand-gradient-end));
  color: #fff;
  border: none;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 4px 14px rgba(12, 155, 136, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #0284c7, #0891b2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 155, 136, 0.4);
}

.btn.primary:active {
  transform: translateY(0);
}

.btn.primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn.primary:active::after {
  width: 200px;
  height: 200px;
}

.btn.primary:focus {
  outline: 2px solid rgba(30,102,255,.4);
  outline-offset: 2px;
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn.ghost:hover {
  background: var(--bg-soft);
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn.on-dark {
  background: #ffffff;
  color: var(--brand);
  border-color: transparent;
  font-weight: 700;
}

.btn.on-dark:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ==================== Hero Section ==================== */
.hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(135deg, #f4efe4 0%, #fbf8f1 100%);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 18px 35px rgba(15, 61, 69, 0.08);
  padding: 2rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding: 5rem 0 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.display {
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--navy);
  font-weight: 800;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.display-sm {
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.2;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--brand);
  letter-spacing: .12em;
  font-weight: 800;
  margin: 0 0 .5rem;
  font-size: .85rem;
}

.lead {
  font-size: 1.125rem;
  color: #3f565c;
  margin: 0 0 2rem;
  max-width: 90%;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.accent {
  color: var(--navy);
}

.hero-cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta .btn {
  transition: all 0.3s ease;
}

.hero-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.trust-list {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.trust-list li:hover {
  color: var(--brand);
  transform: translateY(-2px);
}

.trust-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
}

.hero-art {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 110px);
  grid-auto-rows: 110px;
  gap: 18px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.tile {
  border-radius: 28px;
  transform: rotate(45deg);
  box-shadow: var(--shadow);
  transition: all .3s ease;
  animation: float 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.75rem;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(-45deg);
}

.tile:hover {
  transform: rotate(45deg) scale(1.05);
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tile.c1 { background: linear-gradient(135deg, #0c9b88, #0a7f71); animation-delay: 0s; color: #f4faf8; }
.tile.c2 { background: linear-gradient(135deg, #1f5f76, #0d3b48); animation-delay: 0.5s; color: #edf7f6; }
.tile.c3 { background: linear-gradient(135deg, #f2e7d6, #f9f3e6); animation-delay: 1s; color: var(--navy); }
.tile.c4 { background: linear-gradient(135deg, #0a7f71, #0c9b88); animation-delay: 1.5s; color: #f4faf8; }
.tile.c5 { background: #fffdf8; border: 2px solid rgba(12, 155, 136, 0.35); animation-delay: 2s; color: var(--brand); }
.tile.c6 { background: linear-gradient(135deg, #148573, #0c9b88); animation-delay: 2.5s; color: #f4faf8; }
.tile.c7 { background: linear-gradient(135deg, #ede0cd, #f8f3e6); animation-delay: 3s; color: var(--navy); }
.tile.c8 { background: linear-gradient(135deg, #0d4660, #1f5f76); animation-delay: 3.5s; color: #eaf6f5; }
.tile.c9 { background: linear-gradient(135deg, #0c9b88, #148573); animation-delay: 4s; color: #f4faf8; }

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% -20%, rgba(12,155,136,.14), rgba(0,0,0,0) 45%);
  pointer-events: none;
  z-index: 1;
}

/* Floating animation for hero tiles */
@keyframes float {
  0% {
    transform: rotate(45deg) translateY(0px);
  }
  50% {
    transform: rotate(45deg) translateY(-10px);
  }
  100% {
    transform: rotate(45deg) translateY(0px);
  }
}

/* ==================== Sections ==================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  margin: 0 0 .75rem;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--secondary));
  border-radius: 2px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ghost-title {
  font-family: Georgia, Times, serif;
  font-weight: 800;
  font-size: clamp(60px, 14vw, 160px);
  letter-spacing: .06em;
  color: rgba(14,165,233,.06);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.section-header {
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card, .post-card, .quote, .stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-alt .card {
  background: #ffffff;
  border: 1px solid rgba(12, 155, 136, 0.15);
  box-shadow: 0 10px 25px rgba(12, 155, 136, 0.1);
}

.card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.2s; }
.card:nth-child(3) { transition-delay: 0.3s; }
.card:nth-child(4) { transition-delay: 0.4s; }
.card:nth-child(5) { transition-delay: 0.5s; }
.card:nth-child(6) { transition-delay: 0.6s; }

.card::before, .post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover::before, .post-card:hover::before {
  transform: scaleX(1);
}

.card:hover, .post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
  transition: var(--transition);
  animation: fadeInUp 0.3s ease;
}

.services-alt .card:hover {
  border-color: var(--brand);
  box-shadow: 0 15px 35px rgba(12, 155, 136, 0.2);
}

.card .icon-wrap {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d6eee7, #f4f7f1);
  color: var(--brand);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.card .icon-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.card:hover .icon-wrap::after {
  transform: translateX(100%);
}

.card:hover .icon-wrap {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fafffd;
  transform: scale(1.08) rotate(4deg);
}

.card h3 {
  margin: .25rem 0 .5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  font-size: 1.25rem;
}

.card:hover h3 {
  color: var(--brand);
}

.card p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  transition: color 0.3s ease;
  flex-grow: 1;
}

.card:hover p {
  color: var(--text);
}

.link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
  position: relative;
  padding-right: 1.5rem;
  transition: all 0.3s ease;
}

.link::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.link:hover {
  color: var(--brand-2);
  padding-right: 1.8rem;
}

.link:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(3px);
}

.chips {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  padding-bottom: .5rem;
}

.chips-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

.chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.chip-item {
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  border: 1px solid #bfdbfe;
  color: #0369a1;
  border-radius: 16px;
  padding: 1rem;
  transition: all .3s ease;
  font-weight: 600;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  touch-action: manipulation;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.chip-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.chip-item:hover::before {
  transform: translateX(100%);
}

.chip-icon {
  margin-bottom: 0.5rem;
  color: var(--brand);
  transition: all .3s ease;
}

.chip-label {
  font-size: 0.9rem;
  line-height: 1.3;
}

.chip-item:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(12, 155, 136, 0.3);
  transition: var(--transition);
}

.chip-item:hover .chip-icon {
  color: #fff;
  transform: scale(1.2);
}

.industries-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 10px 30px rgba(0,0,0,.05);
}

.industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 25%, rgba(12, 155, 136, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 85% 75%, rgba(249, 115, 22, 0.1) 0%, transparent 25%);
  pointer-events: none;
}

.industries-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.industries-section .section-header.animate {
  opacity: 1;
  transform: translateY(0);
}

.industries-section .section-header h2 {
  color: #0f2d44;
  margin-bottom: 0.5rem;
}

.industries-section .section-header p {
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
}

.chips-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.industries-section.animate .chips-container {
  opacity: 1;
  transform: translateY(0);
}

.chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.chip-item {
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  border: 1px solid #bfdbfe;
  color: #0369a1;
  border-radius: 16px;
  padding: 1rem;
  transition: all .3s ease;
  font-weight: 600;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  touch-action: manipulation;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.chip-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.chip-item:nth-child(1) { transition-delay: 0.1s; }
.chip-item:nth-child(2) { transition-delay: 0.2s; }
.chip-item:nth-child(3) { transition-delay: 0.3s; }
.chip-item:nth-child(4) { transition-delay: 0.4s; }
.chip-item:nth-child(5) { transition-delay: 0.5s; }
.chip-item:nth-child(6) { transition-delay: 0.6s; }
.chip-item:nth-child(7) { transition-delay: 0.7s; }
.chip-item:nth-child(8) { transition-delay: 0.8s; }

.chip-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.chip-item:hover::before {
  transform: translateX(100%);
}

.chip-icon {
  margin-bottom: 0.5rem;
  color: var(--brand);
  transition: all .3s ease;
}

.chip-label {
  font-size: 0.9rem;
  line-height: 1.3;
}

.chip-item:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(12, 155, 136, 0.3);
  transition: var(--transition);
}

.chip-item:hover .chip-icon {
  color: #fff;
  transform: scale(1.2);
}

.industries-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.industries-section .section-header h2 {
  color: #0f2d44;
  margin-bottom: 0.5rem;
}

.industries-section .section-header p {
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checks li {
  position: relative;
  padding-inline-start: 1.6rem;
  margin: .4rem 0;
}

.checks li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--success);
  font-weight: bold;
}

.stat-card {
  display: grid;
  gap: 1rem;
}

.stat {
  display: grid;
  gap: .2rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
}

.stat-label {
  color: var(--muted);
}

.post-card .tag {
  display: inline-block;
  font-size: .75rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.post-card h3 {
  margin: .35rem 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.post-card p {
  color: var(--muted);
  margin: 0 0 .75rem;
}

.quote {
  font-style: normal;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  position: relative;
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
}

.quote::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--brand);
  opacity: .15;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote p {
  margin: 0 0 .75rem;
  font-size: 1.05rem;
}

.quote footer {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}

.cta-banner {
  background: linear-gradient(135deg, #103a40 0%, #0c9b88 55%, #0a7f71 100%);
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: -20% 50% auto -20%;
  height: 140%;
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.25), transparent 65%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: auto -30% -40% 45%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(12, 155, 136, 0.28), transparent 70%);
  pointer-events: none;
}

.cta-section .cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.cta-section .cta-copy {
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

.cta-section .cta-copy h2 {
  margin: 0;
  color: #fff;
}

.cta-section .cta-copy p {
  margin: 0;
  color: rgba(241, 245, 249, 0.9);
}

.cta-section .eyebrow {
  color: rgba(148, 197, 255, 0.95);
}

.cta-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.cta-highlights li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(241, 245, 249, 0.9);
}

.cta-highlights li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.9);
  text-shadow: 0 0 8px rgba(12, 155, 136, 0.7);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.btn.on-dark {
  background: #fff;
  color: var(--brand);
  border: 2px solid #fff;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn.on-dark:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.3);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.35);
  color: rgba(248, 250, 252, 0.85);
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
  transform: translateY(-3px);
  background: rgba(248, 250, 252, 0.2);
  color: #fff;
}

.cta-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: 0 25px 55px rgba(14, 69, 62, 0.18);
  border: 1px solid rgba(229, 216, 199, 0.9);
  display: grid;
  gap: 1.2rem;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(12, 155, 136, 0.12);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-slot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.slot-day {
  font-size: 1rem;
  font-weight: 700;
  color: #0f2d44;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.slot-count {
  font-size: 0.95rem;
  color: var(--brand);
  font-weight: 600;
}

.cta-card p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
}

.cta-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.cta-meta li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.meta-label {
  font-weight: 700;
  color: #0f2d44;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.meta-value {
  color: #475569;
  font-size: 0.95rem;
  text-align: right;
  max-width: 220px;
}

.cta-assurance {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: calc(var(--radius) - 8px);
  background: rgba(240, 249, 255, 0.85);
  color: #0f2d44;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.assurance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(12, 155, 136, 0.35);
}

@media (max-width: 900px) {
  .cta-section .cta-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .meta-value {
    text-align: left;
    max-width: none;
  }

  .cta-meta li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}


.contact-section {
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 10% auto 15% -15%;
  width: 320px;
  background: radial-gradient(circle, rgba(12, 155, 136, 0.12), transparent 70%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.8rem;
}

.contact-info h2 {
  margin: 0;
}

.contact-info p {
  margin: 0;
  color: #475569;
  max-width: 32rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: calc(var(--radius) - 4px);
  padding: 1.2rem 1.3rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(12, 155, 136, 0.22);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(12, 155, 136, 0.14);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(12, 155, 136, 0.28);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-body {
  display: grid;
  gap: 0.35rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-width: 0;
}

.contact-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #0f2d44;
}

.contact-card-body a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
  overflow-wrap: break-word;
}

.contact-card-body a:hover {
  color: var(--brand);
}

.contact-card-body small {
  color: #64748b;
}

.contact-card-body address {
  font-style: normal;
  color: var(--navy);
  line-height: 1.6;
}

.contact-assist {
  background: rgba(12, 155, 136, 0.12);
  border-radius: calc(var(--radius) - 6px);
  padding: 1.2rem 1.4rem;
  display: grid;
  gap: 0.65rem;
  border: 1px solid rgba(12, 155, 136, 0.28);
  color: #123c42;
  max-width: 32rem;
}

.assist-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: #0f2d44;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.assist-pill span {
  color: var(--brand);
  font-size: 1rem;
}

.contact-assist p {
  margin: 0;
  color: #3f565c;
}

.contact-assist a {
  color: var(--brand);
  font-weight: 600;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(2rem, 4vw, 2.6rem);
  border-radius: var(--radius);
  border: 1px solid rgba(229, 216, 199, 0.9);
  box-shadow: 0 28px 60px rgba(14, 69, 62, 0.16);
}

.contact-form {
  display: grid;
  gap: 1.6rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.2rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field label {
  font-weight: 600;
  color: #0f2d44;
  font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: rgba(248, 250, 252, 0.8);
  padding: 0.95rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--brand);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(12, 155, 136, 0.18);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #475569;
  cursor: pointer;
}

.checkbox input {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  border-radius: 6px;
  accent-color: var(--brand);
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

@media (max-width: 1180px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .header-top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    text-align: left;
  }

  .header-top-actions {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .header-top-phone {
    font-size: 0.9rem;
  }

  .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .brand-tagline {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  .nav-main {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    order: -1;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .checkbox {
    align-items: flex-start;
  }

  .checkbox input {
    margin-top: 0.2rem;
  }
}

/* ==================== Value Section ==================== */
.value-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: start;
}

.value-left {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
}

.value-left .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.value-left .display-sm {
  color: white;
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.3;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--brand);
  letter-spacing: .12em;
  font-weight: 800;
  margin: 0 0 .5rem;
  font-size: .85rem;
}

.value-right {
  display: grid;
  gap: 1rem;
}

.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1.25rem;
  background: linear-gradient(135deg, #f4eee2, #faf5eb);
  border: 1px solid rgba(12, 155, 136, 0.18);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all .3s ease;
}

.value-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 155, 136, 0.35);
  background: linear-gradient(135deg, #efe2cd, #f6ecda);
}

.value-num {
  font-family: Georgia, Times, serif;
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.value-copy h3 {
  margin: 0 0 .25rem;
  font-size: 1.15rem;
  color: #143c52;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.value-copy p {
  margin: 0;
  color: var(--muted);
}

/* ==================== Footer ==================== */
.site-footer {
  padding: 3rem 0;
  border-top: none;
  background: linear-gradient(135deg, #0f322f 0%, #144a52 100%);
  color: #e2f1f0;
  position: relative;
  overflow: hidden;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 20%, rgba(12, 155, 136, 0.18) 0%, transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(31, 95, 118, 0.16) 0%, transparent 28%);
  pointer-events: none;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 155, 136, 0.55), transparent);
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: grid;
  gap: .5rem;
}

.brand-foot {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.brand-foot span {
  font-weight: 700;
}

.foot-note {
  color: #b9cdd3;
  margin: 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  border-top: 1px dashed rgba(255,255,255,.18);
  padding-top: 1.25rem;
}

.foot-col h4 {
  margin: 0 0 .5rem;
  font-size: .95rem;
  color: #5fe0d7;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}

.foot-col a {
  color: #d7eef0;
  text-decoration: none;
  transition: color .2s ease;
}

.foot-col a:hover {
  color: #98fff7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1rem;
  flex-wrap: wrap;
}

.newsletter {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.newsletter input {
  border: 1px solid rgba(255,255,255,.2);
  background: #0f2f39;
  color: #e8f4f4;
  border-radius: 999px;
  padding: .6rem .9rem;
  min-width: 200px;
}

.newsletter input::placeholder {
  color: #94b8bf;
}

.copyright {
  color: #94b8bf;
  margin: 0;
}

/* ==================== Animations ==================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Additional animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* ==================== Overlay ==================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==================== Scrollbar ==================== */
.scroll-x {
  scrollbar-width: thin;
  scrollbar-color: rgba(14,165,163,.3) transparent;
}

.scroll-x::-webkit-scrollbar {
  height: 8px;
}

.scroll-x::-webkit-scrollbar-thumb {
  background: rgba(14,165,163,.3);
  border-radius: 999px;
}

.scroll-x::-webkit-scrollbar-thumb:hover {
  background: rgba(14,165,163,.5);
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-art {
    order: -1;
    min-height: 280px;
  }
  
  .people-grid {
    grid-template-columns: repeat(3, 90px);
    grid-auto-rows: 90px;
    gap: 14px;
  }
  
  .tile {
    font-size: 0.65rem;
    padding: 5px;
  }
  
  .two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-left {
    padding: 2rem;
  }
  
  .value-left .display-sm {
    font-size: clamp(24px, 4vw, 36px);
  }
  
  .section-header h2::after {
    bottom: -8px;
    width: 50px;
    height: 3px;
  }
  
  .card, .post-card, .quote, .stat-card {
    padding: 1.5rem;
  }
  
  .card h3 {
    font-size: 1.15rem;
  }
  
  .submenu {
    grid-template-columns: 1fr 1fr;
    min-width: 360px;
  }
  
  .services-alt {
    border-radius: 0 0 30px 30px;
  }
  
  .services-alt .card {
    padding: 1.5rem;
  }
  
  .pad-xl { padding: 5rem 0; }
  .pad-lg { padding: 4rem 0; }
  
  /* Improved touch targets */
  .menu-link {
    padding: .75rem 1rem;
    font-size: 1rem;
  }
  
  .btn {
    padding: .85rem 1.4rem;
    font-size: 1rem;
  }
  
  .card, .post-card, .quote, .stat-card {
    padding: 1.75rem;
  }
  
  .chips-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
  }
  
  .chip-item {
    min-height: 70px;
    padding: 0.8rem;
  }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 720px) {
  /* Container */
  .container {
    width: 90%;
  }
  
  /* Header Adjustments */
  .header-top {
    display: none;
  }

  .header-inner {
    padding: 0.75rem 0;
    min-height: 70px;
    gap: 0.75rem;
  }

  .brand-block {
    flex: 1 1 auto;
    width: auto;
    align-items: flex-start;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-left: auto;
  }

  body.menu-open .nav-toggle {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(12, 155, 136, 0.3);
  }

  body.menu-open .nav-toggle .bar {
    opacity: 0;
  }

  body.menu-open .nav-toggle::before,
  body.menu-open .nav-toggle::after {
    background: #ffffff;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    z-index: 100;
    background: linear-gradient(180deg, #0f1f2d 0%, #10364a 45%, #0b1f2b 100%);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .nav-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .site-nav .menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
  }

  .site-nav .menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav .menu-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.1rem 1.3rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #f8fafc;
    border-radius: 12px;
    text-align: left;
    background: transparent;
    border: none;
    transition: background 0.2s ease, transform 0.2s ease;
    min-height: 48px;
  }

  .site-nav .menu-link::before {
    content: none;
  }

  .site-nav .menu-link:hover,
  .site-nav .menu-link:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateX(6px);
  }
  
  /* Mobile Submenu */
  .has-submenu {
    position: static;
  }
  
  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    border: none;
    box-shadow: none;
    padding: 0;
    grid-template-columns: 1fr;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(0,0,0,.15);
    border-radius: 0;
    margin: 0;
    transition: max-height .3s ease;
  }
  
  .has-submenu.open > .submenu {
    max-height: 800px;
  }
  
  .submenu .submenu-col {
    gap: 0;
    display: flex;
    flex-direction: column;
  }
  
  .submenu-heading {
    color: rgba(255,255,255,.5);
    margin: 0;
    padding: .8rem 1.5rem .4rem 1.5rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  
  .submenu a {
    color: rgba(255,255,255,.9);
    padding: .7rem 1.5rem .7rem 1.5rem;
    border-radius: 0;
    font-weight: 400;
    font-size: 1rem;
    display: block;
    transition: all .2s ease;
    min-height: 44px; /* Better touch target */
  }
  
  .submenu a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
    padding-left: 2rem;
  }
  
  /* Submenu Arrow - Triangle */
  .has-submenu > .menu-link {
    position: relative;
  }
  
  .has-submenu > .menu-link::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--brand);
    transform: rotate(0deg);
    transition: transform .3s ease;
    position: absolute;
    right: 1.5rem;
  }
  
  .has-submenu.open > .menu-link::after {
    transform: rotate(180deg);
  }
  
  .nav-cta {
    display: grid;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: auto;
  }

  .nav-hotline {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    color: #e2f1ff;
  }

  .nav-hotline-text,
  .nav-hotline-text strong,
  .nav-hotline-text span {
    color: #e2f1ff;
  }

  .nav-hotline-text span {
    opacity: 0.85;
  }

  .nav-cta .btn.primary {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    font-size: 1.05rem;
    box-shadow: none;
  }
  
  /* Prevent Body Scroll When Menu Open */
  html.menu-open,
  body.menu-open {
    overflow: hidden;
  }
  
  /* Grids */
  .cards-3 {
    grid-template-columns: 1fr;
  }
  
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Padding Adjustments */
  .pad-xl { padding: 3.5rem 0; }
  .pad-lg { padding: 2.5rem 0; }
  .pad-md { padding: 2rem 0; }
  
  /* Hero */
  .hero-inner {
    padding: 3rem 0 2.5rem;
  }
  
  .people-grid {
    grid-template-columns: repeat(3, 70px);
    grid-auto-rows: 70px;
    gap: 10px;
  }
  
  .tile {
    border-radius: 20px;
    font-size: 0.55rem;
    padding: 3px;
  }
  
  .services-alt {
    border-radius: 0 0 20px 20px;
    padding: 3rem 0;
  }
  
  .services-alt .section-header {
    margin-bottom: 2rem;
  }
  
  .services-alt .card {
    padding: 1.25rem;
  }
  
  /* Typography */
  .display {
    font-size: clamp(28px, 8vw, 48px);
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px; /* Better touch target */
  }
  
  .trust-list {
    font-size: .9rem;
    justify-content: center;
  }
  
  /* Footer */
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  
  .newsletter {
    width: 100%;
  }
  
  .newsletter input {
    flex: 1;
    min-width: 0;
    min-height: 44px; /* Better touch target */
  }
  
  .copyright {
    text-align: center;
  }
  
  /* Improved touch interactions */
  .btn {
    min-height: 44px; /* Minimum touch target size */
  }
  
  .form-field input,
  .form-field textarea {
    min-height: 44px; /* Better touch targets */
  }
  
  .chip {
    min-height: 44px; /* Better touch targets */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .chips-container {
    padding: 0 5%;
  }
  
  .chips-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.6rem;
  }
  
  .chip-item {
    min-height: 60px;
    padding: 0.7rem;
  }
  
  .chip-label {
    font-size: 0.85rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
  
  .people-grid {
    grid-template-columns: repeat(3, 60px);
    grid-auto-rows: 60px;
    gap: 8px;
  }
  
  .tile {
    font-size: 0.5rem;
    padding: 2px;
  }
  
  .value-num {
    font-size: 42px;
  }
  
  .menu-link {
    font-size: 1.1rem;
  }
  
  /* Ensure proper spacing on small screens */
  .hero-inner {
    padding: 2rem 0;
  }
  
  .pad-xl { padding: 2.5rem 0; }
  .pad-lg { padding: 2rem 0; }
  .pad-md { padding: 1.5rem 0; }
  
  .contact-panel {
    padding: 1.8rem;
  }
  
  .hero-cta .btn {
    padding: 1rem;
  }
  
  .chips-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
  }
  
.chip-item {
  min-height: 55px;
  padding: 0.6rem;
}

.chip-label {
  font-size: 0.8rem;
}
}

/* ==================== Service Article Page ==================== */
.article-page {
  background: var(--bg);
  color: var(--text);
}

.service-hero {
  background: linear-gradient(135deg, #f3ebdc 0%, #f9f4ea 100%);
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(3rem, 6vw, 4rem);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 14px 32px rgba(14, 69, 62, 0.08);
  margin-bottom: clamp(2rem, 6vw, 3.5rem);
}

.service-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2.5rem, 6vw, 3.5rem);
  align-items: start;
}

.service-hero-copy {
  display: grid;
  gap: 1.5rem;
}

.service-hero-copy h1 {
  margin: 0;
  color: var(--navy);
}

.service-hero-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: calc(var(--radius) - 4px);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: 0 22px 45px rgba(14, 69, 62, 0.16);
  border: 1px solid rgba(229, 216, 199, 0.9);
  display: grid;
  gap: 1.25rem;
}

.service-hero-card p {
  margin: 0;
  color: #35545c;
  font-style: italic;
}

.service-hero-stat {
  display: grid;
  gap: 0.25rem;
}

.service-hero-stat + .service-hero-stat {
  border-top: 1px solid rgba(229, 216, 199, 0.9);
  padding-top: 1rem;
  margin-top: 1rem;
}

.service-hero-stat .stat-number {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--brand);
}

.service-hero-stat .stat-caption {
  font-size: 0.95rem;
  color: #3f565c;
}

.article-content {
  padding-bottom: clamp(3rem, 6vw, 4rem);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 3rem);
}

.article-sidebar {
  display: grid;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--header-offset, 120px) + 1rem);
  align-self: start;
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(229, 216, 199, 0.9);
  box-shadow: 0 16px 38px rgba(14, 69, 62, 0.12);
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.download-card {
  gap: 1rem;
  background: linear-gradient(160deg, rgba(12, 155, 136, 0.12), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(12, 155, 136, 0.22);
  position: sticky;
  top: calc(var(--header-offset, 120px) + 1rem);
}

.download-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  background: rgba(12, 155, 136, 0.12);
  border: 1px solid rgba(12, 155, 136, 0.25);
  color: var(--brand);
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.download-pill:hover {
  transform: translateY(-2px);
  background: rgba(12, 155, 136, 0.18);
  box-shadow: 0 14px 28px rgba(12, 155, 136, 0.22);
}

.download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(12, 155, 136, 0.2);
}

.download-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 1rem;
  color: var(--navy);
}

.download-text small {
  font-size: 0.85rem;
  color: #3f565c;
}

.sidebar-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.sidebar-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  color: #3f565c;
  font-size: 0.95rem;
}

.article-body {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.article-body section h2 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.article-body section p {
  color: #385158;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
  color: #3f565c;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 1.5rem;
}

.article-callout {
  background: linear-gradient(135deg, rgba(12, 155, 136, 0.12), rgba(243, 230, 214, 0.95));
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.5rem);
  border: 1px solid rgba(12, 155, 136, 0.2);
  box-shadow: 0 18px 42px rgba(14, 69, 62, 0.12);
  display: grid;
  gap: 1rem;
}

.callout-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.8rem);
}

.callout-number {
  display: block;
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 800;
  color: var(--brand);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(229, 216, 199, 0.9);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(229, 216, 199, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(14, 69, 62, 0.08);
  overflow: hidden;
}

.faq-item[open] {
  box-shadow: 0 14px 30px rgba(12, 155, 136, 0.16);
  border-color: rgba(12, 155, 136, 0.35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-body {
  padding: 0 1.25rem 1.1rem;
  color: #3f565c;
}

.faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  border-radius: 999px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--brand);
  transition: transform 0.25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.article-cta {
  background: linear-gradient(135deg, #103a40 0%, #0c9b88 100%);
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.article-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 2.8rem);
  color: #f8fafc;
}

.article-cta-inner h2 {
  margin: 0 0 0.5rem;
  color: #f8fafc;
}

.article-cta-inner p {
  margin: 0;
  color: rgba(226, 240, 236, 0.85);
}

.article-cta .btn.primary {
  box-shadow: 0 18px 35px rgba(12, 155, 136, 0.32);
}

@media (max-width: 1100px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-sidebar {
    position: relative;
    top: 0;
    order: 2;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 900px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
  }

  .service-hero-card {
    order: -1;
  }

  .callout-points {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 640px) {
  .service-hero {
    border-radius: 0 0 20px 20px;
  }

  .service-hero-card {
    text-align: left;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Insights section refresh */
.insights-section .insights-inner {
  display: grid;
  gap: 3rem;
}

.insights-section .insights-head {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.insights-section .insights-head p {
  margin: 0;
  color: #475569;
}

.insights-section .insights-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.insights-section .insights-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: #0f2d44;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.insights-section .insights-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.6;
  transform: scale(0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.insights-section .insights-chip:hover {
  transform: translateY(-3px);
  background: rgba(12, 155, 136, 0.12);
  color: var(--brand);
}

.insights-section .insights-chip:hover::before,
.insights-section .insights-chip.active::before {
  opacity: 1;
  transform: scale(1);
}

.insights-section .insights-chip.active {
  background: linear-gradient(135deg, rgba(12, 155, 136, 0.18), rgba(31, 95, 118, 0.3));
  color: #07415d;
  box-shadow: inset 0 0 0 1px rgba(12, 155, 136, 0.35);
}

.insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.insight-card {
  background: linear-gradient(135deg, rgba(16, 58, 63, 0.92), rgba(12, 155, 136, 0.45));
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 2.7rem);
  color: #f8fafc;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.3rem;
  box-shadow: 0 28px 60px rgba(13, 58, 55, 0.25);
}

.insight-card::after {
  content: '';
  position: absolute;
  inset: 30% -40% -20% auto;
  width: 320px;
  background: radial-gradient(circle, rgba(12, 155, 136, 0.35), transparent 70%);
  transform: rotate(20deg);
  pointer-events: none;
}

.insight-figure {
  height: 220px;
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(135deg, rgba(27, 99, 112, 0.35), rgba(12, 155, 136, 0.18));
  border: 1px solid rgba(180, 209, 202, 0.35);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.insight-figure::before,
.insight-figure::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.18);
  filter: blur(0);
}

.insight-figure::before {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.insight-figure::after {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: -20px;
}

.insight-badge {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #e0f2fe;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(226, 232, 240, 0.8);
}

.insight-meta .meta-tag {
  background: rgba(15, 23, 42, 0.32);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.insight-meta .meta-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.insight-meta .meta-time::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(226, 240, 236, 0.85);
}

.insight-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0;
  line-height: 1.25;
}

.insight-card p {
  margin: 0;
  color: rgba(226, 240, 236, 0.85);
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #f8fafc;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: fit-content;
  transition: transform 0.3s ease, background 0.3s ease;
}

.insight-link::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.insight-link:hover::after {
  transform: translate(4px, -1px) rotate(45deg);
}
.insight-rail {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(14, 69, 62, 0.12);
  border: 1px solid rgba(229, 216, 199, 0.9);
}

.insight-rail::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(12, 155, 136, 0.55), rgba(12, 155, 136, 0));
}

.insight-item {
  display: grid;
  align-items: start;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.insight-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.insight-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(12, 155, 136, 0.85);
  box-shadow: 0 0 0 4px rgba(12, 155, 136, 0.12);
  position: relative;
  top: 4px;
}

.insight-item-body {
  display: grid;
  gap: 0.45rem;
}

.insight-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}

.insight-item-meta .insight-tag {
  font-weight: 700;
  color: var(--brand);
}

.insight-item-meta .insight-time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.insight-item-meta .insight-time::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(226, 240, 236, 0.5);
}

.insight-item h4 {
  margin: 0;
  font-size: 1.05rem;
  color: #0f2d44;
}

.insight-item p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.insight-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.insight-item-link span {
  transition: transform 0.3s ease;
}

.insight-item-link:hover {
  color: var(--navy);
  transform: translateX(4px);
}

.insight-item-link:hover span {
  transform: translateX(4px);
}

@media (max-width: 1080px) {
  .insights-layout {
    grid-template-columns: 1fr;
  }

  .insight-rail {
    padding-left: 2rem;
  }

  .insight-rail::before {
    left: 1rem;
  }
}

@media (max-width: 720px) {
  .insight-card {
    padding: 2rem;
  }

  .insight-figure {
    height: 190px;
  }

  .insight-rail {
    padding: 1.25rem 1.25rem 1.25rem 1.7rem;
  }

  .insight-rail::before {
    top: 1.75rem;
    bottom: 1.75rem;
  }

  .insight-item {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
  }

  .insight-node {
    margin-top: 0.35rem;
  }

  .insight-item-link {
    grid-column: 2;
    justify-self: flex-start;
  }
}

@media (max-width: 520px) {
  .insights-section .insights-chips {
    gap: 0.4rem;
  }

  .insights-section .insights-chip {
    padding: 0.38rem 0.85rem;
    font-size: 0.8rem;
  }

  .insight-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* Testimonials refresh */
.testimonials .testimonials-inner {
  display: grid;
  gap: 3rem;
}

.testimonials .testimonials-head {
  max-width: 460px;
  display: grid;
  gap: 1.4rem;
}

.testimonials .testimonials-head p {
  margin: 0;
  color: #475569;
}

.testimonial-metric {
  background: rgba(12, 155, 136, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  gap: 0.35rem;
  width: fit-content;
  box-shadow: inset 0 0 0 1px rgba(12, 155, 136, 0.35);
}

.testimonial-metric .metric-value {
  font-size: clamp(2.8rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.testimonial-metric .metric-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f2d44;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-metric .metric-subtext {
  font-size: 0.85rem;
  color: #475569;
}

.testimonials-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
}

.testimonial-card.feature {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(12, 155, 136, 0.45));
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 2.8rem);
  color: #f8fafc;
  display: grid;
  gap: 1.65rem;
  box-shadow: 0 30px 65px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}

.testimonial-card.feature::after {
  content: '';
  position: absolute;
  inset: 45% -45% -35% auto;
  width: 360px;
  background: radial-gradient(circle, rgba(31, 95, 118, 0.32), transparent 70%);
  transform: rotate(18deg);
  pointer-events: none;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.85);
}

.testimonial-quote {
  margin: 0;
  font-size: clamp(1.45rem, 2.7vw, 1.9rem);
  line-height: 1.5;
  font-weight: 500;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  position: absolute;
  left: -0.75rem;
  top: -1.5rem;
  font-size: 4rem;
  color: rgba(148, 163, 184, 0.25);
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.author-meta {
  display: grid;
  gap: 0.2rem;
}

.author-name {
  font-weight: 700;
  color: inherit;
}

.author-role {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.7);
}

.testimonial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #f8fafc;
  text-decoration: none;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(248, 250, 252, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-link span {
  transition: transform 0.3s ease;
}

.testimonial-link:hover {
  transform: translateY(-4px);
  background: rgba(248, 250, 252, 0.18);
}

.testimonial-link:hover span {
  transform: translateX(4px);
}

.testimonial-list {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.2rem);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: grid;
  gap: 1.35rem;
}

.testimonial-item {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.testimonial-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.testimonial-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 155, 136, 0.12);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-family: Georgia, serif;
  box-shadow: inset 0 0 0 1px rgba(12, 155, 136, 0.35);
}

.testimonial-item p {
  margin: 0;
  color: #1f2937;
  line-height: 1.7;
}

.testimonial-item footer {
  display: grid;
  gap: 0.2rem;
}

.testimonial-item footer .author-name {
  color: #0f2d44;
}

.testimonial-item footer .author-role {
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .testimonials-content {
    grid-template-columns: 1fr;
  }

  .testimonial-card.feature {
    order: -1;
  }
}

@media (max-width: 640px) {
  .testimonial-metric {
    width: 100%;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-quote::before {
    left: -0.35rem;
  }
}
/* Why us section refresh */
.why-us .why-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 3.75rem);
  padding: clamp(2.75rem, 6vw, 3.8rem);
  background: linear-gradient(135deg, rgba(12, 155, 136, 0.12), rgba(250, 246, 236, 0.95) 45%, rgba(31, 95, 118, 0.12) 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 55px rgba(12, 77, 68, 0.14);
}

.why-us .why-inner::before {
  content: '';
  position: absolute;
  inset: -35% 50% auto -20%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(12, 155, 136, 0.28), transparent 65%);
  opacity: 0.42;
  pointer-events: none;
}

.why-us .why-inner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -18%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(31, 95, 118, 0.2), transparent 70%);
  pointer-events: none;
}

.why-us .why-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.why-us .why-copy p {
  margin: 0;
  color: #3f565c;
  max-width: 32rem;
}

.why-us .why-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.why-us .why-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: rgba(12, 155, 136, 0.14);
  color: #0f2d44;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  box-shadow: inset 0 0 0 1px rgba(12, 155, 136, 0.28);
}

.why-us .why-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(12, 155, 136, 0.2);
}

.why-us .why-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  border-radius: calc(var(--radius) - 6px);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(10px);
}

.why-us .stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.why-us .stat-number {
  font-size: clamp(2.25rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.why-us .stat-caption {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.why-us .why-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.why-us .why-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: calc(var(--radius) - 2px);
  padding: 1.7rem;
  box-shadow: 0 22px 48px rgba(14, 69, 62, 0.12);
  border: 1px solid rgba(229, 216, 199, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  --card-offset: 0px;
  transform: translateY(var(--card-offset));
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-us .why-card::after {
  content: '';
  position: absolute;
  inset: auto -30% -40% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(12, 155, 136, 0.22), transparent 70%);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-us .why-card:nth-child(2) {
  --card-offset: 32px;
}

.why-us .why-card:nth-child(3) {
  --card-offset: -16px;
}

.why-us .why-card:hover {
  transform: translateY(calc(var(--card-offset) - 12px));
  box-shadow: 0 30px 60px rgba(12, 77, 68, 0.2);
  border-color: rgba(12, 155, 136, 0.3);
}

.why-us .why-card:hover::after {
  opacity: 1;
}

.why-us .why-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(12, 155, 136, 0.2), rgba(31, 95, 118, 0.25));
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(12, 155, 136, 0.28);
}

.why-us .why-icon svg {
  width: 26px;
  height: 26px;
}

.why-us .why-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--navy);
}

.why-us .why-card p {
  margin: 0;
  color: #3f565c;
  line-height: 1.6;
}

.why-us .why-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.why-us .why-points li {
  position: relative;
  padding-inline-start: 1.4rem;
  color: #4b5563;
}

.why-us .why-points li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(12, 155, 136, 0.2);
}

@media (max-width: 1100px) {
  .why-us .why-inner {
    grid-template-columns: 1fr;
  }

  .why-us .why-card:nth-child(2),
  .why-us .why-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 900px) {
  .why-us .why-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .why-us .why-inner {
    padding: 2.5rem 1.75rem;
  }

  .why-us .why-stats {
    grid-template-columns: 1fr;
  }
}









