:root {
  --bg: #fff8f1;
  --bg-2: #fffdf9;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --surface-warm: #fff1e2;
  --text: #21160f;
  --heading: #170e08;
  --muted: #76685d;
  --muted-2: #a38f7f;
  --line: rgba(202, 118, 44, 0.18);
  --line-strong: rgba(220, 112, 19, 0.28);
  --orange: #f58220;
  --orange-2: #ffb15e;
  --orange-3: #ff6a00;
  --amber: #ffc46b;
  --cream: #fff4e8;
  --brown: #6f3b13;
  --shadow-soft: 0 20px 60px rgba(138, 78, 24, 0.10);
  --shadow-card: 0 26px 80px rgba(133, 75, 21, 0.14);
  --shadow-orange: 0 18px 44px rgba(245, 130, 32, 0.26);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(245, 130, 32, 0.22);
  color: var(--heading);
}

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

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

button, input, textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--orange-3), var(--orange), var(--amber));
  box-shadow: 0 0 22px rgba(245, 130, 32, 0.42);
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 130, 32, 0.18), rgba(255, 177, 94, 0.08) 36%, transparent 68%);
  filter: blur(8px);
  transition: opacity .25s ease;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 166, 77, 0.28), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 106, 0, 0.15), transparent 32%),
    radial-gradient(circle at 62% 92%, rgba(255, 196, 107, 0.22), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #fff2e5 48%, #fffdf8 100%);
}

.grid-noise {
  position: absolute;
  inset: 0;
  opacity: .62;
  background-image:
    linear-gradient(rgba(127, 75, 20, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 75, 20, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.85) 36%, transparent 92%);
}

.orb {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  filter: blur(76px);
  opacity: 0.46;
  animation: orbDrift 15s var(--ease-out) infinite alternate;
}

.orb-one {
  right: -110px;
  top: 5%;
  background: #ff8a22;
}

.orb-two {
  left: -120px;
  bottom: 8%;
  background: #ffd087;
  animation-delay: 3s;
}

@keyframes orbDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(42px, -34px, 0) scale(1.08); }
}

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px) saturate(1.3);
  border-radius: 999px;
  box-shadow: 0 14px 42px rgba(116, 69, 28, 0.10);
  z-index: 100;
  transition: min-height .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}

.navbar.scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(245, 130, 32, 0.22);
  box-shadow: 0 20px 56px rgba(116, 69, 28, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--heading);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255, 238, 218, .82));
  border: 1px solid rgba(245, 130, 32, 0.20);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.52), 0 10px 24px rgba(245, 130, 32, 0.14);
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.22rem;
}

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

.nav-menu a {
  position: relative;
  padding: 12px 14px;
  color: #6e6257;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.nav-menu a:hover {
  color: var(--heading);
  background: rgba(245, 130, 32, 0.08);
  transform: translateY(-1px);
}

.nav-menu .nav-cta {
  color: #ffffff;
  padding-inline: 18px;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  box-shadow: 0 14px 30px rgba(245, 130, 32, 0.22);
}

.nav-menu .nav-cta:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #f05f00, var(--orange), #ffc072);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 16px;
  width: 46px;
  height: 46px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--heading);
  border-radius: 999px;
  transition: .25s ease;
}

.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 27px; }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 106px 0;
}

.hero {
  min-height: 100svh;
  padding-top: 158px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange-3);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-3), var(--amber));
}

h1, h2, h3 {
  color: var(--heading);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.05rem, 6.8vw, 6.65rem);
}

.hero h1 {
  background: linear-gradient(135deg, #170e08 0%, #3c2412 42%, #f58220 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.72;
  max-width: 650px;
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .28s var(--ease-out), box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.48), transparent);
  transform: translateX(-100%);
  transition: opacity .3s ease;
}

.button:hover::after {
  opacity: 1;
  animation: sheen 1s ease;
}

@keyframes sheen {
  to { transform: translateX(100%); }
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  box-shadow: var(--shadow-orange);
}

