html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07090f;
  color: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.section {
  padding: 96px 20px;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  padding: 18px 20px;
  background: rgba(7, 9, 15, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 22px;
}

.nav-links {
  display: none;
  gap: 28px;
  color: #a7adbd;
  font-size: 14px;
}

.nav-cta {
  display: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #07090f;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 76, 0.25), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(83, 104, 255, 0.22), transparent 30%),
    #07090f;
}

.hero-grid {
  display: grid;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #ffb27b;
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(42px, 10vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 820px;
}

.hero-text {
  margin-top: 26px;
  max-width: 620px;
  color: #a7adbd;
  font-size: clamp(17px, 4vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
}

.btn.primary {
  background: linear-gradient(135deg, #ff8a4c, #ff4d6d);
  color: white;
}

.btn.secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.dashboard-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 100px rgba(0,0,0,0.45);
}

.main-card {
  border-radius: 34px;
  padding: 32px;
  min-height: 280px;
}

.main-card p {
  color: #a7adbd;
  margin-bottom: 16px;
}

.main-card h3 {
  font-size: 38px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #35ff9f;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 22px;
  box-shadow: 0 0 30px #35ff9f;
}

.floating-card {
  position: absolute;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  font-weight: 800;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.card-one {
  top: -18px;
  right: 20px;
}

.card-two {
  bottom: 80px;
  left: -8px;
}

.card-three {
  bottom: 8px;
  right: 24px;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .section {
    padding: 120px 20px;
  }
}

.trust-section {
  padding: 110px 20px 120px;
  background:
    linear-gradient(180deg, #07090f 0%, #090b12 100%);
}

.trust-text {
  text-align: center;
  color: #7f8798;
  font-size: 15px;
  margin-bottom: 42px;
}

.problem-grid {
  display: grid;
  gap: 18px;
}

.problem-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
}

.problem-card {
  transition: 0.35s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,138,76,0.26);
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.problem-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,138,76,0.1);
}

.problem-card span {
  color: #ffb27b;
  font-weight: 900;
  font-size: 13px;
}

.problem-card h3 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.problem-card p {
  margin-top: 14px;
  color: #9aa2b4;
  line-height: 1.6;
  font-size: 15px;
}

@media (min-width: 900px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .problem-card {
    min-height: 250px;
  }
}

.hero-content,
.hero-visual,
.problem-card {
  animation: fadeUp 0.9s ease both;
}

.hero-visual {
  animation-delay: 0.15s;
}

.problem-card:nth-child(2) {
  animation-delay: 0.12s;
}

.problem-card:nth-child(3) {
  animation-delay: 0.24s;
}

.status-dot {
  animation: pulseDot 1.7s ease-in-out infinite;
}

.floating-card {
  animation: floatCard 4.5s ease-in-out infinite;
}

.card-two {
  animation-delay: 0.7s;
}

.card-three {
  animation-delay: 1.2s;
}

.main-card {
  position: relative;
  overflow: hidden;
}

.main-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 34%);
  pointer-events: none;
}

.mini-lines {
  margin-top: 42px;
  display: grid;
  gap: 12px;
  max-width: 260px;
}

.mini-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
}

.mini-lines span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff8a4c, #ff4d6d);
  animation: loadingLine 2.2s ease-in-out infinite;
}

.mini-lines span:nth-child(2)::after {
  animation-delay: 0.3s;
}

.mini-lines span:nth-child(3)::after {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 22px #35ff9f;
  }
  50% {
    transform: scale(1.35);
    box-shadow: 0 0 44px #35ff9f;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes loadingLine {
  0% {
    transform: translateX(-120%);
  }
  55%, 100% {
    transform: translateX(240%);
  }
}

.signal-story-section {
  padding: 130px 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 77, 109, 0.16), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(255, 138, 76, 0.14), transparent 34%),
    #07090f;
}

.signal-story-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

.signal-copy h2 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 700px;
}

.signal-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: #a7adbd;
  font-size: 19px;
  line-height: 1.6;
  max-width: 560px;
}

.signal-stage {
  position: relative;
  padding: 24px;
  border-radius: 40px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.35);
}

.signal-stage::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(255, 138, 76, 0.16),
    transparent,
    rgba(83, 104, 255, 0.12),
    transparent
  );
  animation: rotateGlow 8s linear infinite;
}

.signal-stage > * {
  position: relative;
  z-index: 1;
}

.signal-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.signal-card p {
  color: #8d96aa;
  font-size: 13px;
  font-weight: 800;
}

