:root {
  --ink: #05070b;
  --night: #0b1220;
  --panel: rgba(12, 16, 24, 0.86);
  --panel-solid: #111722;
  --red: #b70818;
  --red-deep: #56040d;
  --gold: #f4b93f;
  --gold-soft: #ffe3a0;
  --cyan: #4fc3df;
  --text: #fff7e8;
  --muted: #d5c8b6;
  --line: rgba(244, 185, 63, 0.24);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(183, 8, 24, 0.22), transparent 34%),
    linear-gradient(180deg, #05070b 0%, #0a101b 46%, #05070b 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Myanmar Text", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.9), rgba(4, 6, 10, 0.16));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 8, 13, 0.94);
  border-bottom: 1px solid rgba(244, 185, 63, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 52px;
  height: 52px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

.brand span {
  color: var(--gold-soft);
  font-size: 1rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 247, 232, 0.84);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 200ms ease;
}

.nav a:hover::after {
  right: 0;
}

.nav a,
.footer a {
  transition: color 160ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--gold);
}

.brand img {
  transition: transform 220ms ease;
}

.brand:hover img {
  transform: rotate(-6deg) scale(1.05);
}

.step {
  transition: transform 180ms ease, border-color 180ms ease;
}

.step:hover {
  transform: translateX(6px);
  border-color: var(--gold-soft);
}

.showcase-list div {
  transition: transform 180ms ease, border-color 180ms ease;
}

.showcase-list div:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 185, 63, 0.5);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 185, 63, 0.34);
  background: rgba(8, 12, 20, 0.62);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold-soft);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(78vw, 320px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 96px 28px 28px;
  background: rgba(6, 8, 13, 0.98);
  border-left: 1px solid rgba(244, 185, 63, 0.24);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav a {
  padding: 14px 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255, 247, 232, 0.86);
  border-bottom: 1px solid rgba(244, 185, 63, 0.14);
}

.mobile-nav a:hover {
  color: var(--gold);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(244, 185, 63, 0.44);
  padding: 0 18px;
  font-weight: 900;
  color: var(--gold-soft);
  background: rgba(120, 8, 18, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 227, 160, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 5vw, 76px) 88px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.08);
  opacity: 0.5;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 9, 0.92), rgba(6, 9, 16, 0.78) 55%, rgba(4, 6, 10, 0.82)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.88));
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 10px 18px 10px 10px;
  background: linear-gradient(90deg, rgba(6, 8, 13, 0.82), rgba(94, 5, 14, 0.56));
  border: 1px solid rgba(244, 185, 63, 0.34);
  backdrop-filter: blur(12px);
}

.hero-logo-wrap span {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-logo {
  width: clamp(92px, 12vw, 142px);
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.48));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 8.6vw, 8.5rem);
  line-height: 0.88;
  text-shadow: 0 22px 52px rgba(0, 0, 0, 0.54);
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 247, 232, 0.94);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
  line-height: 1.82;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 28px;
  border: 1px solid rgba(244, 185, 63, 0.22);
  background: rgba(244, 185, 63, 0.12);
}

.hero-stats div {
  min-height: 92px;
  padding: 18px;
  background: rgba(5, 7, 11, 0.56);
}

.hero-stats strong {
  display: block;
  color: var(--gold-soft);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.button {
  min-width: 164px;
  min-height: 52px;
}

.button.primary {
  color: #210704;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.button.ghost {
  background: rgba(8, 12, 20, 0.62);
}

.hero-panel {
  padding: 30px;
  background:
    linear-gradient(160deg, rgba(183, 8, 24, 0.64), rgba(8, 13, 22, 0.88)),
    var(--panel-solid);
  border: 1px solid rgba(244, 185, 63, 0.34);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.hero-panel img {
  width: min(86%, 280px);
  margin: -16px auto 14px;
  object-fit: contain;
}

.hero-panel p {
  margin-bottom: 6px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-panel strong {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.hero-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.6;
}

.hero-panel li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: -44px auto 0;
  padding: 0 clamp(18px, 4vw, 28px);
  position: relative;
  z-index: 4;
}

.metric {
  min-height: 162px;
  padding: 28px;
  background: rgba(10, 14, 22, 0.96);
  border: 1px solid rgba(244, 185, 63, 0.2);
}

.metric span,
.service-card span,
.showcase-list span,
.step span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin: 10px 0;
  color: var(--gold-soft);
  font-size: 1.14rem;
}

.metric p,
.service-card p,
.step p,
.approach-copy p,
.showcase-copy p,
.contact p {
  color: var(--muted);
  line-height: 1.75;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 120px) clamp(20px, 4vw, 28px);
}

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

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1.3;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(126, 8, 20, 0.5), rgba(11, 18, 32, 0.92)),
    var(--panel);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card.is-popular {
  border-color: rgba(244, 185, 63, 0.55);
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 10px;
  color: #210704;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.service-features {
  display: grid;
  gap: 8px;
  margin: 6px 0 18px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.service-features li {
  padding-left: 16px;
  border-left: 2px solid rgba(244, 185, 63, 0.4);
}

.service-link {
  margin-top: auto;
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 0.92rem;
  transition: color 160ms ease, transform 160ms ease;
  display: inline-block;
}

.service-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 185, 63, 0.58);
  background:
    linear-gradient(180deg, rgba(183, 8, 24, 0.62), rgba(11, 18, 32, 0.94)),
    var(--panel);
}

