:root {
  --bg: #fffdf9;
  --white: #ffffff;
  --text: #111827;
  --muted: #667085;
  --line: #ece7df;
  --soft: #fff3e6;
  --soft-2: #f7f9fc;
  --orange: #f97316;
  --orange-2: #fb923c;
  --dark: #0f172a;
  --nav-h: 84px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius-xl: 34px;
  --radius-2xl: 56px;
  --radius-blob-a: 34px 80px 34px 80px;
  --radius-blob-b: 80px 34px 80px 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(249,115,22,.12), transparent 22%),
    radial-gradient(circle at top left, rgba(59,130,246,.08), transparent 20%),
    linear-gradient(180deg, #fff 0%, #fffaf4 35%, #fff 100%);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

.wp-site-blocks, .site-main, .entry-content, .elementor-widget-container {
  overflow-x: clip;
}

.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.container-wide { width: min(1380px, calc(100% - 24px)); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.label {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #ea580c;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1 { font-size: clamp(46px, 7vw, 92px); line-height: .92; letter-spacing: -0.05em; font-weight: 900; }
h2 { font-size: clamp(34px, 4.5vw, 62px); line-height: .96; letter-spacing: -0.04em; font-weight: 900; }
h3 { font-size: 28px; line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; }
h4 { font-size: 22px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
.lead { font-size: 20px; line-height: 1.8; color: var(--muted); }
.muted { color: var(--muted); }
.accent { color: var(--orange); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; cursor: pointer; transition: .25s ease; font-size: 15px;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #1e293b; }
.btn-orange { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: white; box-shadow: 0 16px 34px rgba(249,115,22,.22); }
.btn-outline { background: white; border-color: #d0d5dd; color: var(--text); }

.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(236,231,223,.9);
  min-height: var(--nav-h);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--nav-h);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand-mark {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white; border-radius: 18px; box-shadow: 0 12px 28px rgba(249,115,22,.28);
  font-size: 22px; font-weight: 900; flex: 0 0 auto;
}
.brand small { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.nav-links {
  display: flex; justify-content: center; align-items: center; gap: 28px;
  font-size: 14px; color: #475467; flex-wrap: wrap;
}
.nav-links a { position: relative; padding: 8px 2px; font-weight: 500; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transform: scaleX(0); transform-origin: center; transition: .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.hero { padding: 56px 0 52px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 54px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy p { max-width: 760px; margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { padding: 10px 14px; border-radius: 999px; background: white; border: 1px solid var(--line); font-size: 13px; box-shadow: 0 8px 22px rgba(15,23,42,.04); }
.hero-visual {
  position: relative; border-radius: var(--radius-blob-a); border: 1px solid var(--line);
  background: rgba(255,255,255,.85); padding: 12px; box-shadow: var(--shadow);
  transform: translateY(0px); animation: floatY 6s ease-in-out infinite;
}
.hero-video {
  position: relative; overflow: hidden; min-height: 590px;
  border-radius: 28px 68px 28px 68px; background: var(--dark);
}
.hero-video img { width: 100%; height: 590px; object-fit: cover; opacity: .93; }
.hero-video::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.72), transparent 48%);
}
.play-btn {
  position: absolute; inset: 0; margin: auto; z-index: 2; width: 94px; height: 94px; border: 0; border-radius: 999px;
  display: grid; place-items: center; background: rgba(255,255,255,.94); font-size: 34px; color: var(--orange);
  box-shadow: 0 24px 56px rgba(15,23,42,.24); cursor: pointer; transition: .25s ease;
}
.play-btn:hover { transform: scale(1.06); }
.video-card {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-radius: 22px; padding: 20px;
}
.video-card p { margin-top: 8px; color: #475467; line-height: 1.6; }
.shape-a, .shape-b { position: absolute; border-radius: 999px; filter: blur(26px); z-index: 1; }
.shape-a { width: 220px; height: 220px; background: rgba(249,115,22,.14); top: -30px; left: -30px; }
.shape-b { width: 240px; height: 240px; background: rgba(59,130,246,.10); right: -40px; bottom: -30px; }

.marquee-wrap {
  overflow: hidden; border: 1px solid var(--line); background: rgba(247,249,252,.85);
  border-radius: 999px; padding: 16px 0; box-shadow: var(--shadow);
}
.marquee {
  display: flex; gap: 38px; min-width: max-content; white-space: nowrap;
  animation: marquee 24s linear infinite; padding-inline: 24px;
  font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: #667085;
}

.section-head { max-width: 780px; }
.section-head p { margin-top: 20px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.service {
  position: relative; overflow: hidden; background: white; border: 1px solid var(--line);
  box-shadow: var(--shadow); padding: 34px; min-height: 270px;
}
.service.s1 { border-radius: 34px 84px 34px 84px; }
.service.s2 { border-radius: 84px 34px 84px 34px; }
.service.s3 { border-radius: 42px 30px 96px 30px; }
.service.s4 { border-radius: 30px 96px 30px 72px; }
.service::before {
  content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: rgba(249,115,22,.08); border-radius: 999px; filter: blur(8px);
}
.service-top { display: flex; gap: 18px; align-items: flex-start; position: relative; z-index: 1; }
.service-icon {
  width: 64px; height: 64px; border-radius: 20px; background: #fff7ed; color: var(--orange);
  display: grid; place-items: center; font-size: 28px; flex: 0 0 auto;
}
.service p { margin-top: 16px; line-height: 1.8; color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag { padding: 10px 12px; font-size: 11px; border-radius: 999px; background: #f8fafc; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: #475467; }

.full-blue-wrap {
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  position: relative; background: var(--dark); color: white; overflow: hidden;
}
.dark-section { background: var(--dark); color: white; overflow: hidden; }
.dark-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at top left, rgba(249,115,22,.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(59,130,246,.12), transparent 24%);
  pointer-events: none;
}
.slider-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.slider-controls { display: flex; gap: 10px; }
.icon-btn {
  width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line);
  background: white; color: var(--text); display: grid; place-items: center; font-size: 18px;
  cursor: pointer; box-shadow: var(--shadow);
}
.icon-btn:hover { transform: scale(1.05); }

.portfolio-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 26px; margin-top: 54px; align-items: center; }
.portfolio-main {
  position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.1);
  border-radius: 34px 84px 34px 84px; background: rgba(255,255,255,.05); padding: 12px; backdrop-filter: blur(10px);
}
.portfolio-stage { position: relative; min-height: 580px; overflow: hidden; border-radius: 28px 64px 28px 64px; }
.portfolio-stage img { width: 100%; height: 580px; object-fit: cover; }
.portfolio-stage::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.74), transparent 48%); }
.portfolio-overlay { position: absolute; left: 28px; right: 28px; bottom: 28px; z-index: 2; max-width: 640px; }
.pill {
  display: inline-flex; padding: 10px 14px; border-radius: 999px; font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; background: rgba(255,255,255,.92); color: var(--orange);
}
.portfolio-overlay p { margin-top: 12px; color: rgba(255,255,255,.84); line-height: 1.7; }
.mini-cases { display: grid; gap: 16px; }
.mini-case { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 28px; padding: 24px; }
.mini-case h4 { margin: 10px 0 0; font-size: 24px; line-height: 1.2; }
.mini-case p { margin-top: 10px; color: rgba(255,255,255,.78); line-height: 1.7; }

.metrics-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 34px; }
.metric { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 28px; padding: 22px; }
.metric strong { display:block; font-size: 42px; line-height: 1; }
.metric span { display:block; margin-top: 10px; color: rgba(255,255,255,.72); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; }

.reference-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 38px; }
.reference-card { background: white; border: 1px solid var(--line); border-radius: 28px; padding: 22px; box-shadow: var(--shadow); color: var(--text); }
.reference-card ul { margin: 14px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }

.content-bands { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 42px; }
.band-card { background: white; border: 1px solid var(--line); border-radius: 32px; padding: 26px; box-shadow: var(--shadow); color: var(--text); }
.band-card p { margin-top: 12px; line-height: 1.8; color: var(--muted); }

.case-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 22px; }
.case-card { background: white; border: 1px solid var(--line); overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); color: var(--text); }
.case-card img { width: 100%; height: 220px; object-fit: cover; }
.case-card .copy { padding: 20px; }
.case-card .copy p { margin-top: 10px; color: var(--muted); line-height: 1.7; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 34px; }
.process-card { background: linear-gradient(180deg, #ffffff, #fff7ed); border: 1px solid var(--line); border-radius: 34px; padding: 24px; box-shadow: var(--shadow); color: var(--text); }
.process-card strong { font-size: 52px; color: var(--orange); display:block; line-height: .95; }
.process-card p { margin-top: 12px; color: var(--muted); line-height: 1.8; }

.partner-grid { display:grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-top: 26px; }
.partner-pill { background:#fff; border:1px solid var(--line); border-radius: 999px; padding: 16px 18px; text-align:center; font-weight:700; box-shadow: var(--shadow); color: var(--text); }

.mindbend {
  position: relative; overflow: hidden; border-radius: 48px 96px 48px 96px; border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff7ed, #ffffff 36%, #eef6ff 100%); box-shadow: var(--shadow); padding: 36px;
}
.mindbend::before, .mindbend::after { content: ''; position: absolute; border-radius: 999px; filter: blur(18px); }
.mindbend::before { width: 280px; height: 280px; background: rgba(249,115,22,.14); top: -80px; right: 8%; }
.mindbend::after { width: 240px; height: 240px; background: rgba(59,130,246,.12); bottom: -70px; left: 6%; }
.mindbend-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.orbits { position: relative; min-height: 520px; display: grid; place-items: center; }
.orbit, .core, .floating-card { position: absolute; }
.orbit { border: 1px dashed rgba(15,23,42,.16); border-radius: 999px; animation: spin 18s linear infinite; }
.orbit.o1 { width: 420px; height: 420px; }
.orbit.o2 { width: 300px; height: 300px; animation-direction: reverse; animation-duration: 14s; }
.orbit.o3 { width: 190px; height: 190px; animation-duration: 10s; }
.core {
  width: 170px; height: 170px; border-radius: 40px; background: linear-gradient(135deg, var(--dark), #1e293b);
  color: white; display: grid; place-items: center; text-align: center; padding: 20px; box-shadow: 0 26px 60px rgba(15,23,42,.18);
}
.core strong { font-size: 18px; letter-spacing: -.02em; }
.floating-card {
  min-width: 190px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow); border-radius: 22px; padding: 16px 18px; animation: floatY 5s ease-in-out infinite;
}
.floating-card small { display:block; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 800; }
.floating-card strong { display:block; margin-top: 8px; font-size: 18px; }
.fc1 { top: 18px; left: 0; }
.fc2 { top: 90px; right: 12px; animation-delay: .8s; }
.fc3 { bottom: 70px; left: 20px; animation-delay: 1.2s; }
.fc4 { bottom: 12px; right: 34px; animation-delay: .5s; }

.reviews-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.notice {
  margin-top: 26px; border: 1px solid #fde68a; background: #fffbeb; padding: 20px 22px;
  border-radius: 24px; color: #475467; line-height: 1.8;
}
.review-combo { display: grid; gap: 22px; }
.review-top { display: grid; grid-template-columns: .62fr .38fr; gap: 22px; }
.quote-card {
  overflow: hidden; border-radius: 34px 84px 34px 84px; border: 1px solid var(--line);
  background: white; padding: 12px; box-shadow: var(--shadow);
}
.quote-inner {
  height: 100%; border-radius: 28px 64px 28px 64px; background: linear-gradient(135deg, white, #fff7ed);
  padding: 28px;
}
.person { display: flex; gap: 14px; align-items: center; }
.person img { width: 68px; height: 68px; border-radius: 999px; object-fit: cover; box-shadow: 0 10px 26px rgba(15,23,42,.12); }
.stars { display: flex; gap: 4px; margin-top: 18px; color: #f59e0b; }
.quote-mark { font-size: 34px; color: #fb923c; margin-top: 20px; }
.quote-text { margin-top: 16px; line-height: 1.9; color: #475467; font-size: 18px; }

.portrait-card {
  position: relative; overflow: hidden; border-radius: 54px 28px 72px 28px;
  border: 1px solid var(--line); background: white; padding: 12px; box-shadow: var(--shadow);
  min-height: 430px;
}
.portrait-card img { width: 100%; height: 100%; min-height: 406px; object-fit: cover; border-radius: 46px 22px 60px 22px; }
.floating-nav { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; justify-content: space-between; }
.floating-nav button {
  width: 42px; height: 42px; border: 0; border-radius: 999px; background: rgba(255,255,255,.94); box-shadow: var(--shadow);
  cursor: pointer; font-size: 17px;
}

.video-review {
  overflow: hidden; border-radius: 48px; border: 1px solid rgba(255,255,255,.08); background: var(--dark);
  color: white; padding: 26px; box-shadow: var(--shadow);
}
.video-review-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.video-review-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 22px; margin-top: 24px; }
.video-preview { position: relative; overflow: hidden; border-radius: 34px; min-height: 390px; background: rgba(255,255,255,.06); }
.video-preview img { width: 100%; height: 390px; object-fit: cover; }
.video-preview::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 44%); }
.video-side {
  border-radius: 28px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.05);
  padding: 24px; display: flex; flex-direction: column; justify-content: center;
}
.video-side p { margin-top: 14px; color: rgba(255,255,255,.78); line-height: 1.8; }
.video-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.video-tags span { padding: 10px 12px; border-radius: 999px; background: rgba(255,255,255,.08); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }

.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: start; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature {
  background: white; border: 1px solid #fed7aa; box-shadow: var(--shadow);
  border-radius: 40px 20px 40px 20px; padding: 26px;
}
.feature-icon {
  width: 50px; height: 50px; border-radius: 18px; display: grid; place-items: center;
  background: #ffedd5; color: var(--orange); font-size: 24px;
}
.feature p { margin-top: 12px; color: var(--muted); line-height: 1.8; }

.faq-list { margin-top: 54px; display: grid; gap: 16px; }
.faq {
  border: 1px solid var(--line); background: #f8fafc; border-radius: 40px 20px 40px 20px;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq-q {
  width: 100%; border: 0; background: transparent; text-align: left; cursor: pointer;
  padding: 24px 26px; display: flex; justify-content: space-between; gap: 16px; align-items: center;
  font: inherit; font-size: 20px; font-weight: 800; color: var(--text);
}
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .32s ease, padding .32s ease;
  padding: 0 26px; color: var(--muted); line-height: 1.9;
}
.faq.open .faq-a { max-height: 320px; padding: 0 26px 24px; }

.cta-wrap {
  border-radius: 48px 96px 48px 96px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2), #fbbf24);
  color: white; box-shadow: 0 40px 100px rgba(249,115,22,.28); padding: 40px;
}
.cta-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: start; }
.check-list { display: grid; gap: 12px; margin-top: 24px; }
.check-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 22px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
}
.form-card {
  background: white; color: var(--text); border-radius: 42px 22px 42px 22px; box-shadow: var(--shadow); padding: 28px;
}
.form-grid { display: grid; gap: 14px; margin-top: 22px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, textarea {
  width: 100%; border: 1px solid #d0d5dd; background: white; border-radius: 18px;
  padding: 16px 18px; font: inherit; color: var(--text); outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(249,115,22,.10); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .hero-grid, .portfolio-grid, .reviews-grid, .why-grid, .cta-grid, .video-review-grid, .mindbend-grid { grid-template-columns: 1fr; }
  .review-top { grid-template-columns: 1fr; }
  .portfolio-stage img, .hero-video img { height: 500px; }
  .hero-video, .portfolio-stage { min-height: auto; }
  .process-grid, .reference-grid, .content-bands, .case-row, .metrics-band, .partner-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
}

@media (max-width: 820px) {
  .services-grid, .feature-list, .two-col, .process-grid, .reference-grid, .content-bands, .case-row, .metrics-band, .partner-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding-top: 36px; }
  .hero-video img, .portfolio-stage img { height: 420px; }
  .video-preview img { height: 280px; }
  .cta-wrap { padding: 24px; border-radius: 34px; }
  .container, .container-wide { width: min(100%, calc(100% - 20px)); }
  :root { --nav-h: 76px; }
  .brand { min-width: auto; }
}