.signal-card h3 {
  margin-top: 4px;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.custom-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  position: relative;
}

.wifi-icon span {
  position: absolute;
  border: 3px solid #35ff9f;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 999px 999px 0 0;
  animation: wifiFade 2.6s ease-in-out infinite;
}

.wifi-icon span:nth-child(1) {
  width: 44px;
  height: 22px;
  top: 17px;
}

.wifi-icon span:nth-child(2) {
  width: 30px;
  height: 15px;
  top: 28px;
  animation-delay: 0.25s;
}

.wifi-icon span:nth-child(3) {
  width: 16px;
  height: 8px;
  top: 39px;
  animation-delay: 0.5s;
}

.wifi-icon i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35ff9f;
  position: absolute;
  bottom: 12px;
  box-shadow: 0 0 24px #35ff9f;
  animation: pulseDot 1.6s ease-in-out infinite;
}

.signal-path {
  width: 3px;
  height: 54px;
  margin: 12px auto;
  border-radius: 999px;
  background: linear-gradient(#35ff9f, #ff8a4c, #35ff9f);
  background-size: 100% 220%;
  animation: flowLine 1.8s linear infinite;
}

.operation-grid {
  display: grid;
  gap: 16px;
}

.operation-card {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.055);
}

.operation-card span {
  color: #8d96aa;
  font-size: 13px;
  font-weight: 900;
}

.operation-card h4 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.fail-card {
  opacity: 0.55;
  filter: grayscale(0.8);
}

.success-card {
  border-color: rgba(255, 138, 76, 0.3);
  background: linear-gradient(180deg, rgba(255,138,76,0.14), rgba(255,255,255,0.05));
  box-shadow: 0 0 70px rgba(255,138,76,0.13);
}

.emoji-face{
  font-size:48px;
  line-height:1;
  margin-bottom:18px;
  display:inline-block;
}

.happy-face{
  filter: drop-shadow(0 0 12px rgba(255,180,70,.35));
  animation: happyBounce 2.2s ease-in-out infinite;
}

.sad-face{
  opacity:.92;
  animation: sadShake 2.6s ease-in-out infinite;
}

.flow-icons {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.flow-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  text-align: center;
  animation: flowItemGlow 3s ease-in-out infinite;
}

.flow-item:nth-child(2) {
  animation-delay: 0.25s;
}

.flow-item:nth-child(3) {
  animation-delay: 0.5s;
}

.flow-item:nth-child(4) {
  animation-delay: 0.75s;
}

.flow-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.flow-item p {
  color: #d7dbea;
  font-size: 13px;
  font-weight: 900;
}

@keyframes wifiFade {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
    border-top-color: #35ff9f;
  }
  45% {
    opacity: 0.18;
    transform: translateY(4px);
    border-top-color: #ff6b7f;
  }
  70% {
    opacity: 1;
    border-top-color: #ff8a4c;
  }
}

@keyframes sadShake {
  0%, 100% {
    transform: translateX(0) rotate(0);
  }
  45% {
    transform: translateX(-4px) rotate(-4deg);
  }
  60% {
    transform: translateX(4px) rotate(4deg);
  }
}

@keyframes happyBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.08);
  }
}

@keyframes flowItemGlow {
  0%, 100% {
    transform: translateY(0);
    border-color: rgba(255,255,255,0.09);
  }
  50% {
    transform: translateY(-6px);
    border-color: rgba(255,138,76,0.35);
    box-shadow: 0 18px 50px rgba(255,138,76,0.12);
  }
}

@media (min-width: 900px) {
  .signal-story-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .operation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flow-icons {
    grid-template-columns: repeat(4, 1fr);
  }
}

.internet-switch {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 22px;
}

.internet-switch p {
  color: #8d96aa;
  font-size: 13px;
  font-weight: 800;
}

.internet-switch h3 {
  margin-top: 4px;
  font-size: 30px;
  letter-spacing: -0.05em;
  position: relative;
  height: 36px;
  overflow: hidden;
}

.online-word,
.offline-word {
  display: block;
  animation: statusSwap 4s ease-in-out infinite;
}

.offline-word {
  color: #ff6b7f;
}

.offline-switch span {
  animation: wifiOffline 4s ease-in-out infinite;
}

.offline-switch i {
  animation: dotOffline 4s ease-in-out infinite;
}

.workflow-compare {
  display: grid;
  gap: 16px;
}

.workflow-card {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.055);
}

