@charset "UTF-8";
:root {
  --primary: #000000;
  --primary-dark: #000000;
  --accent: #000000;
  --accent-violet: #000000;
  --accent-warm: #000000;
  --navy: #000000;
  --navy-light: #111111;
  --bg: #ffffff;
  --muted: #f6f6f6;
  --text: #000000;
  --text-muted: rgba(0, 0, 0, 0.65);
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --brand-orange: #ff7a59;
  --brand-purple: #7c5cff;
  --brand-gradient: linear-gradient(120deg, var(--brand-orange), var(--brand-purple));
}

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

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #ffffff;
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

body.custom-cursor-enabled,
body.custom-cursor-enabled * {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  mix-blend-mode: difference;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.custom-cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
}

.custom-cursor.is-hover {
  border-color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.1);
}

.custom-cursor.is-click {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
}

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

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

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 2rem 0 !important;
}

.section.muted {
  background: rgba(0, 0, 0, 0.03);
}

.section-heading {
  margin-bottom: 32px;
}
.section-heading h2 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 8px;
  color: #000 !important;
}
.section-heading p {
  color: var(--text-muted);
}
.section-heading.center {
  text-align: center;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
  display: inline-block;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
}

.pill-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  position: relative;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.primary {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
.btn.primary:hover {
  filter: brightness(0.95);
}
.btn.ghost {
  border-color: rgba(0, 0, 0, 0.2);
  background: transparent;
  color: inherit;
}
.btn.ghost:hover {
  border-color: rgba(0, 0, 0, 0.35);
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.btn.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  display: inline-block;
  margin-left: 10px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.12);
}

.site-header.open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.breadcrumb {
  background: #000000;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  position: relative;
  z-index: 4;
}

.breadcrumb-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.breadcrumb-content {
  display: grid;
  gap: 14px;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.breadcrumb-trail a {
  color: #ffffff;
  opacity: 0.9;
}

.breadcrumb-trail span {
  opacity: 0.75;
}

.breadcrumb-content h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
  letter-spacing: -0.02em;
}

.breadcrumb-content p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}

.breadcrumb-visual {
  width: min(360px, 40vw);
  height: auto;
  opacity: 0.85;
}

.breadcrumb-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.scroll-line svg {
  width: 100%;
  height: 100%;
}

.scroll-path {
  fill: none;
  stroke: url(#scrollGradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.22;
  filter: drop-shadow(0 0 6px rgba(255, 122, 89, 0.2));
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .breadcrumb-visual {
    display: none;
  }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 600;
}
.logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: #ffffff;
}
.nav-links a {
  position: relative;
  transition: color 0.2s ease;
  color: #000;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: rgba(255, 122, 89, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.nav-links a:hover {
  background: var(--brand-gradient);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-actions a.ghost {
  color: #000 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.mobile-menu-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #111111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: inherit;
}

.mobile-menu-close .material-icons {
  font-size: 20px;
}

.dark-hero {
  background: radial-gradient(900px 520px at 12% -20%, rgba(255, 122, 89, 0.22), transparent 65%), radial-gradient(800px 420px at 90% 10%, rgba(124, 92, 255, 0.18), transparent 60%), linear-gradient(135deg, #000000 0%, rgba(0, 0, 0, 0.92) 60%, #000000 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  color: #f8f9ff;
  padding: 120px 0 100px;
  background: radial-gradient(900px 520px at 12% -20%, rgba(255, 122, 89, 0.22), transparent 65%), radial-gradient(800px 420px at 90% 10%, rgba(124, 92, 255, 0.18), transparent 60%), linear-gradient(135deg, #000000 0%, rgba(0, 0, 0, 0.92) 60%, #000000 100%);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.4;
}
.hero::before {
  width: 320px;
  height: 320px;
  background: rgba(255, 122, 89, 0.5);
  top: -120px;
  right: 120px;
}
.hero::after {
  width: 420px;
  height: 420px;
  background: rgba(124, 92, 255, 0.5);
  bottom: -200px;
  left: -120px;
}
.hero .pill {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 16px 0 20px;
}
.hero-content p {
  color: rgba(248, 249, 255, 0.8);
  max-width: 500px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions .ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.hero-trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(248, 249, 255, 0.8);
}
.hero-trust .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
  display: inline-block;
  margin-right: 8px;
}

.hero-card {
  background: rgba(124, 92, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  padding: 10px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(4, 10, 21, 0.35);
}

.hero-deck {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.deck-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.deck-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.deck-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  position: relative;
}

.deck-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.deck-next {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.deck-next .material-icons {
  font-size: 18px;
}

.deck-stack {
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
}

.deck-card {
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.deck-card.main {
  position: relative;
  background: #ffffff;
  padding: 28px 30px;
  border: 1.5px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box, var(--brand-gradient) border-box;
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.16);
  z-index: 3;
  color: #111111;
}

.deck-card.main h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  margin: 16px 0 10px;
}

.deck-card.main p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 18px;
}

.deck-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.04);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-cta {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-card.layer {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 2;
  opacity: 0.75;
}

.deck-card.layer-one {
  transform: translate(16px, 16px);
}

.deck-card.layer-two {
  transform: translate(32px, 32px);
  opacity: 0.55;
}

.hero-media {
  position: relative;
}

.hero-card img,
.hero-card video {
  width: 100%;
  border-radius: 20px;
  display: block;
  aspect-ratio: 4/3;
}

.video-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
}

.video-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-btn:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.75);
}