.button-secondary {
  color: var(--heading);
  border-color: rgba(245, 130, 32, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(132, 81, 35, 0.08);
}

.button:hover {
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.visual-shell {
  position: relative;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(245, 130, 32, 0.20);
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255, 245, 235, .62)),
    radial-gradient(circle at 18% 12%, rgba(255, 177, 94, .28), transparent 36%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px) saturate(1.2);
  overflow: hidden;
  transform-style: preserve-3d;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.42) 42%, transparent 58%);
  transform: translateX(-130%);
  animation: panelSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes panelSweep {
  0%, 56% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

.visual-topbar {
  display: flex;
  gap: 8px;
  padding: 6px 4px 22px;
}

.visual-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.24);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  gap: 14px;
}

.dash-card {
  min-height: 145px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 16px 42px rgba(138, 78, 24, 0.08);
}

.dash-card.big {
  grid-row: span 2;
  min-height: 304px;
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 130, 32, 0.18), transparent 45%),
    linear-gradient(145deg, #fffefe, #fff1e4);
}

.dash-card.wide {
  grid-column: span 2;
}

.label, .floating-card span {
  display: block;
  color: var(--muted-2);
  font-size: 0.86rem;
  font-weight: 900;
}

.dash-card strong {
  display: block;
  margin-top: 10px;
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.075em;
}

.dash-card.big strong, .performance-grid strong, .case-metrics-grid strong {
  background: linear-gradient(135deg, #d85100 0%, var(--orange) 48%, #ffbd68 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 150px;
  margin-top: 32px;
}

.mini-chart i {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(to top, var(--orange-3), var(--orange-2));
  box-shadow: inset 0 -12px 16px rgba(159, 65, 0, 0.16), 0 12px 24px rgba(245, 130, 32, 0.18);
  transform-origin: bottom;
  animation: growBar 1.9s ease-in-out infinite alternate;
}

.mini-chart i:nth-child(1) { height: 36%; }
.mini-chart i:nth-child(2) { height: 62%; animation-delay: 0.16s; }
.mini-chart i:nth-child(3) { height: 48%; animation-delay: 0.32s; }
.mini-chart i:nth-child(4) { height: 78%; animation-delay: 0.48s; }
.mini-chart i:nth-child(5) { height: 92%; animation-delay: 0.64s; }

@keyframes growBar {
  to { transform: scaleY(.80); opacity: .78; }
}

.pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pipeline span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 130, 32, 0.18);
  color: var(--brown);
  background: rgba(255, 244, 232, 0.72);
  font-weight: 900;
  font-size: 0.86rem;
}

.floating-card {
  position: absolute;
  padding: 16px 18px;
  border: 1px solid rgba(245, 130, 32, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  animation: floatCard 5.3s ease-in-out infinite alternate;
}

.floating-card strong {
  display: block;
  margin-top: 5px;
  color: var(--heading);
  font-size: 1.18rem;
}

.float-one { top: 58px; right: -20px; }
.float-two { left: -24px; bottom: 42px; animation-delay: 1.4s; }

@keyframes floatCard {
  to { transform: translateY(-14px); }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2, .why-panel h2, .package-copy h2, .contact-copy h2 {
  font-size: clamp(2.38rem, 4.25vw, 4.75rem);
}

.section-heading p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 38px;
}

.lead {
  color: var(--heading);
  font-size: clamp(1.16rem, 1.9vw, 1.75rem);
  line-height: 1.48;
  letter-spacing: -0.04em;
}

.lead.muted {
  color: var(--muted);
}

.pillar-grid, .service-grid, .value-grid, .performance-grid, .case-metrics-grid {
  display: grid;
  gap: 18px;
}

.pillar-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pillar, .service-card, .value-card, .timeline-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform .34s var(--ease-out), box-shadow .34s ease, border-color .34s ease, background .34s ease;
}

.pillar:hover, .service-card:hover, .value-card:hover, .timeline-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(245, 130, 32, 0.34);
  box-shadow: var(--shadow-card);
}

.icon, .service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #ffffff;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  box-shadow: 0 16px 34px rgba(245, 130, 32, 0.22);
  font-weight: 900;
}

.pillar h3, .service-card h3, .value-card h3, .timeline-item h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.pillar p, .service-card p, .value-card p, .timeline-item p, .package-copy p {
  color: var(--muted);
  line-height: 1.66;
}

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

.case-stack {
  display: grid;
  gap: 24px;
}

.case-detail {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(255, 245, 235, .70)),
    radial-gradient(circle at 88% 15%, rgba(245, 130, 32, .18), transparent 30%);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.case-detail::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-3), var(--orange), var(--amber));
}

.case-detail::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.10);
  filter: blur(8px);
  pointer-events: none;
}