.workflow-card span {
  color: #8d96aa;
  font-size: 13px;
  font-weight: 900;
}

.workflow-bad {
  opacity: 0.62;
  filter: grayscale(0.7);
}

.workflow-good {
  border-color: rgba(255,138,76,0.35);
  background: linear-gradient(180deg, rgba(255,138,76,0.15), rgba(255,255,255,0.05));
  box-shadow: 0 0 70px rgba(255,138,76,0.13);
}

.workflow-steps {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.workflow-steps p {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: #d7dbea;
  font-size: 14px;
  font-weight: 800;
}

@keyframes statusSwap {
  0%, 38% {
    transform: translateY(0);
  }
  45%, 100% {
    transform: translateY(-36px);
  }
}

@keyframes wifiOffline {
  0%, 35% {
    opacity: 1;
    border-top-color: #35ff9f;
    transform: translateY(0);
  }
  45%, 100% {
    opacity: 0.22;
    border-top-color: #ff6b7f;
    transform: translateY(5px);
  }
}

@keyframes dotOffline {
  0%, 35% {
    background: #35ff9f;
    box-shadow: 0 0 24px #35ff9f;
  }
  45%, 100% {
    background: #ff6b7f;
    box-shadow: 0 0 24px #ff6b7f;
  }
}

@keyframes stepPulse {
  0%, 100% {
    transform: translateY(0);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-4px);
    filter: brightness(1.25);
  }
}

@media (min-width: 900px) {
  .workflow-compare {
    grid-template-columns: 1fr 1fr;
  }
}

.workflow-bad .workflow-steps p {
  animation: badStepSequence 5s ease-in-out infinite;
}

.workflow-good .workflow-steps p {
  animation: goodStepSequence 5s ease-in-out infinite;
}

.workflow-bad .workflow-steps p:nth-child(1),
.workflow-good .workflow-steps p:nth-child(1) {
  animation-delay: 0s;
}

.workflow-bad .workflow-steps p:nth-child(2),
.workflow-good .workflow-steps p:nth-child(2) {
  animation-delay: 0.45s;
}

.workflow-bad .workflow-steps p:nth-child(3),
.workflow-good .workflow-steps p:nth-child(3) {
  animation-delay: 0.9s;
}

.workflow-bad .workflow-steps p:nth-child(4),
.workflow-good .workflow-steps p:nth-child(4) {
  animation-delay: 1.35s;
}

.workflow-bad .workflow-steps p:nth-child(5),
.workflow-good .workflow-steps p:nth-child(5) {
  animation-delay: 1.8s;
}

@keyframes badStepSequence {
  0%, 100% {
    background: rgba(255,255,255,0.06);
    color: #8d96aa;
    transform: translateX(0);
  }

  15% {
    background: rgba(255, 77, 109, 0.14);
    color: #ff8b9b;
    transform: translateX(-4px);
  }
}

@keyframes goodStepSequence {
  0%, 100% {
    background: rgba(255,255,255,0.06);
    color: #d7dbea;
    transform: translateX(0);
  }

  15% {
    background: rgba(255, 138, 76, 0.18);
    color: #ffb27b;
    transform: translateX(4px);
    box-shadow: 0 0 30px rgba(255,138,76,0.14);
  }
}

.offline-punchline {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  text-align: center;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, rgba(255,138,76,0.18), rgba(255,77,109,0.12));
  border: 1px solid rgba(255,138,76,0.28);
}

.pillars-section {
  padding: 130px 20px;
  background:
    radial-gradient(circle at 10% 20%, rgba(83,104,255,0.13), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(255,138,76,0.12), transparent 30%),
    #07090f;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-heading h2 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.section-heading p:not(.eyebrow) {
  margin-top: 22px;
  color: #a7adbd;
  font-size: 19px;
  line-height: 1.6;
}

.pillars-grid {
  display: grid;
  gap: 18px;
}

.pillar-card {
  position: relative;
  padding: 28px;
  min-height: 250px;
  border-radius: 30px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
  transition: 0.35s ease;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(255,138,76,0.22), transparent 65%);
  opacity: 0;
  transition: 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,138,76,0.32);
  box-shadow: 0 30px 90px rgba(0,0,0,0.3);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
  color: #ffb27b;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3 {
  font-size: 26px;
  letter-spacing: -0.05em;
}

.pillar-card p {
  margin-top: 14px;
  color: #9aa2b4;
  line-height: 1.6;
  font-size: 15px;
}