.video-controls .video-btn:last-child {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(248, 249, 255, 0.8);
  margin-bottom: 20px;
}
.hero-card-header .badge {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
}
.hero-card-header .mini {
  font-size: 0.85rem;
}

.hero-card-search label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: rgba(248, 249, 255, 0.8);
}
.hero-card-search .input-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 122, 89, 0.5);
  border-radius: 16px;
  padding: 10px 14px;
}
.hero-card-search .input-chip input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  flex: 1;
  outline: none;
}
.hero-card-search .input-chip .chip {
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #ffffff;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.hero-card-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.9rem;
}
.list-item span {
  display: block;
  color: rgba(248, 249, 255, 0.7);
  font-size: 0.8rem;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 600;
}
.avatar.alt {
  background: rgba(255, 255, 255, 0.35);
}

.hero-card-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(248, 249, 255, 0.8);
}
.hero-card-footer .btn {
  padding: 8px 18px;
  font-size: 0.85rem;
}
.hero-card-footer .ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.info-card h3 {
  font-family: "Inter", "Segoe UI", sans-serif;
  margin: 16px 0 8px;
  color: #000;
}
.info-card p {
  color: var(--text-muted);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--brand-gradient);
  display: grid;
  place-items: center;
  color: #ffffff;
}

.info-card .icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
}

.info-card .material-icons {
  font-size: 3rem;
}

.pros-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.pros-content h2 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 10px 0 14px;
}
.pros-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pros-list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--text-muted);
}
.pros-list li::before {
  content: "•";
  color: #ffffff;
  margin-right: 10px;
}

.pros-media {
  display: grid;
  gap: 20px;
}

.media-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  align-items: center;
}

.media-image {
  height: 140px;
  border-radius: 18px;
  background: linear-gradient(135deg, #000000, rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.media-image.alt {
  background: linear-gradient(135deg, #000000, rgba(0, 0, 0, 0.5));
}
.media-image.warm {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.45));
}

.media-copy h3 {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #ffffff;
  margin-bottom: 8px;
}
.media-copy p {
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.service-card h3 {
  margin-top: 14px;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #000;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--brand-gradient);
  display: grid;
  place-items: center;
  color: #ffffff;
  margin: auto;
  overflow: hidden;
  padding: 10px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  border-radius: 19px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-content h2 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 10px 0 14px;
}
.why-content p {
  color: var(--text-muted);
}

.why-features {
  display: grid;
  gap: 18px;
}

.feature {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
}
.feature h3 {
  font-family: "Inter", "Segoe UI", sans-serif;
  margin-bottom: 6px;
}
.feature p {
  color: var(--text-muted);
}

.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.testimonial-card p {
  color: var(--text-muted);
  margin: 12px 0 18px;
}

.stars {
  color: #000000;
  letter-spacing: 0.1em;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-meta span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.testimonial-meta .avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.7rem;
  width: 70px;
  height: 70px;
  font-weight: 700;
  background: var(--brand-gradient);
}
.testimonial-meta div strong {
  color: #000;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.testimonials-controls {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.testimonials-controls button {
  color: #000 !important;
}

.dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.dot.active {
  background: rgba(255, 122, 89, 0.5);
  width: 26px;
}

.cta {
  margin: 0;
  padding: 90px 0;
  background: linear-gradient(120deg, #000000, rgba(0, 0, 0, 0.85));
  color: #fff;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-grid h2 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 10px 0 12px;
}
.cta-grid p {
  color: rgba(248, 249, 255, 0.8);
  max-width: 460px;
}

.cta-actions {
  display: flex;
  gap: 14px;
}
.cta-actions .ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #ff7a59 0%, #b05cff 55%, #6b57ff 100%);
  color: rgba(248, 249, 255, 0.88);
  padding: 90px 0 10px 0px;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 260px at 10% 20%, rgba(255, 255, 255, 0.18), transparent 60%), radial-gradient(420px 220px at 85% 30%, rgba(255, 255, 255, 0.14), transparent 60%);
  opacity: 0.65;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-brand p {
  margin-top: 16px;
  max-width: 280px;
  font-size: 1rem;
}

.footer-column {
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-column h4 {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.footer-column a {
  color: rgba(248, 249, 255, 0.7);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-column a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-social {
  gap: 16px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: grid !important;
  place-items: center;
  color: #ffffff !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
}
.social-icon svg {
  width: 30px;
  height: 30px;
}
.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.store-buttons {
  display: grid;
  gap: 12px;
}

.store-badge {
  background: #000000;
  border-radius: 12px;
  padding: 0;
  gap: 2px;
  max-width: 180px;
  overflow: hidden;
}
.store-badge strong {
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 22px;
  font-size: 0.85rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.value-grid h3 {
  color: #000;
}

.value-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #000000, rgba(0, 0, 0, 0.4));
}
.value-card h3 {
  font-family: "Inter", "Segoe UI", sans-serif;
  margin: 16px 0 8px;
}
.value-card p {
  color: var(--text-muted);
}

.value-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--brand-gradient);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.value-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.value-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
}

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

.persona-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.persona-card h3 {
  font-family: "Inter", "Segoe UI", sans-serif;
  margin: 14px 0 10px;
  color: #000;
}

.persona-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
}

.persona-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}
.persona-list li::before {
  content: "•";
  color: #000;
  margin-right: 8px;
}

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

