:root {
  --black: #08090b;
  --charcoal: #17191d;
  --graphite: #30343b;
  --text: #111318;
  --muted: #626977;
  --line: #e6e8ee;
  --page: #ffffff;
  --soft: #f6f7f9;
  --yellow: #ffd21f;
  --orange: #ff7a1a;
  --accent: linear-gradient(135deg, var(--yellow), var(--orange));
  --dark-gradient: linear-gradient(135deg, #08090b 0%, #191b20 54%, #333841 100%);
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 210, 31, 0.14), transparent 26rem),
    radial-gradient(circle at 92% 8%, rgba(255, 122, 26, 0.12), transparent 28rem),
    var(--page);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

button {
  font: inherit;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1160px, calc(100% - 40px));
  margin: 14px auto 0;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(231, 232, 236, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 156px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #444a55;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: transparent;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 850;
  line-height: 1;
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
}

.header-cta {
  color: #111318;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(255, 122, 26, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: var(--dark-gradient);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 70px;
}

.hero-bg {
  position: absolute;
  inset: 104px 0 0;
  background: var(--dark-gradient);
  clip-path: polygon(0 10%, 100% 0, 100% 86%, 0 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 44px;
  align-items: center;
  min-height: 710px;
  padding-top: 44px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #a75500;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  color: #4f5662;
  font-size: 1.14rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn-primary {
  color: #111318;
  background: var(--accent);
  box-shadow: 0 14px 35px rgba(255, 122, 26, 0.28);
}

.btn-ghost {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
}

.btn-dark {
  color: #fff;
  background: var(--dark-gradient);
}

.btn-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(230, 232, 238, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(17, 19, 24, 0.07);
}

.hero-stats dt {
  color: var(--black);
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-console {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035));
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: var(--radius);
  background: var(--accent);
  opacity: 0.8;
  transform: translate(12px, 12px);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 16px;
  color: #fff;
  border-radius: 7px;
  background: rgba(8, 9, 11, 0.72);
}

.console-top span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 750;
}

.console-top strong {
  display: block;
  font-size: 1.15rem;
}

.status-pill {
  padding: 7px 10px;
  color: #111318;
  border-radius: 999px;
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.console-card {
  min-height: 168px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(8, 9, 11, 0.68);
}

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

.console-card.orange {
  color: #111318;
  background: var(--accent);
}

.console-card.dark {
  min-height: auto;
  background: rgba(255, 255, 255, 0.92);
  color: #111318;
}

.console-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.console-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 750;
}

.console-card.orange span,
.console-card.dark span {
  color: rgba(17, 19, 24, 0.66);
}

.console-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2.2rem;
  line-height: 1;
}

.console-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  color: var(--yellow);
}

.orange .console-icon {
  color: #111318;
}

.chart {
  width: 100%;
  height: 190px;
  margin-top: 14px;
}

.chart-area {
  opacity: 0.22;
  stroke: none;
}

.chart-line {
  fill: none;
  stroke-width: 7;
}

.stacked-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.stacked-row:last-child {
  border-bottom: 0;
}

.stacked-row b {
  color: #b95600;
}

.client-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(246, 247, 249, 0.92);
}

.ticker {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  color: #4a505b;
  font-size: 0.92rem;
  font-weight: 850;
  white-space: nowrap;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--orange);
}

.content-section,
.proof-section,
.testimonials,
.process-section {
  padding: 92px 0;
}

.content-section {
  position: relative;
  margin-block: 20px;
  padding-block: 86px;
}

.content-section::before {
  content: "";
  position: absolute;
  inset: 24px -42px 18px;
  z-index: -1;
  border-radius: 8px;
  background: radial-gradient(circle at 86% 22%, rgba(255, 122, 26, 0.12), transparent 24rem);
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.content-section .section-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

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

.section-heading p,
.proof-copy p,
.cta-section p {
  color: var(--muted);
}

.section-heading h2,
.proof-copy h2,
.cta-section h2 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 5.2vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.proof-copy p:not(.eyebrow),
.cta-section p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: #42506a;
  font-size: 1.06rem;
  line-height: 1.55;
}

.centered {
  margin-inline: 0;
  text-align: left;
}

.carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #111318;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 19, 24, 0.08);
}

.carousel-controls button:hover {
  background: var(--accent);
}

.carousel-controls svg {
  width: 20px;
  height: 20px;
}