@media (min-width: 760px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1050px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.workflow-steps p {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pillar-icon {
  transition: 0.35s ease;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.08) rotate(-3deg);
  background: rgba(255,138,76,0.12);
}

.trust-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 56px;
}

.trust-heading h2 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.trust-text {
  margin-bottom: 20px;
}

.flow-section {
  padding: 130px 20px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,138,76,0.13), transparent 32%),
    #07090f;
}

.flow-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

.flow-copy h2 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 680px;
}

.flow-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: #a7adbd;
  font-size: 19px;
  line-height: 1.6;
  max-width: 560px;
}

.flow-board {
  padding: 30px;
  border-radius: 38px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 40px 120px rgba(0,0,0,0.35);
}

.flow-node {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 900;
  color: #d7dbea;
}

.flow-node.active {
  color: #ffb27b;
  border-color: rgba(255,138,76,0.35);
  background: rgba(255,138,76,0.12);
}

.flow-connector {
  width: 3px;
  height: 38px;
  margin: 10px 0 10px 28px;
  border-radius: 999px;
  background: linear-gradient(#ff8a4c, rgba(255,255,255,0.12));
}

@media (min-width: 900px) {
  .flow-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.india-section {
  padding: 130px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,138,76,0.15), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(83,104,255,0.12), transparent 32%),
    #07090f;
}

.india-box {
  padding: 42px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.09);
}

.india-copy {
  max-width: 820px;
}

.india-copy h2 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.india-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: #a7adbd;
  font-size: 19px;
  line-height: 1.6;
  max-width: 660px;
}

.india-grid {
  margin-top: 52px;
  display: grid;
  gap: 18px;
}

.india-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(7,9,15,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}

.india-card span {
  color: #ffb27b;
  font-weight: 900;
  font-size: 13px;
}

.india-card h3 {
  margin-top: 16px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.india-card p {
  margin-top: 12px;
  color: #9aa2b4;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .india-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-title {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.signal-copy h2,
.section-heading h2,
.flow-copy h2,
.india-copy h2 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.pricing-section {
  padding: 130px 20px;
  background:
    radial-gradient(circle at 75% 30%, rgba(255,138,76,0.17), transparent 34%),
    #07090f;
}

.pricing-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

.pricing-copy h2 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.pricing-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: #a7adbd;
  font-size: 19px;
  line-height: 1.6;
  max-width: 560px;
}

.pricing-card {
  padding: 36px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,138,76,0.14), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,138,76,0.28);
  box-shadow: 0 40px 120px rgba(0,0,0,0.38);
}

.pricing-label {
  color: #ffb27b;
  font-size: 14px;
  font-weight: 900;
}

.pricing-card h3 {
  margin-top: 18px;
  font-size: clamp(48px, 8vw, 78px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.pricing-card h3 span {
  font-size: 20px;
  color: #a7adbd;
  letter-spacing: -0.02em;
}

.pricing-card h4 {
  margin-top: 8px;
  font-size: 28px;
  color: #ffffff;
}

.pricing-list {
  margin-top: 28px;
  display: grid;
  gap: 13px;
}

.pricing-list p {
  color: #d7dbea;
  font-weight: 800;
}

.pricing-btn {
  display: inline-block;
  margin-top: 30px;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 0.9fr 0.75fr;
  }
}

.faq-section {
  padding: 130px 20px;
  background: #07090f;
}

.faq-grid {
  display: grid;
  gap: 18px;
}

.faq-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
}

.faq-card h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.faq-card p {
  margin-top: 12px;
  color: #9aa2b4;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-card {
  transition: 0.35s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,138,76,0.24);
}

html {
  scroll-behavior: smooth;
}

.nav-links a,
.nav-cta,
.btn {
  transition: 0.28s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-cta:hover,
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255, 92, 91, 0.25);
}

.btn.secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 76, 0.35);
  background: rgba(255,255,255,0.09);
}

.eyebrow {
  transition: 0.28s ease;
}

.eyebrow:hover {
  transform: translateY(-2px);
  border-color: rgba(255,138,76,0.35);
}

.contact-section {
  padding: 130px 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,138,76,0.18), transparent 36%),
    #07090f;
}

.contact-box {
  text-align: center;
  padding: 56px 28px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.09);
}

.contact-box h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.contact-box p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  color: #a7adbd;
  font-size: 19px;
  line-height: 1.6;
}

.contact-actions {
  justify-content: center;
}