.story-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.story-card h3 {
  font-family: "Inter", "Segoe UI", sans-serif;
  margin: 12px 0 8px;
  color: #000;
}
.story-card p {
  color: var(--text-muted);
}

.story-stat {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 2.2rem;
  color: #000000;
}

.story-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.story-meta .pill {
  font-size: 0.75rem;
  padding: 6px 12px;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 520px;
  }
  .value-grid,
  .persona-grid,
  .success-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pros-grid,
  .why-grid,
  .services-grid,
  .btn {
    grid-template-columns: 1fr;
  }
  .media-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .site-header {
    backdrop-filter: none;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
  }
  .nav-panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 32px;
    border-radius: 0;
    box-shadow: none;
    max-height: none;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 200;
  }
  .site-header.open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0 20px;
  }
  .nav-actions {
    gap: 12px;
    margin-top: 18px;
  }
  .nav-actions a {
    width: 100%;
    justify-content: center;
  }
  .nav-links {
    gap: 6px;
    margin-top: 16px;
  }
  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1.05rem;
    color: #111111;
  }
  .mobile-menu-header {
    display: flex;
  }
  .deck-stack {
    padding-right: 16px;
    padding-bottom: 16px;
  }
  .deck-card.layer-one,
  .deck-card.layer-two {
    transform: translate(10px, 10px);
  }
  .hero {
    padding-top: 100px;
  }
  .testimonials-track {
    gap: 16px;
  }
  .testimonial-card {
    flex-basis: 100%;
  }
  .cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .success-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-grid, .persona-grid, .success-grid, .cards-grid, .value-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .btn,
  .testimonials-track {
    transition: none;
  }
}
.section.dark-hero {
  color: #ffffff;
}

.section.dark-hero .section-heading h2,
.section.dark-hero .section-heading p,
.section.dark-hero .eyebrow,
.section.dark-hero p,
.section.dark-hero h2,
.section.dark-hero h3 {
  color: #ffffff;
}

.section.dark-hero .pill {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.section.dark-hero .feature,
.section.dark-hero .info-card,
.section.dark-hero .persona-card,
.section.dark-hero .story-card,
.section.dark-hero .media-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.section.dark-hero .feature p,
.section.dark-hero .info-card p,
.section.dark-hero .persona-card p,
.section.dark-hero .story-card p,
.section.dark-hero .media-card p {
  color: rgba(255, 255, 255, 0.75);
}

.section.dark-hero .pros-list,
.section.dark-hero .persona-list,
.section.dark-hero .value-meta,
.section.dark-hero .story-meta {
  color: rgba(255, 255, 255, 0.7);
}

.section.dark-hero .media-image {
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.8), rgba(124, 92, 255, 0.8));
}

.section.dark-hero .media-image.alt {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 122, 89, 0.5));
}

.section.dark-hero .media-image.warm {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(124, 92, 255, 0.6));
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.icon .material-icons,
.service-icon.material-icons {
  color: #ffffff;
  font-size: 3rem;
}

.media-image .material-icons {
  font-size: 2.5rem;
  color: #ffffff;
}

