:root {
  --bg: #05070b;
  --surface: rgba(10, 15, 24, 0.72);
  --surface-strong: rgba(8, 12, 18, 0.92);
  --text: #fff9ef;
  --text-muted: #d6c5ab;
  --accent: #d8b978;
  --accent-soft: rgba(216, 185, 120, 0.24);
  --gold: #d8bc82;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: url("../../images/background.png") center top / cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.02);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 14%, rgba(216, 185, 120, 0.16), transparent 40%),
    radial-gradient(circle at 15% 90%, rgba(216, 188, 130, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(2, 4, 7, 0.68), rgba(4, 6, 11, 0.84));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding: clamp(62px, 8vw, 94px) 0;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
  color: var(--gold);
}

.section-title {
  margin: 0 0 0.7rem;
  line-height: 1.2;
  font-size: clamp(1.75rem, 3.8vw, 2.8rem);
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  max-width: 66ch;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(5, 8, 12, 0.14);
  backdrop-filter: blur(6px);
  transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

body.scrolled .site-header {
  background: rgba(5, 8, 12, 0.7);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.33);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.04em;
  font-weight: 700;
  text-shadow: 0 0 14px rgba(216, 185, 120, 0.2);
}

.brand small {
  display: block;
  font-size: 0.64rem;
  color: var(--text-muted);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(216, 185, 120, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  color: rgba(255, 249, 239, 0.88);
  font-size: 0.95rem;
  text-shadow: 0 0 10px rgba(216, 185, 120, 0.15);
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #ffffff;
}

.nav-cta {
  border: 1px solid rgba(216, 185, 120, 0.52);
  border-radius: 999px;
  padding: 0.56rem 0.95rem;
  color: var(--accent);
  box-shadow: 0 0 12px rgba(216, 185, 120, 0.16);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(10, 14, 22, 0.82);
  color: var(--text);
}

.menu-toggle .icon,
.back-top .icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../../images/hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(95deg, rgba(2, 5, 9, 0.84), rgba(2, 5, 9, 0.35) 56%, rgba(2, 5, 9, 0.72)),
    linear-gradient(180deg, rgba(2, 5, 9, 0.2), rgba(2, 5, 9, 0.75));
}

.hero-content {
  padding-top: clamp(104px, 13vw, 152px);
  padding-bottom: clamp(78px, 10vw, 120px);
}

.hero h1 {
  margin: 0;
  max-width: 17ch;
  line-height: 1.08;
  font-size: clamp(2rem, 6vw, 4.2rem);
  text-wrap: balance;
}

.hero p {
  margin: 1.2rem 0 2rem;
  max-width: 58ch;
  color: rgba(255, 249, 239, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.83rem 1.22rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(140deg, #d8b978, #f3dfad);
  color: #021018;
  box-shadow: 0 10px 26px rgba(216, 185, 120, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(216, 185, 120, 0.42);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text);
  background: rgba(14, 20, 30, 0.55);
}

.btn-secondary:hover {
  border-color: rgba(216, 185, 120, 0.58);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

.btn-card {
  margin-top: auto;
  border-color: rgba(216, 185, 120, 0.4);
  background: rgba(216, 185, 120, 0.1);
  color: #f3dfad;
}

.btn-card:hover {
  box-shadow: 0 10px 25px rgba(216, 185, 120, 0.3);
}

.services-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(11, 17, 27, 0.86), rgba(9, 14, 22, 0.74));
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 185, 120, 0.52);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.45), 0 0 20px rgba(216, 185, 120, 0.2);
}

.service-card .media {
  height: 190px;
}

.service-card .media img {
  height: 100%;
  object-fit: cover;
}

.service-card .content {
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  min-height: 270px;
}

.service-card h3,
.process-card h3,
.card h3 {
  margin: 0;
  line-height: 1.35;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.02rem);
}

.result {
  color: #fff8eb;
  font-size: 0.94rem;
}

.process-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.process-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(14, 26, 40, 0.95), rgba(13, 27, 44, 0.84));
  border-color: rgba(216, 185, 120, 0.32);
}

.process-card .media {
  position: relative;
  height: 148px;
}

.process-card .media img {
  height: 100%;
  object-fit: cover;
}

.step-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #fff8eb;
  background: rgba(7, 14, 22, 0.82);
  border: 1px solid rgba(216, 185, 120, 0.52);
}