.carousel-controls.light button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.carousel-controls.light button:hover {
  color: #111318;
  background: var(--accent);
}

.card-carousel {
  display: grid;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-auto-flow: column;
  gap: 18px;
  overflow: visible; /* Prevents card clipping on top and bottom boundaries */
  overflow-x: auto; /* Handles horizontal scrolling */
  padding: 12px 4px 24px; /* Clean vertical space for card shadows and border glow */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.card-carousel::-webkit-scrollbar {
  display: none;
}

.card-carousel > article {
  scroll-snap-align: start;
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 36px 32px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #ffffff;
  background-clip: padding-box;
  box-shadow: 0 12px 34px rgba(17, 19, 24, 0.06), 0 3px 10px rgba(17, 19, 24, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-grid article {
  position: relative;
  min-height: 320px;
  padding: 36px 32px;
  overflow: hidden;
  border: 1px solid rgba(230, 232, 238, 0.7);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 19, 24, 0.06), 0 3px 10px rgba(17, 19, 24, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
  box-shadow: 0 24px 50px rgba(17, 19, 24, 0.08), 0 8px 16px rgba(255, 122, 26, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.testimonial-grid article:hover {
  border-color: rgba(255, 122, 26, 0.28);
  box-shadow: 0 24px 50px rgba(17, 19, 24, 0.08), 0 8px 16px rgba(255, 122, 26, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -10px -10px auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.05;
  filter: blur(8px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 0.12;
  transform: scale(1.2) translate(-6px, -6px);
  filter: blur(4px);
}

/* Beautiful Animated Gradient Border for the Default Stage */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px; /* Premium border thickness */
  background: linear-gradient(90deg, var(--yellow), var(--orange), #ff4500, var(--yellow));
  background-size: 200% auto;
  animation: border-gradient-flow 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover::before {
  opacity: 1;
  padding: 2.2px; /* Thickens on hover for feedback */
}

@keyframes border-gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--orange);
  background: linear-gradient(135deg, rgba(255, 210, 31, 0.06), rgba(255, 122, 26, 0.06));
  border: 1px solid rgba(255, 122, 26, 0.18);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .card-icon {
  background: var(--accent);
  color: #111318;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.25);
  transform: rotate(5deg) scale(1.05);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .card-icon svg {
  transform: scale(1.05);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 380px;
}

.service-card h3 {
  font-size: 1.48rem;
  font-weight: 850;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.service-card:hover h3 {
  color: var(--orange);
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 750;
  color: #111318;
  border: 1.5px solid rgba(255, 122, 26, 0.22);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  line-height: 1;
}

.learn-more-btn:hover {
  background: var(--accent);
  color: #111318 !important;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.24);
  transform: translateY(-2px);
}

.learn-more-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5px;
  transition: transform 0.2s ease;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.learn-more-btn:hover svg {
  transform: translateX(3px);
}

.section-link {
  display: inline-flex;
  margin-top: 14px;
  color: #b95600;
  font-weight: 850;
}

.section-link::after {
  content: "";
  width: 18px;
  height: 1px;
  margin: auto 0 auto 8px;
  background: currentColor;
}

.section-link {
  margin-top: 14px;
}

.process-section {
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--dark-gradient);
  background-size: 44px 44px, 44px 44px, auto;
}

.process-section h2,
.process-section .section-heading p {
  color: #fff;
}

.process-carousel {
  grid-auto-columns: calc((100% - 36px) / 3);
}

.process-card {
  min-height: 360px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.process-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 122, 26, 0.35);
  box-shadow: 0 24px 60px rgba(255, 122, 26, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

/* Stunning massive modern watermark step indicator */
.process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  bottom: 0;
  font-size: 6.8rem;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.022);
  line-height: 1;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1;
  letter-spacing: -3px;
}

.process-card:hover::before {
  color: rgba(255, 210, 31, 0.05);
  transform: scale(1.08) translateY(-4px);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  background: rgba(255, 210, 31, 0.1);
  border: 1px solid rgba(255, 210, 31, 0.3);
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
}

.process-card svg {
  display: inline-flex;
  padding: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 210, 31, 0.06), rgba(255, 122, 26, 0.06));
  border: 1px solid rgba(255, 122, 26, 0.18);
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  color: var(--orange);
  transition: all 0.4s ease;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.01);
}

.process-card:hover svg {
  background: linear-gradient(135deg, rgba(255, 210, 31, 0.12), rgba(255, 122, 26, 0.12));
  border-color: rgba(255, 122, 26, 0.4);
  box-shadow: 0 0 20px rgba(255, 122, 26, 0.2);
  transform: rotate(5deg) scale(1.05);
  color: var(--yellow);
}

.process-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  z-index: 2;
}

.process-card:hover h3 {
  color: var(--yellow);
}

.process-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.6;
  z-index: 2;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: center;
  position: relative;
  width: min(1160px, calc(100% - 40px));
  margin-block: 28px;
  padding: 84px 0;
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 24px -42px;
  z-index: -1;
  border-radius: 8px;
  background: radial-gradient(circle at 78% 30%, rgba(255, 210, 31, 0.16), transparent 28rem);
}

.proof-copy {
  max-width: 430px;
}

.proof-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 5.2vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
}

.proof-copy p:not(.eyebrow) {
  margin-bottom: 26px;
  color: #4f5664;
  font-size: 1.02rem;
}

.proof-panel {
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--dark-gradient);
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 30px 80px rgba(8, 9, 11, 0.18);
}

