:root {
  --navy-950: #071426;
  --navy-900: #0b1d36;
  --navy-800: #102b4d;
  --navy-700: #173b68;
  --blue-500: #2f80ed;
  --cyan-300: #7ed7f5;
  --amber-500: #d9a441;
  --amber-300: #f4ca70;
  --steel-100: #eef4f8;
  --steel-200: #dce7ef;
  --steel-500: #6d8193;
  --white: #ffffff;
  --ink: #142033;
  --shadow: 0 24px 70px rgba(7, 20, 38, 0.16);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbfd;
  font-family: "Noto Sans Myanmar", "Padauk", "Myanmar Text", sans-serif;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 231, 239, 0.72);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.1;
  color: var(--navy-950);
}

.brand small {
  display: block;
  color: var(--steel-500);
  font-size: 0.78rem;
}

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-menu a {
  padding: 10px 9px;
  border-radius: var(--radius);
  color: #344b63;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  color: var(--steel-500);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--steel-100);
  color: var(--navy-900);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  font: 800 0.9rem/1.3 "Noto Sans Myanmar", sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn.primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--amber-300), var(--amber-500));
  box-shadow: 0 12px 30px rgba(217, 164, 65, 0.26);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.pricing .btn.secondary {
  color: var(--navy-900);
  background: var(--steel-100);
  border-color: var(--steel-200);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-900);
}

.section-shell {
  position: relative;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 142px);
  display: grid;
  grid-template-columns: minmax(16px, 1fr) minmax(0, 560px) minmax(340px, 560px) minmax(16px, 1fr);
  align-items: center;
  gap: 42px;
  padding: 56px 0 50px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 20, 38, 0.96), rgba(16, 43, 77, 0.92)),
    radial-gradient(circle at 80% 10%, rgba(217, 164, 65, 0.3), transparent 34%),
    var(--navy-950);
}

.hero::after,
.services::after,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(90deg, rgba(126, 215, 245, 0.3) 1px, transparent 1px),
    linear-gradient(rgba(126, 215, 245, 0.22) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
  background:
    linear-gradient(120deg, transparent 10%, rgba(244, 202, 112, 0.16) 10.4%, transparent 10.8%),
    linear-gradient(63deg, transparent 22%, rgba(126, 215, 245, 0.14) 22.3%, transparent 22.7%),
    linear-gradient(152deg, transparent 67%, rgba(244, 202, 112, 0.13) 67.3%, transparent 67.7%);
}

.hero-content {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber-500);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 1.18;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.hero-metrics strong {
  display: block;
  color: var(--amber-300);
  font: 800 1.18rem/1 "Manrope", sans-serif;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

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

.visual-card {
  padding: 18px;
  border: 1px solid rgba(244, 202, 112, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--navy-950);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.35;
  font-weight: 800;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #55697a;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comparison-card,
.service-panel,
.value-grid article,
.testimonial-card,
.price-card,
.contact-form-panel,
.contact-info {
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(16, 43, 77, 0.07);
}

.comparison-card {
  position: relative;
  min-height: 172px;
  padding: 28px;
  overflow: hidden;
}

.comparison-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--steel-200);
}

.solution-card::before {
  background: linear-gradient(90deg, var(--amber-500), var(--cyan-300));
}

.problem-card::before {
  background: #b9c9d6;
}

.icon-ring,
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.icon-ring.warning {
  color: #8a5b00;
  background: #fff4d8;
}

.icon-ring.success {
  color: var(--navy-950);
  background: #dff8ef;
  box-shadow: 0 0 24px rgba(126, 215, 245, 0.4);
}

.comparison-card h3,
.service-panel h3,
.value-grid h3,
.testimonial-card h3,
.price-card h3,
.contact-info h3 {
  margin: 16px 0 8px;
  color: var(--navy-950);
  font-size: 1.16rem;
  line-height: 1.45;
}

.comparison-card p,
.service-panel p,
.value-grid p,
.testimonial-card p,
.price-card p,
.contact-info p {
  margin: 0;
  color: #5a7082;
  font-size: 0.94rem;
}

.services,
.contact {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - var(--max-width)) / 2));
  background: linear-gradient(180deg, #f8fbfd, #edf4f8);
  overflow: hidden;
}

.services > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.service-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-panel {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 24px;
  padding: 24px;
}

.service-panel img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--steel-200);
}

.accent-panel {
  color: var(--white);
  border-color: rgba(244, 202, 112, 0.28);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
}

.accent-panel h3,
.accent-panel h3 span {
  color: var(--white);
}

.accent-panel p,
.accent-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.service-index,
.popular {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--amber-300);
  font: 800 0.68rem/1.2 "Manrope", sans-serif;
  text-transform: uppercase;
}

.service-panel h3 span,
.price-card h3 span {
  display: block;
  color: var(--steel-500);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 25px;
  color: #40576b;
  font-size: 0.94rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amber-500);
  font-weight: 800;
}

.value-grid,
.testimonial-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article {
  padding: 26px;
}

.value-icon {
  color: var(--navy-950);
  background: linear-gradient(135deg, #eaf6fb, #fff1cd);
}

.testimonials {
  padding-top: 88px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 26px;
}

.testimonial-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

blockquote {
  margin: 0;
  color: #31465a;
  font-weight: 600;
}

.pricing {
  padding-top: 84px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(217, 164, 65, 0.6);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.price {
  margin: 8px 0 16px !important;
  color: var(--navy-950) !important;
  font: 800 1.15rem/1.2 "Manrope", sans-serif !important;
}

.price-card .btn {
  margin-top: auto;
}

.full {
  width: 100%;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  gap: 22px;
}

.contact-form-panel,
.contact-info {
  padding: 32px;
}

form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  font: 500 0.94rem/1.5 "Noto Sans Myanmar", sans-serif;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--navy-700);
  font-weight: 700;
}

.contact-info {
  color: var(--white);
  background: linear-gradient(160deg, var(--navy-950), var(--navy-700));
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-info img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-info h3 {
  color: var(--white);
}

.contact-info p,
.contact-info li {
  color: rgba(255, 255, 255, 0.78);
}

.contact-info ul {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.contact-info li {
  margin-top: 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--navy-950);
  background: var(--amber-300);
  font: 800 0.78rem/1 "Manrope", sans-serif;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #06101f;
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 26px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-map {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  text-align: right;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
}

@media (max-width: 1060px) {
  .navbar {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    width: 100%;
    padding: 18px 16px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--steel-200);
    box-shadow: 0 18px 50px rgba(7, 20, 38, 0.15);
  }

  .nav-menu.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(16px, 1fr) minmax(0, 560px) minmax(16px, 1fr);
    gap: 28px;
    padding-top: 60px;
  }

  .hero-content,
  .hero-visual {
    grid-column: 2;
  }

  .hero-visual {
    max-width: 640px;
    width: 100%;
  }

  .service-split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .service-panel {
    grid-template-columns: 0.62fr 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 28px, var(--max-width));
    padding: 70px 0;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-metrics,
  .comparison-grid,
  .testimonial-grid,
  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-menu.is-open {
    grid-template-columns: 1fr;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-panel img {
    min-height: 240px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .contact-form-panel,
  .contact-info,
  .price-card,
  .comparison-card,
  .value-grid article,
  .testimonial-card {
    padding: 22px;
  }
}

@media (max-width: 440px) {
  .navbar {
    width: calc(100% - 22px);
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 1.92rem;
  }

  .section-heading h2 {
    font-size: 1.62rem;
  }
}