.process-card .content {
  padding: 0.85rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

.why-list {
  margin: 0;
  padding: 1.15rem 1.2rem 1.15rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(10, 15, 24, 0.68);
  display: grid;
  gap: 0.72rem;
  box-shadow: var(--shadow);
}

.cert-grid {
  margin-top: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cert-card {
  padding: 1.2rem;
}

.testimonials-grid {
  margin-top: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  padding: 1.15rem;
}

.quote {
  color: #fff8ec;
}

.author {
  margin-top: 0.6rem;
  color: #b8aa94;
  font-size: 0.9rem;
}

.cta-section {
  background: linear-gradient(170deg, rgba(8, 13, 21, 0.72), rgba(7, 12, 20, 0.52));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-layout {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-info {
  padding: 1.2rem;
}

.inline-link {
  color: #f2d99d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.88rem;
  color: #d8cbb6;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 0.7rem 0.76rem;
  background: rgba(12, 18, 28, 0.88);
  color: var(--text);
  font: inherit;
}

.textarea {
  min-height: 124px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.87rem;
}

.form-msg {
  margin: 0;
  min-height: 1.15rem;
  font-size: 0.9rem;
}

.form-msg.error {
  color: #ffb5b5;
}

.form-msg.success {
  color: #9cf3c6;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.2rem 0;
  background: rgba(6, 10, 16, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}

.footer-grid h3 {
  margin-top: 0;
}

.footer-grid p {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(216, 185, 120, 0.54);
  background: rgba(8, 13, 21, 0.88);
  color: var(--accent);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1001;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.btn:focus-visible,
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .process-grid {
    gap: 0.55rem;
  }

  .process-card .media {
    height: 136px;
  }

  .process-card .content {
    padding: 0.75rem;
  }

  .process-card h3 {
    font-size: 1.02rem;
  }

  .process-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 20px;
    background: rgba(5, 8, 12, 0.97);
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .services-grid,
  .cert-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 899px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

@media (max-width: 720px) {
  body::before {
    background-position: 62% top;
  }

  body::after {
    background:
      radial-gradient(circle at 70% 25%, rgba(216, 185, 120, 0.2), transparent 40%),
      linear-gradient(180deg, rgba(2, 4, 7, 0.72), rgba(4, 6, 11, 0.9));
  }

  .hero {
    min-height: 84vh;
  }

  .hero h1 {
    max-width: 100%;
  }

  .services-grid,
  .cert-grid,
  .testimonials-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card .media {
    height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* write-test */

/* KRG design update */
:root {
  --bg: #05070b;
  --surface: rgba(10, 15, 23, 0.84);
  --surface-strong: rgba(8, 12, 18, 0.96);
  --text: #fff9ef;
  --text-muted: #e2d1b7;
  --accent: #d8b978;
  --accent-strong: #f4dfad;
  --gold: #d8b978;
  --border: rgba(216, 185, 120, 0.28);
}

.site-header,
body.scrolled .site-header {
  background: rgba(5, 8, 13, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.34);
}

.hero::before {
  background: url("../../images/krg-hero.png") 76% center / cover no-repeat;
  transform: none;
  filter: brightness(0.9) contrast(1.05) saturate(0.95);
}

.hero::after {
  background:
    linear-gradient(95deg, rgba(3, 6, 10, 0.95) 0%, rgba(4, 8, 13, 0.82) 37%, rgba(4, 8, 13, 0.34) 68%, rgba(3, 6, 10, 0.48) 100%),
    linear-gradient(180deg, rgba(3, 6, 10, 0.2), rgba(3, 6, 10, 0.82));
}

.hero h1 {
  max-width: 15ch;
  letter-spacing: 0;
}

.kicker {
  color: var(--gold);
}

.btn-primary,
.nav-cta {
  background: linear-gradient(140deg, #d8b978, #f0dcad);
  color: #11161d;
  border-color: rgba(255, 234, 190, 0.58);
  box-shadow: 0 14px 30px rgba(216, 185, 120, 0.22);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  padding-top: 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--accent-strong);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 120px) 0 clamp(42px, 7vw, 76px);
  background:
    linear-gradient(95deg, rgba(3, 6, 10, 0.95), rgba(4, 8, 13, 0.72) 54%, rgba(3, 6, 10, 0.88)),
    url("../../images/krg-hero.png") 78% center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
  max-width: 15ch;
  margin: 0;
  line-height: 1.08;
  font-size: clamp(2rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 62ch;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .hero {
    min-height: 86svh;
  }

  .hero::before {
    background-position: 68% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 6, 10, 0.96) 0%, rgba(4, 8, 13, 0.86) 48%, rgba(4, 8, 13, 0.3) 100%),
      linear-gradient(180deg, rgba(3, 6, 10, 0.2), rgba(3, 6, 10, 0.82));
  }

  .hero-content {
    max-width: 72%;
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.05rem, 10vw, 3.25rem);
    line-height: 1.02;
  }

  .hero p {
    max-width: 28ch;
    font-size: 0.98rem;
  }

  .page-hero {
    background-position: 68% center;
  }
}
/* KRG design correction v2 */
:root {
  --bg: #15100a;
  --surface: rgba(26, 20, 13, 0.84);
  --surface-strong: rgba(22, 16, 10, 0.94);
  --text: #fff8ec;
  --text-muted: #d9c9ae;
  --accent: #d8b978;
  --accent-strong: #f3dfad;
  --gold: #d8b978;
  --border: rgba(216, 185, 120, 0.28);
  --shadow: 0 20px 44px rgba(14, 9, 4, 0.34);
}

body {
  background: #15100a;
}

body::after {
  background:
    radial-gradient(circle at 82% 11%, rgba(216, 185, 120, 0.18), transparent 40%),
    radial-gradient(circle at 12% 84%, rgba(243, 223, 173, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(21, 16, 10, 0.48), rgba(17, 12, 8, 0.72));
}

.section-title,
.hero h1 {
  text-shadow: 0 2px 18px rgba(7, 5, 3, 0.56), 0 0 24px rgba(216, 185, 120, 0.16);
}

.site-header,
body.scrolled .site-header {
  background: rgba(18, 13, 8, 0.76);
  border-bottom-color: rgba(216, 185, 120, 0.16);
  backdrop-filter: blur(14px);
}

.nav a:hover,
.nav a[aria-current="page"],
.breadcrumb a,
.inline-link,
.store-carousel-topbar a,
.anchor-nav a {
  color: var(--accent-strong);
  text-shadow: 0 0 16px rgba(216, 185, 120, 0.22);
}

.brand-text {
  text-shadow: 0 0 14px rgba(216, 185, 120, 0.18);
}

.hero {
  align-items: start;
  min-height: min(860px, 92svh);
}

.hero::before {
  background: url("../../images/krg-hero.png") 72% center / cover no-repeat;
  transform: none;
  filter: brightness(1.18) contrast(1.02) saturate(1.02);
}

.hero::after {
  background:
    linear-gradient(95deg, rgba(12, 8, 4, 0.78) 0%, rgba(16, 11, 7, 0.58) 34%, rgba(18, 13, 8, 0.16) 66%, rgba(15, 10, 6, 0.3) 100%),
    linear-gradient(180deg, rgba(15, 10, 6, 0.08), rgba(15, 10, 6, 0.58));
}

.hero-content {
  max-width: 670px;
  margin-left: clamp(10px, 4.4vw, 72px);
  padding-top: clamp(112px, 12vh, 150px);
  padding-bottom: clamp(52px, 8vw, 90px);
}

.hero h1 {
  max-width: 13ch;
  line-height: 1.06;
  font-size: clamp(2.35rem, 5.3vw, 4.7rem);
}

.hero p {
  max-width: 42ch;
  color: rgba(255, 248, 236, 0.88);
  font-weight: 600;
}

.btn-primary,
.nav-cta {
  background: linear-gradient(140deg, #d8b978, #f3dfad);
  color: #17110a;
  border-color: rgba(255, 236, 194, 0.72);
  box-shadow: 0 14px 34px rgba(216, 185, 120, 0.24);
}

.btn-primary:hover,
.nav-cta:hover {
  box-shadow: 0 18px 40px rgba(216, 185, 120, 0.34);
}

.btn-secondary,
.btn-card,
.nav-consult,
.anchor-nav a {
  border-color: rgba(216, 185, 120, 0.44);
  color: #fff8ec;
  background: rgba(28, 20, 12, 0.54);
}

.btn-secondary:hover,
.btn-card:hover,
.nav-consult:hover,
.anchor-nav a:hover {
  border-color: rgba(243, 223, 173, 0.72);
  box-shadow: 0 14px 30px rgba(16, 10, 5, 0.32), 0 0 20px rgba(216, 185, 120, 0.16);
}

.card,
.gadget-panel,
.gadget-store-shell,
.store-carousel-shell,
.testimonials-shell,
.booking-card,
.booking-modal-card,
.detail-card,
.service-detail-aside,
.faq-item {
  border-color: rgba(216, 185, 120, 0.22);
  background: linear-gradient(170deg, rgba(28, 21, 13, 0.9), rgba(18, 13, 8, 0.74));
}

.service-card:hover,
.product-card:hover,
.testimonial-card:hover,
.gadget-card:hover {
  border-color: rgba(216, 185, 120, 0.54);
  box-shadow: 0 24px 42px rgba(12, 7, 3, 0.4), 0 0 20px rgba(216, 185, 120, 0.14);
}

.category-icon,
.about-feature-icon {
  border-color: rgba(216, 185, 120, 0.34);
  background: rgba(216, 185, 120, 0.1);
  color: var(--accent-strong);
}

.back-top {
  border-color: rgba(216, 185, 120, 0.5);
  color: var(--accent-strong);
}

.page-hero {
  background:
    linear-gradient(95deg, rgba(15, 10, 6, 0.82), rgba(18, 13, 8, 0.56) 54%, rgba(15, 10, 6, 0.5)),
    url("../../images/krg-hero.png") 76% center / cover no-repeat;
  border-bottom-color: rgba(216, 185, 120, 0.16);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.service-detail-main {
  display: grid;
  gap: 1.35rem;
}

.service-detail-section {
  max-width: 82ch;
}

.service-detail-section h2,
.key-facts h2,
.faq-item h3 {
  margin: 0 0 0.55rem;
  line-height: 1.22;
}

.service-detail-section p,
.faq-item p,
.key-facts li {
  color: var(--text-muted);
}

.service-detail-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-detail-aside img {
  border-radius: calc(var(--radius) - 4px);
  aspect-ratio: 1;
  object-fit: cover;
}

.key-facts ul {
  margin: 0;
  padding-left: 1.1rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

@media (max-width: 980px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 88svh;
  }

  .hero::before {
    background-position: 64% center;
    filter: brightness(1.22) contrast(1.02) saturate(1.02);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(12, 8, 4, 0.82) 0%, rgba(16, 11, 7, 0.68) 54%, rgba(18, 13, 8, 0.18) 100%),
      linear-gradient(180deg, rgba(15, 10, 6, 0.08), rgba(15, 10, 6, 0.62));
  }

  .hero-content {
    max-width: 84%;
    margin-left: 0;
    padding-top: 102px;
    padding-bottom: 38px;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.15rem, 9.4vw, 3.05rem);
    line-height: 1.08;
  }

  .hero p {
    max-width: 30ch;
    font-size: 0.98rem;
  }

  .page-hero {
    background-position: 64% center;
  }
}
/* KRG design correction v3 - warmer and lighter */
:root {
  --bg: #21170e;
  --surface: rgba(39, 29, 18, 0.86);
  --surface-strong: rgba(33, 24, 15, 0.95);
  --text: #fff9ef;
  --text-muted: #e2d1b7;
  --accent: #d8b978;
  --accent-strong: #f4dfad;
  --gold: #d8b978;
  --border: rgba(216, 185, 120, 0.34);
  --shadow: 0 22px 46px rgba(18, 11, 5, 0.28);
}

body {
  background: #21170e;
}

body::before {
  filter: saturate(0.92) contrast(0.98) brightness(0.84);
}

body::after {
  background:
    radial-gradient(circle at 16% 14%, rgba(244, 223, 173, 0.15), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(216, 185, 120, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(33, 23, 14, 0.42), rgba(25, 17, 10, 0.68));
}

.site-header,
body.scrolled .site-header {
  background: rgba(30, 21, 13, 0.84);
  border-bottom-color: rgba(216, 185, 120, 0.2);
}

.nav a,
.brand-text small,
.section-subtitle,
.card p,
.footer-grid p,
.footer-bottom {
  color: var(--text-muted);
}

.nav a:hover,
.nav a[aria-current="page"],
.breadcrumb a,
.inline-link,
.anchor-nav a,
.store-carousel-topbar a,
.gadget-panel-head a,
.footer-list a:hover {
  color: var(--accent-strong);
  text-shadow: 0 0 14px rgba(216, 185, 120, 0.2);
}

.hero {
  min-height: 100svh;
  align-items: start;
}

.hero::before {
  background: url("../../images/krg-hero.png") 62% center / cover no-repeat;
  filter: brightness(1.34) contrast(0.98) saturate(1.04);
  opacity: 1;
  transform: none;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(24, 15, 8, 0.7) 0%, rgba(24, 15, 8, 0.48) 36%, rgba(24, 15, 8, 0.12) 66%, rgba(24, 15, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(24, 15, 8, 0.04) 0%, rgba(24, 15, 8, 0.28) 70%, rgba(24, 15, 8, 0.5) 100%);
}

.hero-content {
  max-width: 620px;
  margin-left: clamp(10px, 4vw, 64px);
  padding-top: clamp(92px, 10vh, 132px);
  padding-bottom: clamp(44px, 7vw, 76px);
}

.hero h1 {
  max-width: 14.5ch;
  line-height: 1.05;
  letter-spacing: 0;
  font-size: clamp(2.25rem, 4.7vw, 4.35rem);
  text-shadow: 0 3px 18px rgba(10, 6, 3, 0.62);
}

.hero p {
  max-width: 40ch;
  color: rgba(255, 249, 239, 0.9);
  font-weight: 600;
  line-height: 1.58;
}

.kicker,
.badge-line,
.hero-panel-label,
.gadget-price,
.hero-stat strong {
  color: var(--accent-strong);
}

.btn-primary,
.nav-cta {
  background: linear-gradient(140deg, #d8b978, #f4dfad);
  color: #181006;
  border-color: rgba(255, 237, 196, 0.74);
  box-shadow: 0 14px 34px rgba(216, 185, 120, 0.26);
}

.btn-secondary,
.btn-card,
.nav-consult,
.anchor-nav a {
  color: #fff9ef;
  background: rgba(37, 26, 15, 0.62);
  border-color: rgba(216, 185, 120, 0.48);
}

.btn-secondary:hover,
.btn-card:hover,
.nav-consult:hover,
.anchor-nav a:hover,
.btn-primary:hover,
.nav-cta:hover {
  border-color: rgba(244, 223, 173, 0.86);
  box-shadow: 0 16px 34px rgba(18, 11, 5, 0.28), 0 0 20px rgba(216, 185, 120, 0.18);
}

.card,
.gadget-panel,
.gadget-store-shell,
.store-carousel-shell,
.testimonials-shell,
.booking-card,
.booking-modal-card,
.detail-card,
.service-detail-aside,
.faq-item,
.category-tile,
.product-card,
.testimonial-card {
  border-color: rgba(216, 185, 120, 0.24);
  background: linear-gradient(170deg, rgba(46, 33, 20, 0.9), rgba(31, 22, 13, 0.76));
}

.section-store,
.section-store-showcase,
.gadget-store-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(216, 185, 120, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(36, 25, 15, 0.82), rgba(27, 18, 10, 0.72));
  border-color: rgba(216, 185, 120, 0.16);
}

.service-card:hover,
.product-card:hover,
.testimonial-card:hover,
.gadget-card:hover {
  border-color: rgba(216, 185, 120, 0.56);
  box-shadow: 0 22px 42px rgba(18, 11, 5, 0.34), 0 0 20px rgba(216, 185, 120, 0.14);
}

.category-icon,
.about-feature-icon,
.process-step {
  border-color: rgba(216, 185, 120, 0.36);
  background: rgba(216, 185, 120, 0.12);
  color: var(--accent-strong);
}

.page-hero,
.service-detail-hero {
  background:
    linear-gradient(90deg, rgba(28, 18, 10, 0.72), rgba(28, 18, 10, 0.44) 50%, rgba(28, 18, 10, 0.18)),
    url("../../images/krg-hero.png") 64% center / cover no-repeat;
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
  }

  .hero::before {
    background-position: 57% center;
    filter: brightness(1.42) contrast(0.98) saturate(1.04);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(24, 15, 8, 0.72) 0%, rgba(24, 15, 8, 0.52) 45%, rgba(24, 15, 8, 0.08) 100%),
      linear-gradient(180deg, rgba(24, 15, 8, 0.02) 0%, rgba(24, 15, 8, 0.25) 70%, rgba(24, 15, 8, 0.44) 100%);
  }

  .hero-content {
    max-width: 76%;
    margin-left: 0;
    padding-top: 86px;
    padding-bottom: 28px;
  }

  .hero h1 {
    max-width: 12.5ch;
    font-size: clamp(1.95rem, 8.5vw, 2.65rem);
    line-height: 1.08;
  }

  .hero p {
    max-width: 28ch;
    margin: 0.9rem 0 1.15rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero .cta-row {
    gap: 0.65rem;
  }

  .hero .btn {
    padding: 0.74rem 1.05rem;
    font-size: 0.9rem;
  }

  .page-hero,
  .service-detail-hero {
    background-position: 57% center;
  }
}
/* KRG color refinement v4 - graphite champagne */
:root {
  --bg: #11110f;
  --surface: rgba(25, 24, 21, 0.88);
  --surface-strong: rgba(21, 20, 18, 0.96);
  --text: #fff8eb;
  --text-muted: #d8cbb6;
  --accent: #d6b46f;
  --accent-strong: #f2d99d;
  --gold: #d6b46f;
  --border: rgba(214, 180, 111, 0.32);
  --shadow: 0 22px 46px rgba(6, 6, 5, 0.34);
}

body {
  background: #11110f;
}

body::before {
  filter: saturate(0.82) contrast(1.02) brightness(0.78);
}

body::after {
  background:
    radial-gradient(circle at 18% 16%, rgba(214, 180, 111, 0.11), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(242, 217, 157, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(17, 17, 15, 0.3), rgba(13, 13, 12, 0.62));
}

.site-header,
body.scrolled .site-header {
  background: rgba(17, 17, 15, 0.86);
  border-bottom-color: rgba(214, 180, 111, 0.22);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(15, 15, 13, 0.66) 0%, rgba(15, 15, 13, 0.42) 34%, rgba(15, 15, 13, 0.08) 68%, rgba(15, 15, 13, 0.16) 100%),
    linear-gradient(180deg, rgba(15, 15, 13, 0.02) 0%, rgba(15, 15, 13, 0.24) 70%, rgba(15, 15, 13, 0.44) 100%);
}

.btn-secondary,
.btn-card,
.nav-consult,
.anchor-nav a {
  background: rgba(23, 22, 19, 0.66);
  border-color: rgba(214, 180, 111, 0.5);
}

.card,
.gadget-panel,
.gadget-store-shell,
.store-carousel-shell,
.testimonials-shell,
.booking-card,
.booking-modal-card,
.detail-card,
.service-detail-aside,
.faq-item,
.category-tile,
.product-card,
.testimonial-card {
  background: linear-gradient(170deg, rgba(31, 30, 26, 0.9), rgba(20, 20, 18, 0.78));
  border-color: rgba(214, 180, 111, 0.26);
}

.section-store,
.section-store-showcase,
.gadget-store-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(214, 180, 111, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(25, 24, 21, 0.84), rgba(18, 18, 16, 0.76));
}

.section-about,
.section-why {
  background:
    radial-gradient(circle at 18% 12%, rgba(214, 180, 111, 0.12), transparent 34%),
    radial-gradient(circle at 84% 26%, rgba(242, 217, 157, 0.07), transparent 36%),
    linear-gradient(180deg, rgba(24, 24, 22, 0.94), rgba(16, 16, 15, 0.95));
  border-top: 1px solid rgba(214, 180, 111, 0.18);
  border-bottom: 1px solid rgba(214, 180, 111, 0.18);
}

.about-panel,
.about-feature-item,
.about-trust-item,
.why-list,
.why-item {
  background: linear-gradient(170deg, rgba(31, 30, 26, 0.9), rgba(19, 19, 17, 0.78));
  border-color: rgba(214, 180, 111, 0.28);
  box-shadow: 0 18px 38px rgba(5, 5, 4, 0.32);
}

.about-panel {
  background:
    linear-gradient(180deg, rgba(31, 30, 26, 0.78), rgba(18, 18, 16, 0.8)),
    url("../../images/background.png") center / cover no-repeat;
}

.about-lead,
.about-feature-item p,
.about-trust-item span,
.why-item p,
.why-card p,
.price-item span,
.detail-card p,
.modal-content p,
.modal-content li {
  color: var(--text-muted);
}

.about-feature-item h3,
.why-item strong,
.why-card h3,
.detail-card h3,
.modal-content h3,
.store-carousel-topbar strong,
.store-slide-copy h3 {
  color: var(--text);
}

.about-feature-icon,
.category-icon,
.process-step,
.why-item svg {
  color: var(--accent-strong);
  stroke: var(--accent-strong);
  border-color: rgba(214, 180, 111, 0.42);
  background: rgba(214, 180, 111, 0.12);
}

.about-cta-btn,
.about-close-btn,
.store-slide-btn,
.gadget-detail-btn,
.gadget-add-btn {
  border-color: rgba(214, 180, 111, 0.5);
  background: rgba(23, 22, 19, 0.64);
  color: var(--text);
}

.gadget-price,
.price-item strong,
.store-slide-meta strong {
  color: var(--accent-strong);
}

@media (max-width: 760px) {
  .hero::after {
    background:
      linear-gradient(90deg, rgba(15, 15, 13, 0.68) 0%, rgba(15, 15, 13, 0.46) 44%, rgba(15, 15, 13, 0.08) 100%),
      linear-gradient(180deg, rgba(15, 15, 13, 0.02) 0%, rgba(15, 15, 13, 0.22) 70%, rgba(15, 15, 13, 0.42) 100%);
  }

  .section-about,
  .section-why {
    background:
      radial-gradient(circle at 20% 10%, rgba(214, 180, 111, 0.1), transparent 32%),
      linear-gradient(180deg, rgba(24, 24, 22, 0.95), rgba(15, 15, 14, 0.96));
  }
}
/* KRG UX refresh v5 - cleaner sections and motion */
:root {
  --bg: #0f1212;
  --surface: rgba(22, 24, 23, 0.9);
  --surface-strong: rgba(18, 20, 19, 0.98);
  --text: #fffaf1;
  --text-muted: #d6cbbb;
  --accent: #d7b86f;
  --accent-strong: #f4dc9f;
  --gold: #d7b86f;
  --border: rgba(215, 184, 111, 0.32);
  --shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

body {
  background: #0f1212;
}

body::after {
  background:
    radial-gradient(circle at 12% 10%, rgba(215, 184, 111, 0.1), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(120, 142, 133, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(15, 18, 18, 0.34), rgba(12, 13, 13, 0.68));
}

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 22%, rgba(215, 184, 111, 0.025));
  opacity: 0.7;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.card,
.gadget-panel,
.gadget-store-shell,
.store-carousel-shell,
.testimonials-shell,
.booking-card,
.booking-modal-card,
.detail-card,
.service-detail-aside,
.faq-item,
.category-tile,
.product-card,
.testimonial-card,
.booking-step,
.booking-action-card {
  background: linear-gradient(155deg, rgba(28, 30, 28, 0.88), rgba(17, 19, 18, 0.78));
  border-color: rgba(215, 184, 111, 0.26);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.testimonials-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(215, 184, 111, 0.12), transparent 32%),
    radial-gradient(circle at 90% 28%, rgba(95, 118, 111, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(17, 20, 20, 0.94), rgba(11, 13, 13, 0.95));
  overflow: hidden;
}

.testimonials-layout {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.testimonials-intro {
  max-width: 760px;
}

.testimonials-shell {
  padding: clamp(0.9rem, 2vw, 1.25rem);
  border-radius: 26px;
  overflow: hidden;
}

.testimonials-track {
  gap: 1rem;
}

.testimonial-card {
  min-height: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  display: grid;
  gap: 0.85rem;
  border-radius: 22px;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-top strong {
  color: var(--text-muted);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.testimonial-card .quote {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.38;
  font-weight: 750;
}

.testimonial-detail {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.testimonials-dots button {
  background: rgba(215, 184, 111, 0.28);
}

.testimonials-dots button.active {
  width: 30px;
  border-radius: 999px;
  background: var(--accent-strong);
}

.cta-section {
  background:
    linear-gradient(90deg, rgba(15, 18, 18, 0.82), rgba(15, 18, 18, 0.46)),
    url("../../images/krg-hero.png") 68% center / cover no-repeat;
  overflow: hidden;
}

.booking-redesign {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, 0.9fr);
  gap: 1rem;
  margin-top: 1.6rem;
  align-items: stretch;
}

.booking-step,
.booking-action-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1rem, 2vw, 1.25rem);
}

.booking-step {
  display: grid;
  gap: 0.55rem;
}

.booking-step span,
.booking-badge {
  width: fit-content;
  border: 1px solid rgba(215, 184, 111, 0.42);
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
  color: var(--accent-strong);
  background: rgba(215, 184, 111, 0.1);
  font-weight: 800;
}

.booking-step h3,
.booking-action-card h3 {
  margin: 0;
  line-height: 1.2;
}

.booking-step p,
.booking-action-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.booking-action-card {
  display: grid;
  gap: 0.9rem;
  background: linear-gradient(150deg, rgba(215, 184, 111, 0.16), rgba(18, 20, 19, 0.86));
}

.booking-action-card .btn {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.service-card,
.product-card,
.gadget-card,
.testimonial-card,
.booking-step,
.booking-action-card {
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}

.service-card:hover,
.product-card:hover,
.gadget-card:hover,
.testimonial-card:hover,
.booking-step:hover,
.booking-action-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 220, 159, 0.6);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34), 0 0 24px rgba(215, 184, 111, 0.12);
}

@media (max-width: 980px) {
  .booking-redesign {
    grid-template-columns: 1fr 1fr;
  }

  .booking-action-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .testimonials-shell {
    padding: 0.75rem;
    border-radius: 20px;
  }

  .testimonial-card {
    padding: 1rem;
  }

  .testimonial-card .quote {
    font-size: 1.04rem;
  }

  .booking-redesign {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.1rem;
  }

  .booking-step,
  .booking-action-card {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .cta-section {
    background-position: 58% center;
  }
}
/* KRG service pages v6 - visual SEO layout */
:root {
  --accent: #e4c36f;
  --accent-strong: #f1d892;
  --accent-soft: rgba(228, 195, 111, 0.16);
  --surface: #151716;
  --surface-2: #1c1e1c;
  --surface-3: #24251f;
  --border: rgba(228, 195, 111, 0.22);
  --text: #f7f2e8;
  --text-muted: #d8d2c6;
}

body {
  background:
    radial-gradient(circle at 14% -8%, rgba(241, 216, 146, 0.14), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(236, 230, 210, 0.08), transparent 30%),
    linear-gradient(180deg, #181a18 0%, #111313 42%, #171713 100%);
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  background: rgba(18, 19, 17, 0.84);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(228, 195, 111, 0.16);
  z-index: 80;
}

.menu-toggle {
  border-color: rgba(228, 195, 111, 0.34);
  background: rgba(255, 255, 255, 0.035);
}

.menu-toggle[aria-expanded="true"] {
  border-color: rgba(241, 216, 146, 0.72);
  background: rgba(228, 195, 111, 0.13);
}

.service-page-v2 {
  overflow: clip;
}

.service-page-v2 .breadcrumb {
  padding-top: clamp(1rem, 2vw, 1.4rem);
  padding-bottom: 0;
  color: rgba(247, 242, 232, 0.62);
}

.service-hero-v2 {
  position: relative;
  min-height: clamp(660px, 82svh, 860px);
  display: grid;
  align-items: center;
  padding: clamp(2.4rem, 5vw, 4.8rem) 0 clamp(3rem, 5vw, 5.5rem);
  isolation: isolate;
}

.service-hero-v2::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 19, 17, 0.88) 0%, rgba(18, 19, 17, 0.64) 38%, rgba(18, 19, 17, 0.28) 72%),
    var(--service-hero-image) center / cover no-repeat;
  filter: saturate(1.05) contrast(1.03) brightness(0.95);
}

.service-hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 28%, rgba(241, 216, 146, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(24, 26, 24, 0.12), #151615 100%);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
}

.service-hero-copy {
  max-width: 760px;
}

.service-hero-copy .kicker,
.service-page-v2 .kicker,
.service-page-v2 .eyebrow {
  color: var(--accent-strong);
  letter-spacing: 0.14em;
}

.service-hero-copy h1 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  text-wrap: balance;
  max-width: 10.5ch;
}

.service-hero-copy p {
  max-width: 58ch;
  color: #eee7d8;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.62;
  font-weight: 650;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.service-hero-card {
  position: relative;
  border: 1px solid rgba(241, 216, 146, 0.26);
  border-radius: 34px;
  padding: 0.72rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(22, 24, 22, 0.62));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotate(1.2deg);
}

.service-hero-card img {
  display: block;
  width: 100%;
  min-height: 420px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 26px;
  filter: saturate(1.03) contrast(1.03);
}

.service-hero-note {
  position: absolute;
  left: clamp(0.9rem, 2vw, 1.4rem);
  right: clamp(0.9rem, 2vw, 1.4rem);
  bottom: clamp(0.9rem, 2vw, 1.4rem);
  padding: 1rem;
  border: 1px solid rgba(241, 216, 146, 0.24);
  border-radius: 22px;
  background: rgba(16, 17, 16, 0.78);
  backdrop-filter: blur(16px);
}

.service-hero-note strong {
  display: block;
  color: var(--accent-strong);
  margin-bottom: 0.5rem;
}

.service-hero-note ul {
  margin: 0;
  padding-left: 1.05rem;
  color: #efe8dc;
  line-height: 1.45;
  font-size: 0.95rem;
}

.service-jumpbar-wrap {
  position: sticky;
  top: 78px;
  z-index: 45;
  background: rgba(20, 21, 19, 0.78);
  border-block: 1px solid rgba(228, 195, 111, 0.15);
  backdrop-filter: blur(16px);
}

.service-jumpbar {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-block: 0.75rem;
  scrollbar-width: none;
}

.service-jumpbar::-webkit-scrollbar {
  display: none;
}

.service-jumpbar a {
  flex: 0 0 auto;
  color: #f4ead8;
  text-decoration: none;
  border: 1px solid rgba(228, 195, 111, 0.24);
  border-radius: 999px;
  padding: 0.56rem 0.9rem;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 760;
  font-size: 0.92rem;
}

.service-jumpbar a:hover {
  background: rgba(228, 195, 111, 0.16);
  border-color: rgba(241, 216, 146, 0.5);
}

.service-section-v2 {
  position: relative;
  padding: clamp(3.4rem, 7vw, 6.8rem) 0;
}

.service-section-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 14%, rgba(228, 195, 111, 0.08), transparent 30%);
}

.service-section-v2 > .container {
  position: relative;
  z-index: 1;
}

.service-split,
.service-media-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(1.2rem, 4vw, 3.2rem);
  align-items: center;
}