.service-card img {
  width: min(78%, 220px);
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 20px;
}

.service-card h3,
.step h3 {
  margin: 10px 0;
  color: var(--gold-soft);
  font-size: 1.35rem;
}

.showcase {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 6vw, 70px) clamp(24px, 5vw, 58px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(80, 4, 12, 0.88), rgba(8, 16, 28, 0.96)),
    var(--night);
}

.showcase-copy h2 {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
}

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

.showcase-list div {
  min-height: 122px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(244, 185, 63, 0.18);
}

.showcase-list strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  line-height: 1.45;
}

.approach {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 6vw, 76px);
  align-items: start;
}

.approach-copy {
  position: sticky;
  top: 110px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(183, 8, 24, 0.44), rgba(11, 18, 32, 0.66));
}

.facebook-band,
.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--max);
}

.facebook-band {
  margin: 0 auto clamp(24px, 4vw, 36px);
  padding: clamp(32px, 5vw, 52px) clamp(24px, 5vw, 58px);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(11, 18, 32, 0.96), rgba(91, 5, 14, 0.82)),
    var(--night);
}

.facebook-copy {
  max-width: 790px;
}

.facebook-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
}

.contact {
  margin: 0 auto clamp(54px, 7vw, 86px);
  padding: clamp(36px, 5vw, 60px) clamp(24px, 5vw, 60px);
  border: 1px solid rgba(244, 185, 63, 0.34);
  background:
    linear-gradient(110deg, rgba(183, 8, 24, 0.9), rgba(9, 14, 23, 0.95)),
    var(--night);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.35);
}

.contact h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.contact p {
  max-width: 640px;
  margin-bottom: 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--gold-soft);
  font-weight: 900;
  border: 1px solid rgba(244, 185, 63, 0.28);
  background: rgba(5, 7, 11, 0.34);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 76px);
  color: rgba(255, 247, 232, 0.7);
  border-top: 1px solid rgba(244, 185, 63, 0.18);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-card {
  padding: 26px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(183, 8, 24, 0.34), rgba(11, 18, 32, 0.66));
  transition: transform 180ms ease, border-color 180ms ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
}

.why-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.why-card h3 {
  margin: 10px 0;
  color: var(--gold-soft);
  font-size: 1.18rem;
}

.why-card p {
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(126, 8, 20, 0.4), rgba(11, 18, 32, 0.92)),
    var(--panel);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 185, 63, 0.58);
}

.testimonial-card p {
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.75;
  font-size: 0.98rem;
}

.testimonial-meta strong {
  display: block;
  color: var(--gold-soft);
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.84rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 185, 63, 0.2);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--gold-soft);
  font-size: 1.04rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.float-cta {
  position: fixed;
  z-index: 18;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 64px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.78rem;
  color: #210704;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  animation: float-pulse 2.6s ease-in-out infinite;
}

.float-cta:hover {
  animation-play-state: paused;
  transform: scale(1.06);
}

@keyframes float-pulse {
  0%, 100% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(244, 185, 63, 0.4);
  }
  50% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(244, 185, 63, 0);
  }
}

.back-to-top {
  position: fixed;
  z-index: 18;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(90px, 12vw, 110px);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 185, 63, 0.44);
  background: rgba(8, 12, 20, 0.78);
  color: var(--gold-soft);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-layout,
  .showcase,
  .approach {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  .site-header {
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .testimonial-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

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

  .intro {
    margin-top: 0;
  }

  .approach-copy {
    position: static;
  }

  .facebook-band,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

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

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

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding: 98px 18px 54px;
  }

  .hero-bg {
    object-position: 63% center;
  }

  .hero-logo-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.8rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .hero-panel {
    padding: 22px;
  }

  .showcase-list {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
