:root {
  --yellow: #fcc201;
  --yellow-deep: #e3ad00;
  --ink: #282828;
  --ink-2: #333333;
  --ink-soft: #4c4c4c;
  --paper: #ffffff;
  --paper-2: #f6f6f2;
  --paper-3: #ecece7;
  --line: rgba(40, 40, 40, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #6d6d69;
  --success: #176b4d;
  --danger: #9b2c2c;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --shadow-sm: 0 12px 34px rgba(27, 27, 27, 0.08);
  --shadow-md: 0 24px 70px rgba(27, 27, 27, 0.13);
  --container: min(1180px, calc(100vw - 48px));
  --header-h: 82px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Elementor Free legacy Section/Column compatibility. The final package
 * intentionally uses this schema so templates also render when Flexbox
 * Containers are disabled. Keep Elementor's generated wrappers neutral so
 * the prototype's spacing and full-bleed sections remain unchanged. */
.asoka-elementor-template > .elementor-container,
.asoka-elementor-template > .elementor-container > .elementor-row {
  width: 100%;
  max-width: none;
}
.asoka-elementor-template .elementor-column > .elementor-element-populated,
.asoka-elementor-template .elementor-column > .elementor-widget-wrap {
  padding: 0;
}
.asoka-elementor-template .elementor-widget-html {
  width: 100%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; }
::selection { background: var(--yellow); color: #141414; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--yellow);
  color: #171717;
  font-weight: 800;
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section-sm { padding: 82px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-soft { background: var(--paper-2); }
.section-yellow { background: var(--yellow); color: #1d1d1d; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--yellow);
}
.section-yellow .eyebrow::before { background: var(--ink); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 6.4vw, 6rem); margin-bottom: 26px; }
h2 { font-size: clamp(2.25rem, 4.3vw, 4.1rem); margin-bottom: 24px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); margin-bottom: 14px; }
.lead { max-width: 720px; font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--muted); }
.section-dark .lead { color: rgba(255,255,255,.7); }
.muted { color: var(--muted); }
.kicker { font-size: .9rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 800;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
}
.btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 6px;
  border-radius: inherit;
  background: rgba(255,255,255,.18);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .25s ease, transform .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { opacity: 1; transform: scale(1); }
.btn-primary { background: var(--yellow); color: #181818; box-shadow: 0 10px 28px rgba(252,194,1,.23); }
.btn-primary:hover { background: #ffd120; box-shadow: 0 14px 34px rgba(252,194,1,.32); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #111; }
.btn-light { background: #fff; color: var(--ink); }
.btn-outline { border: 1px solid currentColor; background: transparent; }
.btn-outline-light { border: 1px solid rgba(255,255,255,.42); color: #fff; background: rgba(255,255,255,.03); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn svg { width: 18px; height: 18px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap .2s ease, color .2s ease;
}
.text-link:hover { gap: 14px; color: var(--yellow-deep); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header .header-inner {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(255,255,255,.96);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(28,28,28,.07);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 178px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  position: relative;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 760;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); background: rgba(252,194,1,.08); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { min-height: 44px; padding-inline: 18px; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 780px;
  padding: calc(var(--header-h) + 74px) 0 88px;
  overflow: hidden;
  color: #fff;
  background: #202020;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent 58%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -130px;
  border: 1px solid rgba(252,194,1,.42);
  border-radius: 50%;
  box-shadow: 0 0 0 94px rgba(252,194,1,.045), 0 0 0 188px rgba(252,194,1,.025);
  pointer-events: none;
  animation: orbit 18s linear infinite;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}
.hero-copy { max-width: 720px; }
.hero .eyebrow { color: rgba(255,255,255,.76); }
.hero h1 { max-width: 830px; color: #fff; }
.hero h1 .accent { color: var(--yellow); }
.hero .lead { max-width: 640px; color: rgba(255,255,255,.72); }
.hero-visual { position: relative; min-height: 540px; }
.hero-image-wrap {
  position: absolute;
  inset: 30px 0 0 34px;
  overflow: hidden;
  border-radius: 180px 24px 24px 24px;
  box-shadow: 0 40px 90px rgba(0,0,0,.42);
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.44) 100%);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}
.hero-card {
  position: absolute;
  z-index: 3;
  left: -24px;
  bottom: 22px;
  width: min(310px, 70%);
  padding: 25px;
  border-radius: 18px;
  background: var(--yellow);
  color: #1a1a1a;
  box-shadow: var(--shadow-md);
}
.hero-card .mini-label { margin-bottom: 18px; font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero-card strong { display: block; font-size: 1.25rem; line-height: 1.3; letter-spacing: -.02em; }
.hero-card .rule { display: flex; align-items: center; gap: 12px; margin-top: 22px; color: rgba(0,0,0,.62); font-size: .84rem; font-weight: 750; }
.hero-card .rule::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.hero-index {
  position: absolute;
  z-index: 4;
  top: 0;
  right: -16px;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(32,32,32,.68);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 50px;
  color: rgba(255,255,255,.68);
  font-size: .86rem;
  font-weight: 700;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust i { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(252,194,1,.1); }

.brand-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: var(--yellow);
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.brand-strip-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  min-height: 112px;
}
.brand-strip .item {
  display: flex;
  align-items: center;
  padding: 24px 28px;
  border-right: 1px solid rgba(0,0,0,.15);
  font-weight: 780;
  line-height: 1.35;
}
.brand-strip .item:first-child { padding-left: 0; font-size: 1.15rem; }
.brand-strip .item:last-child { border-right: 0; }
.brand-strip .index { margin-right: 12px; font-size: .72rem; letter-spacing: .12em; opacity: .58; }

.section-heading {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading .lead { margin: 0; justify-self: end; }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -82px;
  top: -82px;
  border-radius: 50%;
  background: var(--yellow);
  transition: transform .38s var(--ease);
}
.service-card:hover { z-index: 2; transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scale(1.28); }
.service-number { display: block; margin-bottom: 58px; font-size: .78rem; font-weight: 850; letter-spacing: .13em; color: var(--muted); }
.service-card h3 { max-width: 390px; }
.service-card p { max-width: 540px; color: var(--muted); }
.service-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.pill { display: inline-flex; align-items: center; min-height: 30px; padding: 4px 10px; border-radius: var(--radius-pill); background: var(--paper-2); font-size: .77rem; font-weight: 760; color: var(--ink-soft); }

.split { display: grid; grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); gap: clamp(48px, 8vw, 100px); align-items: center; }
.media-frame { position: relative; min-height: 590px; }
.media-frame .photo {
  position: absolute;
  inset: 0 64px 48px 0;
  width: calc(100% - 64px);
  height: calc(100% - 48px);
  object-fit: cover;
  border-radius: 24px 110px 24px 24px;
  box-shadow: var(--shadow-md);
}
.media-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 56%;
  border-radius: 22px;
  background: var(--yellow);
}
.media-frame .note {
  position: absolute;
  right: 2px;
  bottom: 56px;
  width: 230px;
  padding: 22px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.media-frame .note strong { display: block; margin-bottom: 6px; font-size: 1.02rem; }
.media-frame .note span { color: rgba(255,255,255,.65); font-size: .85rem; }
.check-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 18px; }
.check-list li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start; }
.check-list .check { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--yellow); font-weight: 900; }
.check-list strong { display: block; margin-bottom: 3px; }
.check-list span { color: var(--muted); }

.process-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #1f1f1f;
  color: #fff;
}
.process-wrap::after {
  content: "";
  position: absolute;
  top: -190px;
  right: -190px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(252,194,1,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(252,194,1,.035), 0 0 0 140px rgba(252,194,1,.02);
}
.process-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; padding: 72px; }
.process-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.process-item { min-height: 210px; padding: 26px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.process-item .num { display: block; margin-bottom: 32px; color: var(--yellow); font-size: .78rem; letter-spacing: .13em; font-weight: 850; }
.process-item p { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: .92rem; }

.insight-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 46px;
  min-height: 410px;
  padding: 60px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.insight-art { position: relative; min-height: 280px; }
.insight-art .sheet {
  position: absolute;
  width: 220px;
  height: 276px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.insight-art .sheet:nth-child(1) { right: 52px; top: 10px; transform: rotate(8deg); }
.insight-art .sheet:nth-child(2) { right: 84px; top: 2px; transform: rotate(-3deg); }
.insight-art .sheet:nth-child(3) { right: 112px; top: 24px; background: var(--yellow); transform: rotate(-10deg); }
.insight-art .sheet::before,
.insight-art .sheet::after { content: ""; position: absolute; left: 24px; right: 24px; height: 8px; background: rgba(0,0,0,.14); border-radius: 99px; }
.insight-art .sheet::before { top: 62px; box-shadow: 0 28px 0 rgba(0,0,0,.08), 0 56px 0 rgba(0,0,0,.08), 0 84px 0 rgba(0,0,0,.08); }
.insight-art .sheet::after { top: 24px; right: 98px; background: var(--ink); }

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: #1d1d1d;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to left, #000, transparent 62%);
}
.cta-band-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr auto; gap: 30px; align-items: center; padding: 80px 0; }
.cta-band h2 { max-width: 760px; margin-bottom: 0; }

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 84px) 0 76px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #202020;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, #000, transparent 65%);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 33%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .96;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 920px; font-size: clamp(3rem, 6vw, 5.5rem); margin-bottom: 22px; }
.page-hero .lead { max-width: 690px; color: rgba(255,255,255,.72); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 28px; font-size: .8rem; font-weight: 760; color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: .45; }
.page-hero .breadcrumb { color: rgba(255,255,255,.68); }
.page-hero .breadcrumb a:hover { color: #fff; }

.quote-block {
  padding: 38px;
  border-left: 5px solid var(--yellow);
  background: var(--paper-2);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 730;
  letter-spacing: -.025em;
  line-height: 1.35;
}
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.value-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: transform .28s var(--ease), box-shadow .28s ease; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.value-card .icon-box { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 42px; border-radius: 14px; background: var(--yellow); }
.value-card .icon-box svg { width: 24px; height: 24px; }
.value-card p { margin-bottom: 0; color: var(--muted); }

.detail-service-list { display: grid; gap: 22px; }
.detail-service {
  display: grid;
  grid-template-columns: 80px minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.detail-service:last-child { border-bottom: 1px solid var(--line); }
.detail-service .num { font-size: .78rem; font-weight: 850; letter-spacing: .13em; color: var(--muted); }
.detail-service h2 { font-size: clamp(1.7rem, 3vw, 2.55rem); margin: 0; }
.detail-service p { margin: 0; color: var(--muted); }
.service-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.feature-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(0,0,0,.55)); }
.feature-image .caption { position: absolute; z-index: 2; left: 34px; bottom: 30px; color: #fff; max-width: 480px; font-size: .9rem; }

.coming-soon {
  min-height: calc(100vh - 210px);
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  background: var(--paper-2);
}
.coming-card {
  position: relative;
  width: min(960px, 100%);
  min-height: 540px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.coming-copy { padding: 68px; align-self: center; }
.coming-copy h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); }
.coming-copy p { color: rgba(255,255,255,.66); }
.coming-art { position: relative; background: var(--yellow); overflow: hidden; }
.coming-art .circle { position: absolute; border: 1px solid rgba(0,0,0,.22); border-radius: 50%; }
.coming-art .circle:nth-child(1) { width: 420px; height: 420px; right: -190px; top: -120px; }
.coming-art .circle:nth-child(2) { width: 300px; height: 300px; left: -110px; bottom: -80px; }
.coming-art .document { position: absolute; left: 50%; top: 50%; width: 210px; height: 280px; transform: translate(-50%,-50%) rotate(7deg); border-radius: 12px; background: #fff; box-shadow: var(--shadow-md); }
.coming-art .document::before { content: ""; position: absolute; left: 26px; top: 34px; width: 72px; height: 9px; border-radius: 99px; background: var(--ink); box-shadow: 0 38px 0 rgba(0,0,0,.13), 0 68px 0 rgba(0,0,0,.13), 0 98px 0 rgba(0,0,0,.13), 0 128px 0 rgba(0,0,0,.13); }

.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 76px; align-items: start; }
.contact-list { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.contact-item { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.contact-item .icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--yellow); }
.contact-item svg { width: 21px; height: 21px; }
.contact-item strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.contact-item span, .contact-item a { color: var(--muted); }
.contact-item a:hover { color: var(--ink); text-decoration: underline; }
.contact-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfcfca;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 144px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--yellow-deep); box-shadow: 0 0 0 4px rgba(252,194,1,.15); }
.field .error { min-height: 18px; color: var(--danger); font-size: .78rem; }
.form-note { margin: 22px 0 18px; padding: 14px 16px; border-radius: 12px; background: var(--paper-2); color: var(--muted); font-size: .85rem; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--success); font-weight: 700; }