.service-media-story {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.service-text-panel,
.service-image-panel,
.service-report-card,
.service-step-card,
.service-reading-card,
.service-faq-card,
.service-final-card {
  border: 1px solid rgba(228, 195, 111, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(23, 25, 23, 0.72));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.service-text-panel {
  padding: clamp(1.3rem, 3vw, 2.5rem);
  border-radius: 30px;
}

.service-text-panel-light {
  background: linear-gradient(145deg, rgba(228, 195, 111, 0.13), rgba(28, 29, 25, 0.72));
}

.service-text-panel h2,
.service-section-v2 .section-heading h2,
.service-final-card h2 {
  margin: 0.55rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.service-text-panel p,
.service-section-v2 .section-heading p,
.service-step-card p,
.service-reading-card p,
.service-faq-card p,
.service-final-card p {
  color: var(--text-muted);
  line-height: 1.72;
  font-weight: 560;
}

.service-image-panel,
.service-report-card {
  overflow: hidden;
  border-radius: 32px;
  margin: 0;
}

.service-image-panel img,
.service-report-card img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
  transform: scale(1.015);
}

.service-image-panel figcaption {
  padding: 1rem 1.1rem;
  color: #efe5d2;
  background: rgba(18, 19, 17, 0.84);
  border-top: 1px solid rgba(228, 195, 111, 0.2);
  font-weight: 680;
}

.service-process-v2 {
  background:
    linear-gradient(180deg, rgba(228, 195, 111, 0.045), rgba(255, 255, 255, 0.02)),
    #181916;
}

.service-section-v2 .section-heading {
  max-width: 850px;
  margin-bottom: clamp(1.4rem, 3vw, 2.3rem);
}

.service-step-grid,
.service-reading-grid,
.service-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-step-card,
.service-reading-card,
.service-faq-card {
  border-radius: 26px;
  padding: clamp(1.05rem, 2.2vw, 1.45rem);
}

.service-step-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.15rem;
  color: #171510;
  background: linear-gradient(135deg, #f5dea0, #d5ad54);
  font-weight: 900;
}

.service-step-card h3,
.service-reading-card summary,
.service-faq-card summary {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.22;
  font-weight: 850;
}

.service-reading-section {
  background: linear-gradient(180deg, #151715, #1a1a16);
}

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

.service-reading-card,
.service-faq-card {
  overflow: hidden;
}

.service-reading-card summary,
.service-faq-card summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-reading-card summary::-webkit-details-marker,
.service-faq-card summary::-webkit-details-marker {
  display: none;
}

.service-reading-card summary::after,
.service-faq-card summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #171510;
  background: var(--accent-strong);
  font-weight: 900;
}

.service-reading-card[open] summary::after,
.service-faq-card[open] summary::after {
  content: "-";
}

.service-final-cta {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.service-final-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: center;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(241, 216, 146, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(21, 22, 20, 0.86));
}

.service-final-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 26px;
}

.service-page-v2 .btn-primary,
.service-page-v2 .btn-secondary,
.service-final-card .btn-primary,
.service-final-card .btn-secondary {
  box-shadow: 0 16px 38px rgba(204, 166, 78, 0.22);
}

.service-page-v2 .btn-secondary {
  color: #f7efde;
  border-color: rgba(241, 216, 146, 0.42);
  background: rgba(255, 255, 255, 0.045);
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    max-height: calc(100svh - 96px);
    overflow: auto;
    padding: 0.85rem;
    border: 1px solid rgba(228, 195, 111, 0.24);
    border-radius: 22px;
    background: rgba(18, 19, 17, 0.96);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
    z-index: 100;
  }

  .nav a {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
  }

  .service-hero-grid,
  .service-split,
  .service-media-story,
  .service-final-card {
    grid-template-columns: 1fr;
  }

  .service-hero-card {
    transform: none;
    max-width: 720px;
  }

  .service-step-grid,
  .service-reading-grid,
  .service-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .service-page-v2 .breadcrumb {
    font-size: 0.82rem;
  }

  .service-hero-v2 {
    min-height: auto;
    padding: 2.4rem 0 2.8rem;
  }

  .service-hero-v2::before {
    background:
      linear-gradient(180deg, rgba(18, 19, 17, 0.48) 0%, rgba(18, 19, 17, 0.62) 42%, rgba(18, 19, 17, 0.94) 100%),
      var(--service-hero-image) center top / cover no-repeat;
    filter: saturate(1.08) contrast(1.03) brightness(0.98);
  }

  .service-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 14vw, 4.1rem);
    letter-spacing: -0.075em;
  }

  .service-hero-copy p {
    font-size: 1rem;
    line-height: 1.58;
  }

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

  .service-hero-card {
    padding: 0.55rem;
    border-radius: 24px;
  }

  .service-hero-card img {
    min-height: 300px;
    max-height: 380px;
    border-radius: 18px;
  }

  .service-hero-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.55rem;
    border-radius: 18px;
  }

  .service-jumpbar-wrap {
    top: 70px;
  }

  .service-section-v2 {
    padding: 3rem 0;
  }

  .service-text-panel,
  .service-step-card,
  .service-reading-card,
  .service-faq-card {
    border-radius: 22px;
  }

  .service-text-panel h2,
  .service-section-v2 .section-heading h2,
  .service-final-card h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  .service-step-grid,
  .service-reading-grid,
  .service-faq-grid {
    grid-template-columns: 1fr;
  }

  .service-image-panel img,
  .service-report-card img,
  .service-final-card img {
    min-height: 260px;
  }

  .service-final-card {
    border-radius: 26px;
  }
}