.proof-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 6px 18px;
  color: #fff;
}

.proof-panel-head span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-panel-head strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid div {
  position: relative;
  min-height: 190px;
  padding: 26px;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.proof-grid div::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.14;
}

.proof-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: #d06300;
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #111318;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.proof-grid span {
  color: #536071;
  font-weight: 800;
}

@media (max-width: 768px) {
  .proof-grid {
    display: grid;
    grid-template-columns: none !important;
    grid-auto-columns: minmax(220px, 75%) !important;
    grid-auto-flow: column !important;
    gap: 14px !important;
    overflow-x: auto !important;
    padding: 4px 2px 20px !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .proof-grid::-webkit-scrollbar {
    display: none !important;
  }

  .proof-grid > div {
    scroll-snap-align: start !important;
  }
}

.testimonials {
  background: var(--soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
}

.stars span {
  width: 16px;
  height: 16px;
  background: var(--accent);
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}

.testimonial-grid article p {
  color: #3b414b;
}

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

.person span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #111318;
  background: var(--accent);
  font-weight: 900;
}

.person small {
  display: block;
  color: var(--muted);
}

.video-testimonial-carousel {
  display: grid;
  grid-auto-columns: calc((100% - 54px) / 4);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.video-testimonial-card {
  scroll-snap-align: start;
  min-width: 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 11, 0.12);
  border-radius: var(--radius);
  background: var(--dark-gradient);
  box-shadow: 0 22px 55px rgba(17, 19, 24, 0.14);
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.74));
  pointer-events: none;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: #111318;
  background: var(--accent);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.video-play svg {
  width: 25px;
  height: 25px;
  margin-left: 3px;
  fill: currentColor;
  stroke: none;
}

.video-testimonial-card.is-playing .video-frame::after,
.video-testimonial-card.is-playing .video-play {
  display: none;
}

