/* Sunset 23 — stronger visual design */
:root {
  --navy: #0F3A5F;
  --navy-mid: #1A4F7A;
  --navy-light: #2A6BA3;
  --accent: #C4A35A;
  --accent-soft: rgba(196, 163, 90, 0.15);
  --gray: #5A6570;
  --gray-light: #F4F6F9;
  --border: #E5E9EF;
  --white: #FFFFFF;
  --text: #15202B;
  --shadow: 0 8px 30px rgba(15, 58, 95, 0.08);
  --shadow-sm: 0 2px 12px rgba(15, 58, 95, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy-mid); text-decoration: none; }
a:hover { color: var(--navy-light); }
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.35rem;
}
.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.logo span {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray);
}
.nav a:hover,
.nav a.active { color: var(--navy); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.45rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, background 0.15s, color 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 58, 95, 0.25);
}
.btn-primary:hover {
  background: var(--navy-mid);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  background: #f8fafc;
  color: var(--navy);
}
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(42, 107, 163, 0.35), transparent),
    linear-gradient(145deg, #0B2E4D 0%, #0F3A5F 45%, #163A5F 100%);
  color: var(--white);
  padding: 3.75rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.12), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(196, 163, 90, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.15rem;
}
.hero h1 {
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1rem;
  max-width: 16ch;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 1.08rem;
  opacity: 0.9;
  max-width: 34rem;
  margin-bottom: 1.85rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-note {
  margin-top: 1.65rem;
  font-size: 0.88rem;
  opacity: 0.7;
}
section { padding: 3.25rem 0; }
.section-title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 36rem;
  font-size: 1.02rem;
}
.bg-light { background: var(--gray-light); }
.paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.path-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.path-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
}
.path-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.path-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
  font-weight: 800;
}
.path-card p {
  color: var(--gray);
  flex: 1;
  margin-bottom: 1.35rem;
  font-size: 0.98rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.35rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(15, 58, 95, 0.2);
}
.step h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-weight: 800;
}
.step p {
  font-size: 0.95rem;
  color: var(--gray);
}
.qual-list {
  list-style: none;
  max-width: 38rem;
}
.qual-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
  font-size: 1rem;
}
.qual-list li:last-child { border-bottom: none; }
.qual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}
.qual-list li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 1.28rem;
  width: 0.45rem;
  height: 0.28rem;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: start;
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  max-width: 480px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #FAFBFC;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(42, 107, 163, 0.15);
  background: var(--white);
}
.form-group textarea {
  min-height: 110px;
  resize: vertical;
}
.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.85rem;
}
.site-footer {
  background: #0A2740;
  color: rgba(255, 255, 255, 0.82);
  padding: 2.75rem 0 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.footer-brand {
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: var(--white); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.78rem;
  opacity: 0.7;
  line-height: 1.5;
}
.disclaimer {
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 1.5rem;
  max-width: 40rem;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 1rem;
    gap: 0.85rem;
  }
  .nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .hero { padding: 2.75rem 0 3rem; }
  .hero h1 { max-width: none; }
  section { padding: 2.5rem 0; }
  .path-card { padding: 1.4rem 1.25rem; }
}

/* Images */
.img-block {
  margin: 0 0 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.img-block img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.img-feature {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 0;
  max-width: 520px;
}

.img-feature img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  object-position: center 20%;
  aspect-ratio: 4 / 3;
}



.hero-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-with-image {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .hero-with-image .hero-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  }
  .hero-with-image .hero-visual img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 15%;
  }
}

@media (max-width: 899px) {
  .hero-with-image .hero-visual {
    border-radius: 12px;
    overflow: hidden;
    order: -1;
  }
  .hero-with-image .hero-visual img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 15%;
  }
}

.card-img {
  margin: -1.65rem -1.5rem 1.15rem;
  height: 230px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}

.path-card.has-img {
  padding-top: 0;
}

.path-card.has-img::before {
  z-index: 2;
}


/* Clean page photo band (non-home) */
.page-photo {
  padding: 2rem 0 0.5rem;
  background: var(--white);
}
.page-photo .img-feature {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-photo .img-feature {
    margin-left: 0;
  }
}

.form-intro {
  font-size: 0.98rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Nav Contact button — white text on blue */
.nav a.btn-primary,
.nav .btn-primary {
  color: #ffffff !important;
  background: var(--navy);
  border-color: var(--navy);
}
.nav a.btn-primary:hover,
.nav .btn-primary:hover {
  color: #ffffff !important;
  background: var(--navy-mid);
}

/* Contact path switcher */
.path-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.path-switch a {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  font-weight: 700;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: var(--white);
}
.path-switch a:hover,
.path-switch a.is-active {
  background: var(--navy);
  color: #fff;
}
.contact-panel {
  scroll-margin-top: 5rem;
}
.contact-panel + .contact-panel {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