.legal-layout { display: grid; grid-template-columns: 270px minmax(0,1fr); gap: 68px; align-items: start; }
.legal-nav { position: sticky; top: 102px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-2); }
.legal-nav strong { display: block; margin-bottom: 14px; }
.legal-nav a { display: block; padding: 8px 0; color: var(--muted); font-size: .9rem; }
.legal-nav a:hover { color: var(--ink); }
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: 54px; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 32px; font-size: 1.25rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul { padding-left: 22px; }
.legal-note { padding: 20px; border-left: 4px solid var(--yellow); background: var(--paper-2); }

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
  background: var(--ink);
  color: #fff;
}
.error-card { width: min(980px,100%); display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 60px; }
.error-code { position: relative; font-size: clamp(9rem, 20vw, 15rem); font-weight: 900; line-height: .8; letter-spacing: -.08em; color: var(--yellow); }
.error-code::after { content: ""; position: absolute; width: 120px; height: 120px; right: 2%; bottom: -20px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.error-copy p { color: rgba(255,255,255,.66); }

.site-footer { background: #1d1d1d; color: #fff; }
.footer-main { display: grid; grid-template-columns: 1.15fr .72fr .72fr 1fr; gap: 54px; padding: 74px 0 54px; }
.footer-brand img { width: 176px; margin-bottom: 24px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.62); }
.footer-title { margin-bottom: 18px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.48); }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .92rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { display: grid; gap: 14px; }
.footer-contact a, .footer-contact p { margin: 0; color: rgba(255,255,255,.72); font-size: .92rem; }
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a:hover { color: #fff; }

.floating-wa {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: #1f8f5f;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  font-weight: 800;
  font-size: .86rem;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.floating-wa:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(0,0,0,.26); }
.floating-wa svg { width: 20px; height: 20px; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.from-left { transform: translateX(-28px); }
.js .reveal.from-right { transform: translateX(28px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .58s var(--ease), transform .58s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.js .stagger.is-visible > * { opacity: 1; transform: none; }

@keyframes orbit { to { transform: rotate(360deg); } }

@media (max-width: 1050px) {
  :root { --container: min(100% - 40px, 940px); }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr .84fr; gap: 42px; }
  .hero-visual { min-height: 500px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading .lead { justify-self: start; }
  .process-grid { grid-template-columns: 1fr; padding: 56px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2 / -1; }
  .contact-grid { gap: 48px; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; --container: min(100% - 32px, 760px); }
  .section { padding: 86px 0; }
  .section-sm { padding: 68px 0; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 99;
    display: grid;
    align-content: start;
    gap: 6px;
    padding: 26px 20px 40px;
    background: rgba(255,255,255,.99);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s var(--ease), opacity .25s ease, visibility .25s ease;
  }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; }
  .site-nav a { padding: 17px 14px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.1rem; }
  .site-nav a::after { left: 14px; right: auto; width: 38px; bottom: 10px; }
  .menu-toggle { display: inline-flex; }
  .hero { min-height: auto; padding-bottom: 72px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; }
  .hero-visual { min-height: 570px; max-width: 620px; }
  .hero-card { left: 6px; }
  .brand-strip-inner { grid-template-columns: repeat(3,1fr); }
  .brand-strip .item:first-child { grid-column: 1 / -1; border-bottom: 1px solid rgba(0,0,0,.15); }
  .service-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .media-frame { min-height: 540px; }
  .insight-panel { grid-template-columns: 1fr; padding: 44px; }
  .insight-art { min-height: 260px; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .detail-service { grid-template-columns: 60px 1fr; }
  .detail-service > div:last-child { grid-column: 2; }
  .coming-card { grid-template-columns: 1fr; }
  .coming-art { min-height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 38px; }
  .legal-nav { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 590px) {
  :root { --container: calc(100% - 28px); }
  body { font-size: 15px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.15rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .site-header .header-inner { gap: 12px; }
  .brand img { width: 148px; }
  .hero { padding-top: calc(var(--header-h) + 50px); }
  .hero::after { width: 360px; height: 360px; }
  .hero .lead { font-size: 1rem; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-trust { display: grid; gap: 12px; margin-top: 36px; }
  .hero-visual { min-height: 430px; }
  .hero-image-wrap { inset: 12px 0 0 14px; border-radius: 110px 20px 20px 20px; }
  .hero-card { left: 0; bottom: 6px; width: 78%; padding: 20px; }
  .hero-card strong { font-size: 1.05rem; }
  .hero-index { right: -4px; width: 58px; height: 58px; }
  .brand-strip-inner { grid-template-columns: 1fr; }
  .brand-strip .item { min-height: 68px; border-right: 0; border-bottom: 1px solid rgba(0,0,0,.15); padding: 18px 0; }
  .brand-strip .item:last-child { border-bottom: 0; }
  .service-card { min-height: 300px; padding: 26px; }
  .service-number { margin-bottom: 42px; }
  .media-frame { min-height: 430px; }
  .media-frame .photo { inset: 0 24px 34px 0; width: calc(100% - 24px); height: calc(100% - 34px); border-radius: 20px 74px 20px 20px; }
  .media-frame .note { right: 0; bottom: 30px; width: 200px; padding: 18px; }
  .process-grid { padding: 34px 22px; }
  .process-list { grid-template-columns: 1fr; }
  .process-item { min-height: 170px; }
  .insight-panel { padding: 30px 22px; }
  .insight-art .sheet { width: 170px; height: 220px; }
  .insight-art .sheet:nth-child(1) { right: 16px; }
  .insight-art .sheet:nth-child(2) { right: 40px; }
  .insight-art .sheet:nth-child(3) { right: 66px; }
  .page-hero { padding-top: calc(var(--header-h) + 54px); }
  .page-hero::after { width: 90px; height: 90px; right: -26px; top: 26%; }
  .values-grid { grid-template-columns: 1fr; }
  .detail-service { grid-template-columns: 1fr; gap: 12px; }
  .detail-service > div:last-child { grid-column: auto; }
  .detail-service .num { margin-bottom: 3px; }
  .coming-copy { padding: 42px 24px; }
  .coming-art { min-height: 300px; }
  .contact-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-wa { width: 50px; height: 50px; padding: 0; justify-content: center; border-radius: 50%; }
  .floating-wa span { display: none; }
  .error-card { grid-template-columns: 1fr; gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal, .js .reveal.from-left, .js .reveal.from-right, .js .stagger > * { opacity: 1 !important; transform: none !important; }
}

/* Transparent header state on dark hero sections */
.site-header:not(.scrolled) .brand {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.site-header:not(.scrolled) .site-nav a { color: rgba(255,255,255,.8); }
.site-header:not(.scrolled) .site-nav a:hover,
.site-header:not(.scrolled) .site-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.08); }
.site-header:not(.scrolled) .menu-toggle { background: #fff; color: var(--ink); }
@media (max-width: 860px) {
  .site-header:not(.scrolled) .site-nav a { color: var(--ink-soft); }
  .site-header:not(.scrolled) .site-nav a:hover,
  .site-header:not(.scrolled) .site-nav a[aria-current="page"] { color: var(--ink); background: rgba(252,194,1,.08); }
}

/* ==========================================================
   WordPress + Elementor Free compatibility layer
   ========================================================== */
body.elementor-page,
body.elementor-template-full-width {
  margin: 0;
}

.asoka-elementor-template,
.asoka-elementor-template.e-con,
.asoka-elementor-template > .e-con-inner,
.asoka-elementor-section,
.asoka-elementor-section.e-con,
.asoka-elementor-section > .e-con-inner,
.asoka-html-widget,
.asoka-html-widget > .elementor-widget-container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

.asoka-elementor-template.e-con,
.asoka-elementor-section.e-con {
  --padding-top: 0px;
  --padding-right: 0px;
  --padding-bottom: 0px;
  --padding-left: 0px;
  --margin-top: 0px;
  --margin-right: 0px;
  --margin-bottom: 0px;
  --margin-left: 0px;
  --gap: 0px;
}

/* Prevent Elementor/theme defaults from changing source layout. */
.elementor-widget-html p:last-child { margin-bottom: 0; }
.elementor-widget-html .section p:last-child,
.elementor-widget-html .site-footer p:last-child { margin-bottom: 0; }
.elementor-widget-html form { margin: 0; }

/* Editor-only helper: keep fixed header from hiding Elementor controls. */
.elementor-editor-active .site-header { pointer-events: auto; }

/* Header template outer wrappers must not become sticky/fixed themselves. */
.asoka-header-template { position: static !important; z-index: auto !important; }

/* Ensure special pages retain exact display despite Elementor container CSS. */
.asoka-template-404 > .elementor-widget-html,
.asoka-template-insight > .elementor-widget-html { width: 100% !important; }

/* Smooth card/image interactions retained from prototype. */
.value-card,
.service-card,
.detail-service,
.contact-form {
  will-change: transform;
}

/* Elementor Site Settings use selectors such as `.elementor-kit-* h1` and
 * `.elementor-kit-* a`. Restore the prototype's typography and interaction
 * colours inside the audited Asoka theme without changing Elementor itself. */
body.asoka-elementor-site {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}
body.asoka-elementor-site h1,
body.asoka-elementor-site h2,
body.asoka-elementor-site h3,
body.asoka-elementor-site h4 {
  color: inherit;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}
body.asoka-elementor-site h1 { font-size: clamp(2.9rem, 6.4vw, 6rem); margin-bottom: 26px; }
body.asoka-elementor-site h2 { font-size: clamp(2.25rem, 4.3vw, 4.1rem); margin-bottom: 24px; }
body.asoka-elementor-site h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); margin-bottom: 14px; }
body.asoka-elementor-site p { margin-top: 0; margin-bottom: 1em; }

body.asoka-elementor-site .site-nav a,
body.asoka-elementor-site .site-footer a,
body.asoka-elementor-site .breadcrumb a,
body.asoka-elementor-site .legal-nav a,
body.asoka-elementor-site .text-link { color: inherit; }
body.asoka-elementor-site .site-nav a { color: var(--ink-soft); }
body.asoka-elementor-site .site-nav a:hover,
body.asoka-elementor-site .site-nav a[aria-current="page"] { color: var(--ink); }
body.asoka-elementor-site .site-header:not(.scrolled) .site-nav a { color: rgba(255,255,255,.8); }
body.asoka-elementor-site .site-header:not(.scrolled) .site-nav a:hover,
body.asoka-elementor-site .site-header:not(.scrolled) .site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,.08) !important;
}

body.asoka-elementor-site .btn-primary,
body.asoka-elementor-site .btn-primary:visited {
  background: var(--yellow);
  color: #181818;
}
body.asoka-elementor-site .btn-primary:hover,
body.asoka-elementor-site .btn-primary:focus-visible {
  background: #ffd120;
  color: #181818;
}
body.asoka-elementor-site .btn-dark,
body.asoka-elementor-site .btn-dark:visited { color: #fff; }
body.asoka-elementor-site .btn-light,
body.asoka-elementor-site .btn-light:visited { color: var(--ink); }
body.asoka-elementor-site .btn-outline-light,
body.asoka-elementor-site .btn-outline-light:visited,
body.asoka-elementor-site .btn-outline-light:hover,
body.asoka-elementor-site .btn-outline-light:focus-visible { color: #fff; }
body.asoka-elementor-site .floating-wa,
body.asoka-elementor-site .floating-wa:visited,
body.asoka-elementor-site .floating-wa:hover { color: #fff; }
body.asoka-elementor-site .text-link:hover { color: var(--yellow-deep); }

body.asoka-elementor-site .hero,
body.asoka-elementor-site .section-dark,
body.asoka-elementor-site .page-hero,
body.asoka-elementor-site .error-page,
body.asoka-elementor-site .site-footer { color: #fff; }
body.asoka-elementor-site .section-yellow { color: #1d1d1d; }

/* Keep the fixed prototype header visible for logged-in WordPress users. */
body.admin-bar.asoka-elementor-site .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar.asoka-elementor-site .site-header { top: 46px; }
}

@media (max-width: 590px) {
  .elementor-widget-html .btn { white-space: normal; text-align: center; }
}
