:root {
  --bg: #fff8f2;
  --bg-soft: #fff1e6;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --surface-dark: #131112;
  --surface-dark-2: #1c1719;
  --text: #1d1618;
  --muted: #6c5c60;
  --muted-light: rgba(255, 244, 244, 0.7);
  --line: rgba(123, 73, 67, 0.14);
  --primary: #ef3b2d;
  --primary-deep: #c3281f;
  --accent: #ffb36f;
  --accent-2: #ffd7b4;
  --shadow-sm: 0 14px 30px rgba(80, 35, 24, 0.08);
  --shadow-md: 0 24px 60px rgba(80, 35, 24, 0.12);
  --shadow-lg: 0 40px 100px rgba(42, 13, 10, 0.18);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 194, 145, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(239, 59, 45, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf6 0%, #fff7f1 48%, #fff4ec 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

p {
  margin: 0;
}

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

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.sec {
  padding: 110px 0;
  position: relative;
}

.sec-head {
  margin-bottom: 58px;
}

.sec-label,
.sec-label-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sec-label::before,
.sec-label-light::before {
  content: '';
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.sec-label {
  color: var(--primary);
}

.sec-label-light {
  color: #ffb39e;
}

.sec-title {
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  color: var(--text);
}

.sec-title-light {
  color: #fff7f4;
}

.sec-sub {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.sec-sub-light {
  color: rgba(255, 241, 236, 0.72);
}

.btn-red,
.btn-ghost,
.btn-red-sm,
.sm-btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-red,
.sm-btn-red {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b4f 100%);
  box-shadow: 0 16px 40px rgba(239, 59, 45, 0.28);
}

.btn-red:hover,
.sm-btn-red:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(239, 59, 45, 0.34);
}

.btn-red {
  padding: 15px 28px;
}

.sm-btn-red {
  padding: 12px 22px;
  font-size: 0.95rem;
}

.btn-ghost {
  padding: 15px 28px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  color: var(--text);
  background: #fff;
  transform: translateY(-2px);
}

.btn-red-sm {
  padding: 11px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b4f 100%);
  font-size: 0.84rem;
}

.topbar {
  background: #120f11;
  color: rgba(255, 238, 233, 0.7);
  font-size: 0.85rem;
  padding: 9px 0;
}

.topbar-inner,
.topbar-left,
.topbar-right,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-inner {
  justify-content: space-between;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar a {
  color: rgba(255, 238, 233, 0.72);
}

.topbar a:hover {
  color: #fff;
}

#mainNav {
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: 12px 0;
  background: rgba(255, 250, 246, 0.82);
  border-bottom: 1px solid rgba(130, 92, 83, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

#mainNav.scrolled {
  padding: 8px 0;
  background: rgba(255, 248, 242, 0.96);
  box-shadow: 0 10px 30px rgba(59, 20, 12, 0.08);
}

.navbar-brand img,
.footer-logo {
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 52px;
}

.footer-logo {
  height: 52px;
  max-width: 210px;
  padding: 8px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-lockup strong {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: none;
  background: linear-gradient(135deg, #1d1618 0%, #ef3b2d 72%, #ff8a61 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 24px rgba(239, 59, 45, 0.08);
}

#mainNav .nav-link {
  position: relative;
  padding: 10px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: rgba(29, 22, 24, 0.78) !important;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: calc(100% - 28px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--primary) !important;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 181, 113, 0.18), transparent 18%),
    radial-gradient(circle at 78% 22%, rgba(255, 108, 78, 0.2), transparent 22%),
    linear-gradient(140deg, #100d10 0%, #1b1518 42%, #311717 100%);
  min-height: calc(100vh - 90px);
}

.hero-grid,
.hero-noise,
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 90%);
}

.hero-noise {
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 45% 70%, rgba(255,255,255,0.2) 0 1px, transparent 1px);
  background-size: 140px 140px;
}

.hero-glow-1 {
  background: radial-gradient(circle at 70% 35%, rgba(239, 59, 45, 0.22), transparent 28%);
}

.hero-glow-2 {
  background: radial-gradient(circle at 20% 80%, rgba(255, 183, 109, 0.14), transparent 24%);
}