.nav-links a.active {
  background: var(--brand-gradient);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.nav-links a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.contact-page {
  padding: 90px 0 110px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 8px;
  color: #000;
}

.contact-subtitle {
  color: var(--text-muted);
  margin-bottom: 26px;
}

.form-stack {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
  font-weight: 500;
  color: var(--text);
}
.form-field label {
  font-size: 0.95rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.2);
}

.phone-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}

.phone-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0 12px;
  font-weight: 600;
  background: #ffffff;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-alert {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  display: none;
}

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

.form-alert.success {
  background: rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.35);
  color: #1b5e20;
}

.form-alert.error {
  background: rgba(211, 47, 47, 0.12);
  border-color: rgba(211, 47, 47, 0.35);
  color: #b71c1c;
}

.contact-panel {
  display: grid;
  gap: 18px;
  position: relative;
  padding-left: 28px;
}
.contact-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.contact-panel .help-card {
  margin-bottom: 6px;
}

.contact-panel .help-card:last-child {
  margin-bottom: 0;
}

.help-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.help-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  color: #000;
}
.help-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 600;
  color: #000000;
}

button.text-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    padding-left: 0;
  }
  .contact-panel::before {
    display: none;
  }
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-index {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--brand-gradient);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.faq-question {
  color: #000000;
  font-weight: 600;
}

.faq-toggle .material-icons {
  color: #000000;
  font-size: 1.4rem;
}

.faq-toggle .remove {
  display: none;
}

.faq-item[open] .faq-toggle .add {
  display: none;
}

.faq-item[open] .faq-toggle .remove {
  display: inline-flex;
}

.faq-answer {
  padding: 0 20px 18px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Legacy FAQ card (unused but kept for safety) */
.faq-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}
.faq-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.faq-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
.policy-content {
  display: grid;
  gap: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.policy-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.policy-section h3 {
  margin-bottom: 8px;
  color: #000000;
}

.policy-section p {
  color: var(--text-muted);
}

.policy-section ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-muted);
  display: grid;
  gap: 6px;
}

.about-hero {
  padding: 90px 0 60px;
  background: #ffffff;
  color: #000000;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-hero-content h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  margin: 12px 0 16px;
}

.about-hero-content p {
  color: var(--text-muted);
}

.about-hero-content h1,
.about-card h2,
.story-grid h2,
.make-india h2,
.vision-section h2,
.vision-card h3,
.about-values h2,
.story-step h3,
.make-card h3 {
  color: #000000;
}

.about-hero-actions {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.stat-card {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid var(--border);
  text-align: left;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.stat-card strong {
  color: #000000;
}

.about-hero-panel {
  display: grid;
  gap: 16px;
}

.about-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.about-card.muted {
  background: rgba(0, 0, 0, 0.03);
}

.about-pill {
  margin-top: 16px;
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 600;
}

.about-story {
  background: var(--muted);
  color: #000000;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.story-panel {
  display: grid;
  gap: 16px;
}

.story-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.story-step span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--brand-gradient);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.story-step h3 {
  margin-bottom: 6px;
}

.story-step p {
  color: var(--text-muted);
}

.make-india {
  background: linear-gradient(120deg, #000000 0%, #1c1c1c 55%, #000000 100%);
  color: #ffffff;
}

.make-india-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.make-india h2 {
  color: #ffffff;
}

.make-india p {
  color: rgba(255, 255, 255, 0.75);
}

.make-india .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.make-india-media img {
  width: 100%;
  border-radius: 18px;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  display: block;
}

.make-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.vision-section {
  background: #ffffff;
  color: #000000;
}

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

.vision-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.about-values {
  background: #ffffff;
  color: #000000;
}

@media (max-width: 1024px) {
  .about-hero-grid,
  .story-grid,
  .make-india-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
}
.delete-account {
  background: #ffffff;
  color: #000000;
}

.delete-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
}

.delete-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  color: #000000;
}

.delete-copy p {
  color: var(--text-muted);
}

.phone-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.verify-btn[hidden] {
  display: none;
}

.verify-btn.verified {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.04);
  color: #000000;
}

.otp-section[hidden] {
  display: none;
}

.delete-steps {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.delete-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid var(--border);
}

.delete-step span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-gradient);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.delete-note {
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
}

.delete-note .material-icons {
  color: #000000;
}

.delete-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.delete-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-btn {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--brand-gradient);
  color: #ffffff;
  border-color: transparent;
}

.delete-card h2 {
  color: #000000;
  margin-bottom: 6px;
}

.delete-card .muted {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.delete-form {
  display: grid;
  gap: 16px;
}

.otp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.otp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.otp-btn {
  white-space: nowrap;
}

.otp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.otp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.otp-status {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.otp-input {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 1.1rem;
  font-family: inherit;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .delete-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .otp-row {
    grid-template-columns: 1fr;
  }
  .otp-btn {
    width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