.video-label {
  display: grid;
  gap: 2px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.video-label strong {
  color: var(--black);
  font-size: 1rem;
}

.video-label span {
  color: #b95600;
  font-weight: 850;
}

.video-label small {
  color: var(--muted);
  font-weight: 700;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-block: 92px;
  padding: 42px;
  color: #fff;
  border-radius: var(--radius);
  background: var(--dark-gradient);
  box-shadow: var(--shadow);
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  margin-bottom: 0;
  opacity: 0.78;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #08090b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
  padding: 58px 0 34px;
}

.footer-brand,
.footer-grid h3 {
  display: inline-flex;
  margin-bottom: 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  margin-left: 18px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 7px;
  color: #111318;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(8, 9, 11, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal-section {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section > * {
  transition: transform 0.75s ease;
}

.reveal-section.is-visible > * {
  transform: translateY(0);
}

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

  .reveal-section {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 84px 20px auto;
    z-index: 70;
    padding: 16px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  body.nav-open .header-cta {
    position: fixed;
    inset: auto 36px 24px;
    z-index: 70;
    display: inline-flex;
  }

  .hero-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  .proof-copy {
    max-width: 100%;
  }

  .hero-bg {
    inset: 42% 0 0;
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 100%);
  }

  .hero-inner {
    min-height: 0;
    gap: 34px;
    padding-top: 54px;
  }

  .card-carousel,
  .process-carousel {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

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

  .video-testimonial-carousel {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-header,
  .ticker {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 132px;
  }

  .hero {
    padding: 18px 0 52px;
  }

  .hero-inner {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .section-heading h2,
  .proof-copy h2,
  .cta-section h2 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn,
  .header-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
    height: auto;
    min-height: 46px;
    padding: 12px 24px;
    line-height: 1.3;
  }

  .hero-stats,
  .console-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-section {
    width: min(100% - 28px, 1160px);
    padding: 62px 0;
  }

  .proof-section::before {
    inset: 12px -14px;
  }

  .proof-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .console-card.wide {
    grid-column: auto;
  }

  .chart {
    height: 150px;
  }

  .section-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-section .section-top {
    grid-template-columns: 1fr;
  }


  .card-carousel,
  .process-carousel {
    grid-auto-columns: minmax(260px, 86%);
  }

  .video-testimonial-carousel {
    grid-auto-columns: minmax(210px, 72%);
  }

  .ticker {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .content-section,
  .proof-section,
  .testimonials,
  .process-section {
    padding: 68px 0;
  }

  .cta-section {
    margin-block: 68px;
    padding: 28px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom a {
    margin: 0 18px 0 0;
  }
}

/* Section Scroll Offsets */
section[id] {
  scroll-margin-top: 100px;
}

/* Reference-style top experience */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  width: min(1160px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 10px 16px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(2, 5, 13, 0.75);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 8px;
  position: relative;
  padding: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.logo-leaves {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5px;
  height: 12px;
  margin-bottom: 2px;
}

.leaf {
  border-radius: 50% 50% 0 50%;
  display: block;
}

.leaf-1 {
  width: 6px;
  height: 6px;
  background: #4ade80;
  transform: rotate(-75deg);
}

.leaf-2 {
  width: 8px;
  height: 8px;
  background: #22c55e;
  transform: rotate(-45deg) translateY(-2px);
}

.leaf-3 {
  width: 6px;
  height: 6px;
  background: #166534;
  transform: rotate(-15deg);
}

.logo-letters {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  display: flex;
  letter-spacing: -0.5px;
}

.letter-s {
  color: #334155;
}

.letter-r {
  color: var(--orange);
}

.brand-name {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -0.5px;
}

.site-nav {
  gap: 24px;
}

.site-nav a {
  padding: 6px 0;
  color: #94a3b8;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #ffffff;
}

.site-nav a[aria-current="page"] {
  color: var(--yellow);
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 18px;
}

.contact-btn-orange {
  background: var(--accent) !important;
  color: #111318 !important;
  border-radius: 9999px !important;
  font-weight: 850 !important;
  font-size: 0.88rem !important;
  padding: 10px 22px !important;
  min-height: 40px !important;
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.24) !important;
  transition: all 0.3s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  border: none;
}

.contact-btn-orange:hover {
  background: linear-gradient(135deg, #ff7a1a, #ffd21f) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.38) !important;
}

.contact-btn-orange svg {
  display: block !important;
  width: 14px;
  height: 14px;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.5px !important;
  transition: transform 0.2s ease;
}

.contact-btn-orange:hover svg {
  transform: translate(2px, -2px);
}

.hero {
  min-height: 100vh;
  padding: 0;
  border-bottom: 4px solid #f2d400;
  background: #02050d;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.5) 38%, rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(8, 9, 11, 0.45) 48%, rgba(0, 0, 0, 0.86) 100%),
    radial-gradient(circle at 50% 42%, rgba(255, 210, 31, 0.2), transparent 28rem);
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.2), rgba(255, 122, 26, 0.08) 32%, transparent 58%),
    url("https://images.pexels.com/photos/3183174/pexels-photo-3183174.jpeg?auto=compress&cs=tinysrgb&w=1920") center / cover no-repeat;
  filter: saturate(0.95) contrast(1.08);
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.28;
}

.hero-center {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 128px 0 72px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-center h1 {
  max-width: 1080px;
  margin: 0 auto 24px;
  color: #fff;
  font-size: clamp(2.75rem, 5.8vw, 5.25rem);
  line-height: 1.04;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-center h1 mark {
  color: #ffd21f;
  background: transparent;
}

.hero-center h1 span:not(.hero-line) {
  color: #ffd21f;
}

.hero-center p:not(.hero-kicker) {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.hero-scroll {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 88px auto 0;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  color: #fff;
}

.hero-scroll svg {
  width: 23px;
  height: 23px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    width: min(100% - 28px, 1160px);
    padding: 12px 14px;
  }

  .header-actions {
    display: none;
  }

  body.nav-open .header-actions {
    position: fixed;
    inset: auto 28px 24px;
    z-index: 90;
    display: grid;
    width: calc(100% - 56px);
  }

  body.nav-open .login-link {
    display: none;
  }

  body.nav-open .header-actions .header-cta {
    position: static;
    inset: auto;
    display: inline-flex;
    width: 100%;
  }

  .site-nav {
    gap: 0;
  }

  body.nav-open .site-nav {
    background: rgba(2, 5, 13, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  body.nav-open .site-nav a {
    padding: 13px 12px;
    color: #fff;
  }

  .hero-center {
    padding-inline: 22px;
  }

}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 28px, 1160px);
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero-center {
    min-height: auto;
    padding: 120px 16px 48px;
  }

  .hero-center h1 {
    font-size: clamp(2rem, 9.8vw, 3.25rem);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-line {
    white-space: normal;
    display: inline;
  }

  .hero-center p:not(.hero-kicker) {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-scroll {
    margin-top: 48px;
  }
}

@media (max-width: 960px) {
  .site-header {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 12px;
    width: auto;
    grid-template-columns: auto 44px;
    gap: 14px;
    padding: 12px 12px 12px 14px;
  }

  .nav-toggle {
    position: relative;
    z-index: 92;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav-toggle span {
    grid-area: 1 / 1;
    margin: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .nav-toggle span:nth-child(2) {
    transform: none;
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    top: calc(100% + 8px);
    z-index: 88;
    display: grid;
    gap: 4px;
    padding: 14px 14px 76px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(2, 5, 13, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    grid-column: 1 / -1;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  body.nav-open .site-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--yellow) !important;
    background: rgba(255, 210, 31, 0.08) !important;
  }

  .site-nav a:first-child::after {
    display: none;
  }

  .header-actions {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 280px);
    z-index: 89;
    display: grid;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    grid-column: 1 / -1;
  }

  body.nav-open .header-actions {
    inset: auto;
    left: 14px;
    right: 14px;
    top: calc(100% + 280px);
    width: auto;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .login-link {
    display: none;
  }

  .header-actions .header-cta,
  body.nav-open .header-actions .header-cta {
    position: static;
    width: 100%;
    min-height: 46px;
  }
}

@media (max-width: 640px) {
  .site-header {
    left: 10px;
    right: 10px;
    width: auto;
  }
}

/* ==========================================================================
   Contact Page Ultra-Minimalistic & Modern Styling (Light Theme)
   ========================================================================== */
body.contact-page-body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 210, 31, 0.14), transparent 26rem),
    radial-gradient(circle at 92% 8%, rgba(255, 122, 26, 0.12), transparent 28rem),
    var(--page);
  color: var(--text);
}



body.contact-page-body .site-footer {
  border-top: 1px solid var(--line);
}

/* Background Blobs */
.blob-container {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
  animation: blob-drift 24s infinite alternate ease-in-out;
}

.blob-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.4) 0%, transparent 80%);
  left: -8%;
  top: 15%;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.3) 0%, transparent 80%);
  right: -8%;
  bottom: 12%;
  animation-delay: -8s;
}

@keyframes blob-drift {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(80px, 60px) scale(1.15) rotate(45deg);
  }
}