.hero-container {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 188, 174, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffd0c6;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-pill::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffddad, #ff7b61);
  box-shadow: 0 0 18px rgba(255, 157, 113, 0.7);
}

.hero-heading {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  color: #fff8f4;
}

.hero-sub {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 239, 234, 0.75);
  font-size: 1.08rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 244, 240, 0.88);
  font-size: 0.9rem;
}

.hero-trust i {
  color: var(--accent);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  width: fit-content;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.hero-stat {
  min-width: 110px;
}

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
}

.hero-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255, 239, 234, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-svg-lines {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  stroke: url(#lineGrad);
  stroke-width: 1.3;
  fill: none;
  opacity: 0.72;
  animation: spinSlow 20s linear infinite;
}

.hero-device {
  position: absolute;
  inset: 64px 42px 32px 54px;
  display: grid;
  place-items: center;
}

.hero-device img {
  position: relative;
  z-index: 2;
  max-height: 460px;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.4));
  animation: floatY 5.6s ease-in-out infinite;
}

.hero-device-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 202, 187, 0.16);
}

.hero-device-ring-a {
  inset: 12% 12%;
  animation: pulseRing 5s ease-in-out infinite;
}

.hero-device-ring-b {
  inset: 2% 2%;
  animation: pulseRing 5s ease-in-out infinite 1.2s;
}

.hero-float {
  position: absolute;
  z-index: 3;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  animation: floatY 5.2s ease-in-out infinite;
}

.hero-float strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
}

.hero-float span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-float-1 {
  top: 2%;
  left: -2%;
}

.hero-float-2 {
  top: 30%;
  right: -2%;
  animation-delay: 0.8s;
}

.hero-float-3 {
  left: 10%;
  bottom: 0;
  animation-delay: 1.4s;
}

.proof-strip {
  position: relative;
  margin-top: -38px;
  z-index: 4;
}

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

.proof-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(239, 59, 45, 0.12), rgba(255, 179, 111, 0.34));
  color: var(--primary);
  font-size: 1.4rem;
}

.proof-card h2 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.proof-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.services-shell {
  overflow: hidden;
}

.services-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.services-bg-shape-a {
  top: 120px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 191, 145, 0.22);
}

.services-bg-shape-b {
  bottom: 80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(239, 59, 45, 0.1);
}

.svc-card,
.review-card,
.contact-form-box,
.process-item,
.why-card,
.accordion-item,
.map-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.svc-card {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.svc-img-box {
  position: relative;
  height: 236px;
  overflow: hidden;
}

.svc-img-box::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(17, 12, 12, 0.22));
}

.svc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.svc-card:hover .svc-img-box img {
  transform: scale(1.08);
}

.svc-hover-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(239, 59, 45, 0.1), rgba(33, 17, 18, 0.64));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.svc-card:hover .svc-hover-overlay {
  opacity: 1;
}

.svc-body {
  padding: 24px;
}

.svc-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 59, 45, 0.12), rgba(255, 179, 111, 0.38));
  color: var(--primary);
  font-size: 1.4rem;
}

.svc-body h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.svc-body p {
  color: var(--muted);
  margin-bottom: 16px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
}

.svc-link:hover {
  gap: 12px;
}

.process-sec {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 196, 149, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
}

.process-sub {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 460px;
}

.process-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.process-metrics div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
}

.process-metrics strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
}

.process-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 28px;
  border-radius: 28px;
  transition: transform 0.3s ease;
}

.process-item:hover {
  transform: translateX(4px);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 59, 45, 0.14), rgba(255, 179, 111, 0.44));
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.process-item h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.process-item p {
  color: var(--muted);
}

.about-sec {
  overflow: hidden;
}

.about-img-box {
  position: relative;
  padding: 20px 24px 54px 0;
}

.about-pattern {
  position: absolute;
  inset: 0 50px 70px 0;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 177, 107, 0.24), rgba(239, 59, 45, 0.16)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0 8px, transparent 8px 16px);
}

.about-img-box img {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.about-exp-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(230px, 78%);
  padding: 22px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #ff6a52, #d32d25);
  box-shadow: 0 24px 60px rgba(211, 45, 37, 0.32);
}

.about-exp-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
}

.about-exp-txt {
  opacity: 0.92;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  height: 100%;
  border-radius: 18px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(255,255,255,0.7);
}