.case-detail-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  margin-bottom: 30px;
}

.case-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-3);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
}

.case-detail h3 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  margin-bottom: 14px;
}

.case-detail-head p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.03rem;
}

.case-badge {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--brown);
  border: 1px solid rgba(245, 130, 32, 0.22);
  background: rgba(255, 244, 232, 0.78);
  font-weight: 900;
  font-size: .86rem;
}

.case-content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: start;
}

.case-notes {
  display: grid;
  gap: 18px;
}

.case-notes > div {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(245, 130, 32, 0.15);
  background: rgba(255, 255, 255, 0.62);
}

.case-notes h4 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.case-notes p, .case-notes li {
  color: var(--muted);
  line-height: 1.65;
}

.case-notes ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

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

.case-metrics-grid span {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(138, 78, 24, 0.07);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.3;
}

.case-metrics-grid strong {
  display: block;
  font-size: clamp(1.65rem, 2.8vw, 2.65rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.why-panel, .package-card, .contact-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255, 242, 228, .68)),
    radial-gradient(circle at 8% 18%, rgba(245, 130, 32, .12), transparent 30%);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px);
}

.why-panel {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 18px;
}

.why-panel p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

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

.package-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.package-copy p {
  margin: 18px 0 30px;
  font-size: 1.08rem;
}

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

.package-list div {
  position: relative;
  padding: 18px 18px 18px 50px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 28px rgba(138, 78, 24, 0.06);
}

.package-list div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-3), var(--orange-2));
  box-shadow: 0 0 0 6px rgba(245, 130, 32, 0.12);
}

.package-list strong, .package-list span {
  display: block;
}

.package-list strong {
  margin-bottom: 6px;
  color: var(--heading);
}

.package-list span {
  color: var(--muted);
  line-height: 1.55;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.timeline-line {
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, transparent, var(--orange-3), var(--orange-2), transparent);
}

.timeline-item {
  position: relative;
  padding: 24px 24px 24px 90px;
}

.timeline-item span {
  position: absolute;
  left: 15px;
  top: 22px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(245, 130, 32, 0.20);
}

.performance-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-card);
}

.performance-grid div {
  min-height: 166px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #fff2e5);
  border: 1px solid rgba(245, 130, 32, 0.16);
}

.performance-grid strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3.25rem);
  letter-spacing: -0.075em;
  margin-bottom: 12px;
  line-height: 1;
}

.performance-grid span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.contact {
  padding-top: 64px;
}

.contact-shell {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: center;
  padding: clamp(26px, 4.5vw, 50px);
}

.contact-copy p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.08rem;
  max-width: 560px;
}

.contact-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-mini-list span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 130, 32, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: var(--brown);
  font-weight: 900;
  font-size: .86rem;
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-option {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 38px rgba(138, 78, 24, 0.07);
  transition: transform .3s var(--ease-out), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.contact-option:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 130, 32, 0.34);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 56px rgba(138, 78, 24, 0.12);
}

.contact-option-primary {
  background: linear-gradient(145deg, rgba(255, 255, 255, .90), rgba(255, 239, 222, .80));
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  box-shadow: 0 14px 30px rgba(245, 130, 32, 0.22);
}

.contact-icon svg {
  width: 27px;
  height: 27px;
}

.contact-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-wa svg .wa-bubble {
  fill: none;
  stroke-width: 1.55;
}

.contact-icon-wa svg .wa-phone {
  fill: currentColor;
  stroke: none;
}

.contact-detail {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.contact-detail small {
  color: var(--orange-3);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.contact-detail strong {
  color: var(--heading);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.contact-detail em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
  font-size: .92rem;
}

.contact-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-3);
  background: rgba(245, 130, 32, 0.10);
  font-weight: 900;
}

.contact-bottom-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: var(--muted);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px dashed rgba(245, 130, 32, 0.22);
}

.contact-bottom-note strong {
  color: var(--heading);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
}

.footer strong, .footer span {
  display: block;
}

.footer strong {
  color: var(--heading);
  margin-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  filter: blur(10px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out), filter .85s var(--ease-out);
}

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

.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }


/* Trusted Brands Marquee */
.trusted {
  width: min(100%, 1440px);
  padding-top: 78px;
  padding-bottom: 92px;
  overflow: hidden;
}

