:root {
  --primary: #0a2540;
  --primary-light: #1a3a5c;
  --accent: #00c2a8;
  --accent-dark: #009b87;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-light: #e8edf5;
  --gray-mid: #8a9bb0;
  --gray-dark: #4a5568;
  --text-dark: #0d1b2a;
  --text-body: #374151;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 37, 64, 0.12);
  --shadow-lg: 0 24px 64px rgba(10, 37, 64, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--gray-dark);
  max-width: 640px;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mini-hero {
  background: linear-gradient(130deg, var(--primary), var(--primary-light));
  color: var(--white);
  min-height: 50vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.mini-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(0, 194, 168, 0.18), transparent 35%);
}

.mini-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.mini-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  margin-bottom: 8px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: var(--primary);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
}

.logo-mark {
  color: var(--accent);
  font-size: 0.9em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  background-color: var(--primary);
  color: var(--white);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 120L120 0M-30 90L90 -30M30 150L150 30'/%3E%3C/g%3E%3C/svg%3E");
}

.shape {
  position: absolute;
  border: 1px solid rgba(0, 194, 168, 0.3);
  background: rgba(0, 194, 168, 0.1);
  animation: float 8s ease-in-out infinite;
}

.shape.circle {
  border-radius: 50%;
}

.shape.s1 {
  width: 120px;
  height: 120px;
  top: 16%;
  right: 12%;
}

.shape.s2 {
  width: 70px;
  height: 70px;
  bottom: 22%;
  right: 28%;
  animation-delay: 1.2s;
}

.shape.s3 {
  width: 90px;
  height: 90px;
  left: 8%;
  bottom: 14%;
  animation-delay: 2.2s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 6vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  margin: 26px 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-illustration {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(0, 194, 168, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.chart-svg {
  width: 86%;
  max-width: 360px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  animation: float 2.2s ease-in-out infinite;
}

.trust-bar {
  background: var(--off-white);
  padding: 32px 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.trust-item {
  text-align: center;
  color: var(--gray-mid);
  transition: var(--transition);
}

.trust-item i {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.trust-item:hover {
  color: var(--accent);
}

.services-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid transparent;
  padding: 28px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 194, 168, 0.15);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.service-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
}

.counter {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 2.1rem;
}

.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list i {
  color: var(--accent);
  margin-top: 5px;
}

.process-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-grid::after {
  content: "";
  position: absolute;
  top: 33px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--gray-light);
  z-index: -1;
}

.process-step {
  text-align: center;
  background: var(--white);
  padding: 12px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
}

.testimonials {
  background: var(--primary);
  color: var(--white);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonial-track {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.testimonial-card .quote {
  font-size: 1.9rem;
  color: var(--accent);
}

.stars {
  color: #ffd369;
  margin: 10px 0;
}

.cta-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.3vw, 2.6rem);
}

.site-footer {
  background: #081c30;
  color: rgba(255, 255, 255, 0.84);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-title {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--accent);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 34px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.story-grid,
.contact-grid,
.service-detail,
.team-preview-grid,
.values-grid,
.team-grid {
  display: grid;
  gap: 24px;
}

.story-grid,
.contact-grid {
  grid-template-columns: 1.2fr 1fr;
}

.placeholder-block {
  min-height: 280px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--gray-light), var(--off-white));
  box-shadow: var(--shadow-sm);
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.timeline {
  border-left: 3px solid var(--gray-light);
  padding-left: 22px;
}

.timeline-item {
  margin-bottom: 24px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  left: -29px;
  top: 8px;
}

.team-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  background: var(--white);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 26px auto 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

.team-body {
  text-align: center;
  padding: 0 16px 20px;
}

.bio-overlay {
  position: absolute;
  inset: auto 0 0;
  background: rgba(10, 37, 64, 0.94);
  color: var(--white);
  padding: 16px;
  transform: translateY(100%);
  transition: var(--transition);
}

.team-card:hover .bio-overlay {
  transform: translateY(0);
}

.service-detail {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 36px;
}

.service-detail:nth-child(even) .service-text {
  order: 2;
}

.service-detail:nth-child(even) .placeholder-block {
  order: 1;
}

.service-text ul {
  list-style: disc;
  margin: 14px 0 20px 18px;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}

.form-group {
  position: relative;
  margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d2dcea;
  border-radius: var(--radius-sm);
  min-height: 48px;
  padding: 14px 12px 8px;
  font: inherit;
}

.form-group textarea {
  min-height: 130px;
}

.form-group label {
  position: absolute;
  left: 12px;
  top: 13px;
  color: var(--gray-mid);
  background: var(--white);
  padding: 0 5px;
  transition: var(--transition);
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select.has-value + label {
  top: -8px;
  font-size: 0.78rem;
}

.error-text {
  color: #d62828;
  font-size: 0.85rem;
  margin-top: 4px;
}

.status-message {
  margin-top: 12px;
  font-weight: 600;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  border: 1px solid var(--gray-light);
  padding: 10px;
}

.not-found {
  min-height: 100vh;
  padding-top: 130px;
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.floating-404 {
  position: absolute;
  font-size: clamp(4rem, 14vw, 12rem);
  color: rgba(0, 194, 168, 0.12);
  font-family: var(--font-heading);
}

.f404-a {
  top: 14%;
  left: 10%;
}

.f404-b {
  top: 34%;
  right: 9%;
}

.f404-c {
  bottom: 12%;
  left: 36%;
}

.not-found-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.not-found-code {
  background: linear-gradient(120deg, var(--accent), #74f7e5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 1;
}

.nf-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