/* Contact Main Layout */
.contact-main {
  padding: 140px 0 92px;
  position: relative;
  z-index: 1;
}

.contact-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 68px;
  align-items: start;
}

/* Left Column - Info Panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #a75500;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-kicker::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
}

.contact-info-panel h1 {
  margin: 0 0 20px;
  color: var(--black);
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -1px;
}

.contact-info-panel h1 mark {
  color: var(--orange);
  background: transparent;
}

.contact-desc {
  margin: 0 0 40px;
  color: #4f5664;
  font-size: 1.04rem;
  line-height: 1.6;
  max-width: 580px;
}

/* Contact capsules */
.quick-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 34px;
}

.method-capsule {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(230, 232, 238, 0.9);
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

a.method-capsule:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 26, 0.28);
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.08);
}

.capsule-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 210, 31, 0.06), rgba(255, 122, 26, 0.06));
  border: 1px solid rgba(255, 122, 26, 0.16);
  color: var(--orange);
  transition: all 0.4s ease;
}

a.method-capsule:hover .capsule-icon {
  background: linear-gradient(135deg, rgba(255, 210, 31, 0.12), rgba(255, 122, 26, 0.12));
  border-color: rgba(255, 122, 26, 0.35);
  color: var(--orange);
  transform: rotate(5deg) scale(1.05);
}