h1,
.trust-heading h2,
.signal-copy h2,
.section-heading h2,
.flow-copy h2,
.india-copy h2,
.pricing-copy h2,
.contact-box h2 {
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.footer {
  padding: 70px 20px 28px;
  background: #05070c;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer h3 {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.footer h4 {
  margin-bottom: 14px;
  color: #ffb27b;
}

.footer p,
.footer a {
  display: block;
  color: #9aa2b4;
  line-height: 1.7;
  font-size: 15px;
}

.footer a {
  margin-top: 8px;
  transition: 0.25s ease;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 16px;
  background: #ffffff;
  padding: 3px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span {
  font-size: 26px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.04em;
}

.logo-text small {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa2b4;
  white-space: nowrap;
}

.navbar {
  padding: 14px 20px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-links {
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-cta {
  white-space: nowrap;
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
}

.footer-brand img {
  width: 210px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
}

@media (max-width: 1023px) {
  .nav-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.pricing-card,
.contact-box,
.flow-board,
.signal-stage,
.india-box {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover,
.contact-box:hover,
.flow-board:hover,
.signal-stage:hover,
.india-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 76, 0.28);
  box-shadow: 0 35px 110px rgba(255, 138, 76, 0.08);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #ffb27b;
  transition: width 0.28s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   DINESAATHI NAVBAR BRAND COLOURS
========================================= */

.logo-text .brand-name {
  display: inline-flex;
  align-items: baseline;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-text .brand-dine {
  color: #e07d1a;
}

.logo-text .brand-saathi {
  color: #4f8a38;
}

/* Slightly brighter shades on the dark navbar
   while retaining the original brand identity */
@media (prefers-contrast: more) {
  .logo-text .brand-dine {
    color: #ed8a22;
  }

  .logo-text .brand-saathi {
    color: #4f8a38;
  }
}

/* =========================================
   PRICING CLARITY + ENTERPRISE NOTE
========================================= */

.pricing-basis {
  margin-top: 10px;
  color: #a7adbd;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.pricing-exclusion {
  color: #a7adbd !important;
}

.pricing-exclusion::before {
  content: "ⓘ ";
  color: #ffb27b;
}

.pricing-custom-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #9aa2b4;
  font-size: 13px;
  line-height: 1.6;
}

.enterprise-note {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  padding: 22px;
  max-width: 560px;
  border-radius: 26px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 138, 76, 0.1),
      rgba(255, 255, 255, 0.035)
    );
  border: 1px solid rgba(255, 138, 76, 0.2);
}

.enterprise-note-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 138, 76, 0.12);
  font-size: 21px;
}

.enterprise-note h3 {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.enterprise-note p {
  margin-top: 8px !important;
  color: #9aa2b4 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.enterprise-note a {
  display: inline-block;
  margin-top: 12px;
  color: #ffb27b;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.enterprise-note a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

@media (max-width: 520px) {
  .enterprise-note {
    align-items: flex-start;
    padding: 18px;
  }

  .enterprise-note-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 18px;
  }

  .pricing-basis,
  .pricing-custom-note {
    font-size: 12px;
  }
}

.enterprise-note {
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.enterprise-note:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 138, 76, 0.38);
  box-shadow:
    0 26px 75px rgba(0, 0, 0, 0.3),
    0 0 45px rgba(255, 138, 76, 0.08);
  background:
    linear-gradient(
      135deg,
      rgba(255, 138, 76, 0.14),
      rgba(255, 255, 255, 0.045)
    );
}

.enterprise-note-icon {
  transition: transform 0.35s ease;
}

.enterprise-note:hover .enterprise-note-icon {
  transform: scale(1.08) rotate(-3deg);
}

/* FINAL FOOTER — MOBILE */

@media only screen and (max-width: 800px) {
  .footer {
    width: 100% !important;
    max-width: 100% !important;
    padding: 55px 24px 28px !important;
    overflow: hidden !important;
  }

  .footer .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 36px !important;
    width: 100% !important;
  }

  .footer-grid > div {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .footer-brand img {
    width: 210px !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .footer-brand p {
    width: 100% !important;
    max-width: 330px !important;
  }

  .footer h4,
  .footer a,
  .footer p {
    text-align: left !important;
  }

  .footer a {
    display: block !important;
    width: max-content !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  .footer-bottom {
    width: 100% !important;
    margin-top: 38px !important;
    text-align: center !important;
  }

  .footer-bottom p {
    text-align: center !important;
    margin: 0 auto !important;
  }
}