/* KRG service hotfix v7 - mobile header and image sizing */
.service-page-v2 ~ .site-footer,
.service-page-v2 {
  --mobile-header-height: 76px;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  text-decoration: none;
  line-height: 1.08;
}

.site-header .brand-logo {
  flex: 0 0 auto;
  display: block;
}

.site-header .brand-text {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
  max-width: min(58vw, 360px);
  line-height: 1.05;
}

.service-image-panel img,
.service-report-card img {
  aspect-ratio: 16 / 10;
  min-height: 0;
  height: clamp(260px, 34vw, 410px);
  object-fit: cover;
  object-position: center;
}

.service-report-card img {
  object-position: center 45%;
}

@media (max-width: 760px) {
  .site-header .nav-wrap {
    min-height: var(--mobile-header-height);
    gap: 0.55rem;
    padding-block: 0.42rem;
  }

  .site-header .brand {
    flex: 1 1 auto;
    gap: 0.55rem;
    overflow: hidden;
  }

  .site-header .brand-logo {
    width: 38px;
    height: 38px;
  }

  .site-header .brand-text {
    max-width: calc(100vw - 138px);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    white-space: normal;
  }

  .site-header .brand-text small,
  .site-header .brand small {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    line-height: 1.15;
  }

  .site-header .menu-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .service-jumpbar-wrap {
    top: var(--mobile-header-height);
  }

  .service-jumpbar {
    gap: 0.48rem;
    padding-block: 0.52rem;
  }

  .service-jumpbar a {
    padding: 0.45rem 0.78rem;
    font-size: 0.84rem;
  }

  .service-split,
  .service-media-story {
    gap: 1rem;
  }

  .service-image-panel,
  .service-report-card {
    border-radius: 22px;
  }

  .service-image-panel img,
  .service-report-card img {
    width: 100%;
    height: clamp(220px, 62vw, 285px);
    min-height: 0;
    aspect-ratio: 16 / 10;
    transform: none;
  }

  .service-image-panel figcaption {
    padding: 0.78rem 0.9rem;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .service-final-card img {
    height: clamp(220px, 62vw, 285px);
    min-height: 0;
  }
}

@media (max-width: 390px) {
  .site-header .brand-text {
    font-size: 0.88rem;
    max-width: calc(100vw - 130px);
  }

  .site-header .brand-text small,
  .site-header .brand small {
    font-size: 0.52rem;
    letter-spacing: 0.13em;
  }
}

@media (max-width: 980px) {
  .nav {
    top: var(--mobile-header-height, 78px);
  }
}