.capsule-icon svg {
  width: 20px;
  height: 20px;
}

.capsule-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.capsule-text span {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.capsule-text strong {
  font-size: 1rem;
  color: var(--black);
  font-weight: 600;
  transition: color 0.3s ease;
}

a.method-capsule:hover .capsule-text strong {
  color: var(--orange);
}

/* Live Tracker Pulse */
.live-tracker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.16);
  font-size: 0.82rem;
  color: #065f46;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulse-dot 1.8s infinite ease-in-out;
  opacity: 0.8;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Right Column - Map Wrapper styling */
.contact-map-wrapper {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(230, 232, 238, 0.9);
  box-shadow: 0 20px 50px rgba(17, 19, 24, 0.05);
  height: 280px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.contact-map-wrapper:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 26, 0.25);
  box-shadow: 0 24px 60px rgba(255, 122, 26, 0.08);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Right Column - Premium Clean Form Card */
.glass-contact-form {
  padding: 40px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(230, 232, 238, 0.9);
  box-shadow: 0 20px 50px rgba(17, 19, 24, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.glass-contact-form h2 {
  font-size: 1.7rem;
  font-weight: 850;
  color: var(--black);
  margin: 0;
  letter-spacing: -0.5px;
}

.glass-contact-form h2 + p {
  margin: -14px 0 6px 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Input Fields with Floating Labels */
.input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-wrapper.full-width {
  grid-column: span 2;
}

.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.94rem;
  font-family: inherit;
  color: var(--black);
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 7px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-wrapper select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 42px;
}

/* Label Transitions */
.input-wrapper label {
  position: absolute;
  left: 16px;
  top: 13px;
  font-size: 0.94rem;
  color: #64748b;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: left top;
}

/* Focus and Active States */
.input-wrapper input:focus,
.input-wrapper textarea:focus,
.input-wrapper select:focus {
  border-color: rgba(255, 122, 26, 0.4);
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.12);
  background: #ffffff;
}

/* Float label up */
.input-wrapper input:focus ~ label,
.input-wrapper input:not(:placeholder-shown) ~ label,
.input-wrapper textarea:focus ~ label,
.input-wrapper textarea:not(:placeholder-shown) ~ label,
.input-wrapper select:focus ~ label,
.input-wrapper select:valid ~ label {
  transform: translateY(-24px) scale(0.85);
  color: var(--orange);
  font-weight: 750;
  letter-spacing: 0.5px;
}

.input-wrapper select:valid ~ label.select-label {
  transform: translateY(-24px) scale(0.85);
}

.input-wrapper select option {
  background: #ffffff;
  color: var(--black);
}

/* Premium Animated Submit Button */
.submit-btn {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 7px;
  border: none;
  font-weight: 850;
  font-size: 0.92rem;
  color: #111318;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.24);
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ff7a1a, #ffd21f);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.35);
}

.submit-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5px;
  transition: transform 0.3s ease;
}

.submit-btn:hover svg {
  transform: translate(3px, -3px) scale(1.1);
}

/* ==========================================================================
   Responsive Adaptations for Contact Page
   ========================================================================== */
@media (max-width: 960px) {
  .contact-section-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-info-panel {
    align-items: center;
    text-align: center;
  }
  
  .contact-kicker {
    justify-content: center;
  }
  
  .contact-desc {
    margin-inline: auto;
  }
  
  .quick-contact-methods {
    margin-inline: auto;
  }
  
  .live-tracker {
    margin-inline: auto;
  }
  
  .glass-contact-form {
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .contact-main {
    padding: 110px 0 68px;
  }
  
  .contact-info-panel h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .input-wrapper.full-width {
    grid-column: auto;
  }
  
  .glass-contact-form {
    padding: 28px 20px;
    gap: 20px;
  }
  
  .glass-contact-form h2 {
    font-size: 1.5rem;
  }
}
