:root {
  --mys-primary: #00a9bf;
  --mys-primary-dark: #005e70;
  --mys-navy: #0d2430;
  --mys-ink: #111827;
  --mys-muted: #667085;
  --mys-line: #d7e4e7;
  --mys-soft: #eef8f9;
  --mys-white: #ffffff;
  --mys-black: #050708;
  --section-space: 112px;
}

* {
  border-radius: 0 !important;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mys-ink);
  background: var(--mys-white);
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

::selection {
  background: var(--mys-primary);
  color: var(--mys-white);
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--mys-muted);
  line-height: 1.75;
}

.section-pad {
  padding: var(--section-space) 0;
}

.section-pad-sm {
  padding: 82px 0;
}

.bg-soft {
  background: var(--mys-soft);
}

.bg-navy {
  background: var(--mys-navy);
  color: var(--mys-white);
}

.text-primary-mys {
  color: var(--mys-primary) !important;
}

.text-muted-mys {
  color: var(--mys-muted) !important;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--mys-primary-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 14px;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.section-title {
  color: var(--mys-navy);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: .98;
  letter-spacing:0px;
  font-weight: 900;
  margin-bottom: 20px;
}

.bg-navy .section-title,
.bg-navy p,
.bg-navy .section-kicker {
  color: var(--mys-white) !important;
}

.section-lead {
  max-width: 780px;
  font-size: 1.08rem;
}

.btn-mys {
  --bs-btn-padding-x: 26px;
  --bs-btn-padding-y: 14px;
  --bs-btn-font-weight: 800;
  --bs-btn-border-width: 2px;
  --bs-btn-border-color: var(--mys-primary);
  --bs-btn-bg: var(--mys-primary);
  --bs-btn-color: var(--mys-white);
  --bs-btn-hover-bg: var(--mys-navy);
  --bs-btn-hover-border-color: var(--mys-navy);
  --bs-btn-hover-color: var(--mys-white);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.btn-mys-outline {
  --bs-btn-padding-x: 26px;
  --bs-btn-padding-y: 14px;
  --bs-btn-font-weight: 800;
  --bs-btn-border-width: 2px;
  --bs-btn-border-color: #00a9bf;
  --bs-btn-bg: transparent;
  --bs-btn-color: #00a9bf;
  --bs-btn-hover-bg: #00a9bf;
  --bs-btn-hover-border-color: var(--mys-navy);
  --bs-btn-hover-color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.bg-navy .btn-mys-outline {
  --bs-btn-border-color: var(--mys-white);
  --bs-btn-color: var(--mys-white);
  --bs-btn-hover-bg: var(--mys-white);
  --bs-btn-hover-border-color: var(--mys-white);
  --bs-btn-hover-color: var(--mys-navy);
}

/* Header */
.topbar {
  background: var(--mys-navy);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  letter-spacing: .02em;
}

.topbar a:hover {
  color: var(--mys-primary);
}

.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(13, 36, 48, .1);
  transition: border-color .25s ease, background .25s ease;
}

.navbar-brand img {
  width: min(200px, 64vw);
  height: auto;
}

.navbar .nav-link {
  position: relative;
  color: var(--mys-navy);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 28px 14px !important;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 2px;
  background: var(--mys-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--mys-primary-dark);
}

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

.navbar-toggler {
  border: 2px solid var(--mys-navy);
  padding: 10px 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  padding: 148px 0 98px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(13,36,48,.94) 0%, rgba(13,36,48,.88) 48%, rgba(0,169,191,.16) 48%, rgba(0,169,191,.16) 100%),
    radial-gradient(circle at 82% 22%, rgba(0,169,191,.34), transparent 32%),
    var(--mys-navy);
  color: var(--mys-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -90px;
  width: 41vw;
  min-width: 420px;
  height: 100%;
  background: var(--mys-primary);
  clip-path: polygon(33% 0, 100% 0, 72% 100%, 0 100%);
  opacity: .94;
}

.hero .container {
  position: relative;
  z-index: 2;
}
/* 
.hero-copy {
  max-width: 760px;
} */

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #9af3ff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero-kicker::before {
  content: "";
  width: 44px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 930px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 118px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero h1 span {
  color: var(--mys-primary);
}

.hero p {
  max-width: 660px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-panel {
  position: relative;
  background: var(--mys-white);
  border: 1px solid rgba(255,255,255,.2);
  padding: 30px;
  margin-top: 48px;
}

.hero-panel strong {
  display: block;
  color: var(--mys-navy);
  font-size: 16px;
  margin-bottom: 8px;
}

.hero-panel p {
  color: var(--mys-muted);
  font-size: .95rem;
  margin-bottom: 0;
}

.hero-panel .icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--mys-white);
  background: var(--mys-primary);
  font-size: 24px;
  margin-bottom: 18px;
}

.hero-visual {
  position: relative;
  z-index: 3;
}

.hero-visual-card {
  position: relative;
  background: var(--mys-white);
  border: 12px solid rgba(255,255,255,.32);
  padding: 18px;
  margin-top: 8px;
}

.hero-visual-card img {
  width: 100%;
  display: block;
}

.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  margin-top: 42px;
}