.about-feat i,
.about-panel i {
  color: var(--primary);
}

.about-panels {
  display: grid;
  gap: 14px;
}

.about-panel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-sm);
}

.about-panel i {
  font-size: 1.4rem;
}

.about-panel strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Space Grotesk', sans-serif;
}

.about-panel span {
  color: var(--muted);
}

.brands-bar {
  padding: 28px 0 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.12));
  border-top: 1px solid rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(130, 92, 83, 0.08);
  overflow: hidden;
}

.brands-title {
  margin-bottom: 18px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(108, 92, 96, 0.72);
}

.ticker-wrap {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.ticker-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: rgba(112, 84, 79, 0.7);
  white-space: nowrap;
}

.sec-dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 140, 109, 0.12), transparent 22%),
    radial-gradient(circle at 80% 70%, rgba(255, 190, 126, 0.1), transparent 26%),
    linear-gradient(160deg, #120f11 0%, #1a1416 58%, #26181b 100%);
}

.why-card {
  height: 100%;
  padding: 30px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 184, 166, 0.22);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: rgba(255, 179, 111, 0.12);
  color: #ffae77;
  font-size: 1.5rem;
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #fff8f4;
}

.why-card p {
  color: rgba(255, 241, 236, 0.68);
}

.reviews-sec {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 200, 150, 0.16), transparent 18%),
    transparent;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  margin-bottom: 14px;
  color: #f5a623;
  letter-spacing: 0.2em;
}

.review-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-style: italic;
}

.reviewer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.reviewer-av {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff8f67);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.reviewer strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
}

.reviewer small {
  color: var(--muted);
}

.faq-sec {
  overflow: hidden;
}

.faq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.faq-blob-a {
  top: 120px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: rgba(239, 59, 45, 0.08);
}

.faq-blob-b {
  bottom: 60px;
  left: -70px;
  width: 210px;
  height: 210px;
  background: rgba(255, 188, 123, 0.16);
}

.faq-copy {
  max-width: 420px;
  color: var(--muted);
}

.faq-accordion .accordion-item {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 22px;
}

.faq-accordion .accordion-button {
  padding: 20px 22px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(239, 59, 45, 0.03);
}

.faq-accordion .accordion-body {
  color: var(--muted);
  padding: 0 22px 22px;
}

.contact-sec {
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.4));
}

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

.contact-side {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-sm);
}

.contact-side-head {
  margin-bottom: 22px;
}

.contact-side-head h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.contact-side-head p {
  color: var(--muted);
}

.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(125, 92, 83, 0.1);
}

.cinfo-item:last-of-type {
  margin-bottom: 0;
}

.cinfo-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 59, 45, 0.12), rgba(255, 179, 111, 0.36));
  color: var(--primary);
  font-size: 1.2rem;
}

.cinfo-item h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.cinfo-item p,
.cinfo-item a {
  color: var(--muted);
}

.cinfo-item a:hover,
.footer-contact-ul a:hover,
.footer-ul a:hover {
  color: var(--primary);
}

.contact-badges {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.82);
}

.contact-badges i {
  color: var(--primary);
}

.contact-map-card {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255,255,255,0.76);
  box-shadow: var(--shadow-sm);
}

.contact-map-frame {
  min-height: 280px;
  margin-bottom: 18px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.contact-map-copy h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.contact-map-copy p {
  color: var(--muted);
}

.contact-form-box {
  padding: 34px;
  border-radius: 30px;
}

.form-head {
  margin-bottom: 22px;
}

.form-head h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.form-head p {
  color: var(--muted);
}

.req {
  color: var(--primary);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-control,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(122, 91, 83, 0.14) !important;
  background: rgba(255,255,255,0.86) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(239, 59, 45, 0.42) !important;
  box-shadow: 0 0 0 4px rgba(239, 59, 45, 0.08) !important;
}

textarea.form-control {
  resize: vertical;
  min-height: 138px;
}

.form-submit-btn {
  width: 100%;
  border: 0;
  padding: 16px 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b4f 100%);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(239, 59, 45, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(239, 59, 45, 0.3);
}

.form-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.88;
}

.form-status {
  display: none;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0d6b3a;
  background: rgba(73, 193, 114, 0.14);
  border: 1px solid rgba(73, 193, 114, 0.24);
}

