/* ============================================
   PRODELTAFLOW — LANDING PAGE STYLES
   Palette: #00E6A8 | #00B383 | #0A0A0A | #FFF | #A0A0A0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Montserrat:wght@400;600;700;800&display=swap');

:root {
  --green: #00E6A8;
  --green-dark: #00B383;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray: #A0A0A0;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(0, 230, 168, 0.15);
  --card-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid rgba(0, 230, 168, 0.08);
  transition: all 0.3s ease;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav.scrolled {
  padding: 14px 60px;
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(0, 230, 168, 0.15);
}

.nav-logo img {
  height: 100px;
  /* width: auto; */
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--black);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 230, 168, 0.35);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0, 230, 168, 0.06);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 168, 0.12) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 168, 0.1);
  border: 1px solid rgba(0, 230, 168, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  animation: fade-up 0.7s ease 0.1s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 480px;
  margin: 0 0 40px;
  line-height: 1.7;
  animation: fade-up 0.7s ease 0.2s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  animation: fade-up 0.7s ease 0.3s both;
}

.hero-cta .btn-primary {
  font-size: 1rem;
  padding: 14px 32px;
}

.hero-cta .btn-secondary {
  font-size: 1rem;
  padding: 14px 32px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  animation: fade-up 0.7s ease 0.45s both;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.stat {
  text-align: left;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Hero visual / image */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: fade-up 0.8s ease 0.3s both;
}

.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 230, 168, 0.12);
}

.hero-img {
  width: 100%;
  max-width: 580px;
  display: block;
  border-radius: 20px;
}

.hero-img-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 60px rgba(0, 230, 168, 0.08);
  pointer-events: none;
  border: 1px solid rgba(0, 230, 168, 0.18);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ── TICKER TAPE ── */
.ticker-wrap {
  overflow: hidden;
  background: rgba(0, 230, 168, 0.04);
  border-top: 1px solid rgba(0, 230, 168, 0.08);
  border-bottom: 1px solid rgba(0, 230, 168, 0.08);
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker-item span.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── SECTION BASE ── */
section {
  position: relative;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.py-section {
  padding: 110px 0;
}

/* ── GLASS CARD ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
  border-color: rgba(0, 230, 168, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 230, 168, 0.1);
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 64px;
}

.feature-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 230, 168, 0.1);
  border: 1px solid rgba(0, 230, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0, 230, 168, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: auto;
}

/* ── SUITE SHOWCASE ── */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.suite-item {
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: border-color 0.3s, background 0.3s, transform 0.3s !important;
  cursor: default;
}

.suite-item:hover {
  border-color: rgba(0, 230, 168, 0.35) !important;
  background: rgba(0, 230, 168, 0.04) !important;
  transform: translateY(-3px) !important;
}

.suite-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--green);
}

.suite-item .suite-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
}

.suite-item .suite-desc {
  font-size: 0.82rem !important;
  color: var(--gray) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  width: 100% !important;
  text-align: left !important;
}

/* ── CHART ANIMATION ── */
.chart-container {
  position: relative;
  height: 240px;
  margin: 64px 0 0;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 230, 168, 0.12);
  padding: 24px;
}

.chart-canvas {
  width: 100%;
  height: 100%;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 64px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  border-color: rgba(0, 230, 168, 0.4);
  background: rgba(0, 230, 168, 0.04);
}

.pricing-card.featured::before {
  opacity: 1;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.plan-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 0.87rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  align-self: flex-start;
  margin-top: 10px;
}

.price-period {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.price-savings {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 32px;
  min-height: 20px;
}

.plan-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white);
}

.plan-features li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 230, 168, 0.15);
  border: 1px solid rgba(0, 230, 168, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--green);
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px;
}

.pricing-card .btn-secondary {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(0, 230, 168, 0.25);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  font-family: 'Sora', sans-serif;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 230, 168, 0.1);
  border: 1px solid rgba(0, 230, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(0, 230, 168, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── CTA FINAL ── */
.cta-section {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 168, 0.1) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.cta-section p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 44px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  gap: 20px;
}

.footer-logo img {
  height: 28px;
}

footer p {
  color: var(--gray);
  font-size: 0.82rem;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: rgba(0, 230, 168, 0.02);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-info .section-sub {
  margin-bottom: 36px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.contact-channel:hover {
  border-color: rgba(0, 230, 168, 0.3);
  background: rgba(0, 230, 168, 0.05);
  transform: translateX(4px);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 230, 168, 0.1);
  border: 1px solid rgba(0, 230, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.channel-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2px;
}

.channel-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
}

.contact-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}

/* Form */
.contact-form-wrap {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(160, 160, 160, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 230, 168, 0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A0A0A0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  opacity: 0.7;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px 0;
}

.form-success.visible {
  display: flex;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 230, 168, 0.15);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 800;
}

.form-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.form-success p {
  color: var(--gray);
  font-size: 0.9rem;
}

.form-success a {
  color: var(--green);
  text-decoration: none;
}

.form-success a:hover {
  text-decoration: underline;
}

/* ── FOOTER EXPANDED ── */
.footer-expanded {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  padding: 72px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-logo-img {
  height: 100px;
  margin-bottom: 20px;
  display: block;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-risk {
  font-size: 0.78rem;
  color: rgba(160, 160, 160, 0.6);
  line-height: 1.6;
  max-width: 340px;
  border-left: 2px solid rgba(0, 230, 168, 0.2);
  padding-left: 12px;
}

.footer-risk strong {
  color: rgba(160, 160, 160, 0.9);
}

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col-links a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  width: 100%;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(160, 160, 160, 0.5);
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
  }

  .nav.scrolled {
    padding: 12px 24px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 80px 20px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(0, 230, 168, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 160px 0 80px; /* Fix overlap with mobile header */
  }

  .container {
    padding: 0 24px;
  }

  .py-section {
    padding: 80px 0;
  }

  .hero-stats {
    gap: 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat {
    text-align: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    padding: 48px 0 40px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}