.hero-stat {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.22);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat span {
  display: block;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 950;
  line-height: 1;
  color: var(--mys-primary);
}

.hero-stat small {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,.73);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
}

/* Service cards */
.service-card {
  position: relative;
  height: 100%;
  padding: 34px 30px 30px;
  background: var(--mys-white);
  border: 1px solid var(--mys-line);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 7px;
  height: calc(100% + 2px);
  background: var(--mys-primary);
  transform: scaleY(.25);
  transform-origin: top;
  transition: transform .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--mys-primary);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card .service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--mys-soft);
  color: var(--mys-primary-dark);
  font-size: 30px;
  margin-bottom: 26px;
}

.service-card h3 {
  color: var(--mys-navy);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mys-primary-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .1em;
}

.service-card a:hover {
  color: var(--mys-navy);
}

/* Advisor section */
.advisor-box {
  border: 1px solid var(--mys-line);
  background: var(--mys-white);
  padding: clamp(28px, 5vw, 56px);
}

.advisor-number {
  color: rgba(0,169,191,.18);
  font-weight: 950;
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: .75;
  letter-spacing: -.08em;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  color: var(--mys-ink);
  border-bottom: 1px solid var(--mys-line);
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list i {
  flex: 0 0 auto;
  color: var(--mys-primary-dark);
  font-size: 18px;
  margin-top: 3px;
}

.process-card {
  height: 100%;
  border: 1px solid rgba(255,255,255,.22);
  padding: 34px 28px;
  background: rgba(255,255,255,.04);
}

.process-card .step {
  color: var(--mys-primary);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 26px;
}

.process-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.process-card p {
  color: rgba(255,255,255,.72) !important;
  margin-bottom: 0;
}

/* Why cards */
.why-card {
  border-left: 4px solid var(--mys-primary);
  padding: 28px 28px 28px 32px;
  background: var(--mys-white);
  height: 100%;
}

.why-card h3 {
  color: var(--mys-navy);
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.why-card p {
  margin-bottom: 0;
}

.compare-table {
  border: 1px solid var(--mys-line);
}

.compare-table .row-line {
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  border-bottom: 1px solid var(--mys-line);
}

.compare-table .row-line:last-child {
  border-bottom: 0;
}

.compare-table .cell {
  padding: 22px;
}

.compare-table .cell:first-child {
  background: var(--mys-soft);
  color: var(--mys-navy);
  font-weight: 900;
  border-right: 1px solid var(--mys-line);
}

/* Testimonials */
.testimonial-card {
  height: 100%;
  padding: 32px 28px;
  background: var(--mys-white);
  border: 1px solid var(--mys-line);
}

.testimonial-card .quote-mark {
  font-family: Georgia, serif;
  display: block;
  color: var(--mys-primary);
  font-size: 64px;
  line-height: .72;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: var(--mys-ink);
  font-size: .98rem;
}

.testimonial-card .author {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--mys-line);
  color: var(--mys-navy);
  font-weight: 900;
}

.testimonial-card .location {
  display: block;
  color: var(--mys-muted);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

/* Quote form */
.quote-panel {
  position: relative;
  background: var(--mys-white);
  border: 1px solid var(--mys-line);
  padding: clamp(28px, 5vw, 56px);
}

.form-control,
.form-select {
  min-height: 56px;
  border: 1px solid var(--mys-line);
  color: var(--mys-navy);
  padding: 14px 16px;
}

textarea.form-control {
  min-height: 134px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--mys-primary);
}

.form-label {
  color: var(--mys-navy);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.contact-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  padding: 28px;
  height: 100%;
}

.contact-card i {
  color: var(--mys-primary);
  font-size: 27px;
  margin-bottom: 18px;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  color: rgba(255,255,255,.76) !important;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: var(--mys-black);
  color: var(--mys-white);
  padding: 48px 0;
}

.footer p,
.footer a {
  color: rgba(255,255,255,.72);
}

.footer a:hover {
  color: var(--mys-primary);
}

.footer-line {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  margin-top: 30px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: var(--mys-white);
  font-size: 30px;
  border: 2px solid var(--mys-white);
  transition: transform .2s ease, background .2s ease;
}

.whatsapp-float:hover {
  color: var(--mys-white);
  background: #128C7E;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 1199.98px) {
  .hero::after {
    right: -240px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-space: 82px;
  }

  .topbar {
    display: none;
  }

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

  .navbar .nav-link::after {
    left: 0;
    right: 0;
    bottom: 8px;
  }

  .navbar-collapse {
    padding: 18px 0 24px;
    border-top: 1px solid rgba(13,36,48,.1);
    margin-top: 16px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 72px;
  }

  .hero::after {
    width: 100%;
    min-width: 0;
    right: -62%;
    opacity: .28;
  }

  .hero-visual-card {
    max-width: 520px;
    margin: 40px auto 0;
  }

  .hero-stat-strip {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: clamp(2.7rem, 16vw, 4.6rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 24px;
  }

  .section-title {
    letter-spacing: -.055em;
  }

  .compare-table .row-line {
    grid-template-columns: 1fr;
  }

  .compare-table .cell:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--mys-line);
  }

  .quote-panel {
    padding: 24px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}