.form-status.is-error {
  color: #9c1f16;
  background: rgba(239, 59, 45, 0.1);
  border: 1px solid rgba(239, 59, 45, 0.18);
}

.map-link-btn {
  width: fit-content;
  margin-top: 6px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #181214 0%, #0f0c0d 100%);
}

.site-footer .container,
.site-footer .row,
.site-footer .col-lg-4,
.site-footer .col-sm-6,
.site-footer .col-lg-3,
.site-footer .col-lg-2 {
  position: relative;
  z-index: 1;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.footer-shape-a {
  top: -80px;
  right: -20px;
  width: 240px;
  height: 240px;
  background: rgba(239, 59, 45, 0.14);
}

.footer-shape-b {
  bottom: -90px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: rgba(255, 179, 111, 0.1);
}

.footer-para,
.footer-ul a,
.footer-contact-ul li,
.footer-contact-ul a,
.footer-bottom-inner p {
  color: rgba(255, 240, 236, 0.62);
}

.footer-h {
  display: inline-block;
  margin-bottom: 18px;
  color: #fff9f6;
  font-size: 1.1rem;
}

.footer-ul li,
.footer-contact-ul li {
  margin-bottom: 12px;
}

.footer-contact-ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-ul i {
  margin-top: 3px;
  color: #ff9b78;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff6f2;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.footer-social-row a:hover {
  background: rgba(239, 59, 45, 0.34);
  color: #ffffff;
}

.footer-social-row i {
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
}

.btt {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff7e5c);
  color: #fff;
  box-shadow: 0 22px 45px rgba(239, 59, 45, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1200;
}

.btt.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 92px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1fbf63, #0a8f49);
  color: #fff;
  box-shadow: 0 20px 42px rgba(12, 143, 73, 0.3);
  z-index: 1200;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-wa:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(12, 143, 73, 0.36);
}

.floating-wa i {
  font-size: 1.6rem;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translate3d(34px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(-34px, 0, 0);
}

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

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.55;
  }
}

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

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

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
    max-width: 620px;
    margin: 0 auto;
  }

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

@media (max-width: 991px) {
  .sec {
    padding: 82px 0;
  }

  .hero {
    padding-top: 86px;
  }

  .hero-text,
  .sec-head,
  .process-copy {
    text-align: center;
  }

  .hero-sub,
  .process-sub,
  .faq-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns,
  .hero-trust,
  .hero-stats,
  .process-metrics {
    justify-content: center;
  }

  .hero-stats {
    width: 100%;
  }

  .about-img-box {
    max-width: 540px;
    margin: 0 auto;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #mainNav .nav-link::after {
    display: none;
  }

  .hero-heading {
    font-size: 2.8rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-device {
    inset: 44px 20px 24px;
  }

  .hero-device img {
    max-height: 320px;
  }

  .hero-float {
    display: none;
  }

  .proof-card,
  .process-item,
  .contact-form-box,
  .contact-side,
  .review-card {
    padding: 22px;
  }

  .svc-img-box {
    height: 210px;
  }

  .process-item {
    flex-direction: column;
  }

  .footer-social-row {
    margin-bottom: 12px;
  }
}

@media (max-width: 575px) {
  .sec {
    padding: 72px 0;
  }

  .hero {
    padding: 74px 0 76px;
  }

  .navbar-brand {
    gap: 10px;
  }

  .navbar-brand img {
    height: 46px;
  }

  .brand-lockup strong {
    font-size: 1rem;
  }

  .hero-heading {
    font-size: 2.3rem;
  }

  .hero-sub,
  .sec-sub {
    font-size: 0.98rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-red,
  .btn-ghost,
  .sm-btn-red {
    width: 100%;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    min-width: calc(50% - 12px);
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-svg-lines {
    inset: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }

  .hero-device img {
    max-height: 260px;
  }

  .contact-form-box,
  .contact-side,
  .contact-map-card,
  .proof-card,
  .process-item,
  .review-card,
  .svc-body {
    padding: 20px;
  }

  .about-img-box {
    padding-right: 0;
  }

  .about-exp-badge {
    width: 82%;
  }

  .btt {
    right: 16px;
    bottom: 16px;
  }

  .floating-wa {
    right: 16px;
    bottom: 82px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