.trusted-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 130, 32, 0.18);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 177, 94, 0.25), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(255, 106, 0, 0.13), transparent 28%),
    rgba(255, 255, 255, 0.60);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.2);
}

.trusted-copy h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  background: linear-gradient(135deg, var(--heading), #3b2311 56%, var(--orange-3));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.trusted-copy p {
  margin-top: 18px;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.trusted-stats {
  min-width: 330px;
  display: grid;
  gap: 10px;
}

.trusted-stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border-radius: 18px;
  color: var(--muted);
  font-weight: 800;
  border: 1px solid rgba(245, 130, 32, 0.18);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(145, 79, 22, 0.07);
}

.trusted-stats strong {
  color: var(--orange-3);
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.brand-marquee {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 6px 0;
}

.marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.marquee-track {
  flex: 0 0 auto;
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  animation: trustedMarquee 42s linear infinite;
  will-change: transform;
}

.marquee-row-reverse .marquee-track {
  animation-name: trustedMarqueeReverse;
  animation-duration: 48s;
}

.brand-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.brand-logo-item {
  width: 172px;
  height: 88px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 16px 20px;
  border-radius: 24px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255, 245, 235, .78)),
    radial-gradient(circle at 12% 0%, rgba(255, 177, 94, 0.22), transparent 42%);
  box-shadow: 0 16px 42px rgba(117, 65, 19, 0.08);
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .35s ease, filter .35s ease;
}

.brand-logo-item:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(245, 130, 32, 0.34);
  box-shadow: 0 24px 60px rgba(245, 130, 32, 0.16);
}

.brand-logo-item img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: saturate(.92) contrast(1.02);
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(160px, 16vw);
  z-index: 2;
  pointer-events: none;
}

.marquee-fade.left {
  left: 0;
  background: linear-gradient(90deg, var(--bg), rgba(255, 248, 241, 0));
}

.marquee-fade.right {
  right: 0;
  background: linear-gradient(270deg, var(--bg), rgba(255, 248, 241, 0));
}

@keyframes trustedMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes trustedMarqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (min-width: 981px) {
  .service-card:nth-child(2), .service-card:nth-child(5) {
    transform: translateY(18px);
  }

  .service-card:nth-child(2):hover, .service-card:nth-child(5):hover {
    transform: translateY(10px);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

  .float-one { right: 14px; }
  .float-two { left: 14px; }
}

@media (max-width: 980px) {
  .trusted-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .trusted-stats {
    min-width: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .trusted-stats span {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .about-layout, .why-panel, .package-card, .contact-shell, .case-content-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .cursor-glow { display: none; }

  .trusted {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .trusted-shell {
    width: calc(100% - 24px);
    padding: 24px;
    border-radius: 28px;
  }

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

  .brand-logo-item {
    width: 146px;
    height: 76px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .brand-logo-item img {
    max-height: 48px;
  }

  .marquee-track {
    gap: 12px;
    padding-right: 12px;
    animation-duration: 32s;
  }

  .navbar {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 68px;
    border-radius: 24px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(245, 130, 32, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(22px);
    box-shadow: 0 22px 60px rgba(116, 69, 28, 0.16);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 15px 16px;
    border-radius: 16px;
  }

  .nav-menu .nav-cta {
    text-align: center;
  }

  .nav-toggle.active span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle.active span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.55rem);
  }

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

  .button {
    width: 100%;
  }

  .visual-shell {
    min-height: auto;
  }

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

  .dash-card.big, .dash-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .mini-chart {
    height: 120px;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .pillar-grid, .service-grid, .value-grid, .performance-grid, .case-metrics-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-head {
    grid-template-columns: 1fr;
  }

  .case-badge {
    width: fit-content;
  }

  .case-metrics-grid span {
    min-height: 118px;
  }

  .timeline-item {
    padding-left: 76px;
  }

  .contact-option {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .contact-icon {
    width: 52px;
    height: 52px;
  }

  .contact-arrow {
    display: none;
  }

  .contact-bottom-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .section {
    width: min(100% - 20px, 1180px);
  }

  .navbar {
    width: calc(100% - 20px);
    padding-inline: 12px;
  }

  .brand-text {
    display: none;
  }

  .case-detail, .why-panel, .package-card, .contact-shell {
    border-radius: 26px;
  }

  .contact-option {
    padding: 14px;
    border-radius: 20px;
  }
}
