/* ============================================================
   GENEKI.IN — Shared Styles
   ============================================================ */

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

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

:root {
  --navy:  #0D1B2A;
  --teal:  #00C9A7;
  --gold:  #F5A623;
  --light: #F0F4F8;
  --body:  #475569;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
}

h1,h2,h3,h4,h5 { font-weight: 700; color: var(--navy); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Utility ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.teal  { color: var(--teal); }
.gold  { color: var(--gold); }
.white { color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: 2px solid transparent;
}
.btn:hover { opacity: .88; transform: translateY(-2px); }

.btn-teal   { background: var(--teal);  color: var(--navy); }
.btn-ghost  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-lg { padding: 18px 44px; font-size: 16px; }
.btn-full { width: 100%; text-align: center; }

/* ---- Nav ---- */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(0,201,167,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,.8); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { margin-left: 12px; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; transition: .3s;
}

/* ---- Hero ---- */
.hero {
  background: var(--navy);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,201,167,.08) 0%, transparent 65%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--teal); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust span::before { content: '•'; color: var(--teal); }
.hero-trust span:first-child::before { display: none; }

/* Hero illustration placeholder */
.hero-illustration {
  background: rgba(0,201,167,.06);
  border: 1px solid rgba(0,201,167,.2);
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-illustration svg { opacity: .85; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 6px 20px;
  display: flex; align-items: center; gap: 8px;
}
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.12); }
.trust-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }

/* ---- Section base ---- */
section { padding: 88px 0; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--body); max-width: 560px; }

/* ---- Problem Cards ---- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(13,27,42,.08); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(0,201,167,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 22px;
}
.card h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy); }
.card p { font-size: 15px; color: var(--body); line-height: 1.65; }

/* ---- Process Steps ---- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal));
  opacity: .25;
}
.step-item { text-align: center; padding: 0 24px; }
.step-num {
  width: 64px; height: 64px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  margin: 0 auto 20px;
}
.step-item h3 { font-size: 18px; margin-bottom: 6px; }
.step-badge {
  display: inline-block;
  background: rgba(0,201,167,.12);
  color: var(--teal);
  font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 10px;
}
.step-item p { font-size: 15px; color: var(--body); }

/* ---- Stats ---- */
.stats-section { background: var(--navy); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.stat-item {
  background: var(--navy);
  padding: 44px 32px;
  text-align: center;
}
.stat-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,.65); font-weight: 500; }
.stat-caption { text-align: center; font-size: 13px; color: rgba(255,255,255,.4); }

/* ---- CTA Band ---- */
.cta-band {
  background: var(--teal);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 3.5vw, 36px); color: var(--navy); margin-bottom: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-band .btn { background: var(--navy); color: var(--white); }
.cta-band .btn:hover { background: #162336; }

/* ---- Page Header (inner pages) ---- */
.page-header {
  background: var(--navy);
  padding: 72px 0 64px;
  text-align: center;
}
.page-header .section-label { justify-content: center; display: block; }
.page-header h1 { font-size: clamp(30px, 4.5vw, 48px); color: var(--white); margin-bottom: 16px; }
.page-header p { font-size: 18px; color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; }

/* ---- FAQ Accordion ---- */
.faq { background: var(--light); }
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}
.faq-q {
  width: 100%; text-align: left;
  padding: 20px 24px;
  font-weight: 600; font-size: 16px; color: var(--navy);
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q .icon { color: var(--teal); font-size: 20px; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 15px; color: var(--body); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ---- Step detail (how-it-works) ---- */
.step-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid #E2E8F0;
}
.step-detail:last-of-type { border-bottom: none; }
.step-detail.reverse { direction: rtl; }
.step-detail.reverse > * { direction: ltr; }
.step-number-big {
  font-size: 80px;
  font-weight: 800;
  color: rgba(0,201,167,.15);
  line-height: 1;
  margin-bottom: -16px;
}
.step-detail h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.step-detail ul { list-style: none; margin-top: 20px; }
.step-detail ul li {
  padding: 8px 0;
  font-size: 15px; color: var(--body);
  display: flex; align-items: flex-start; gap: 10px;
}
.step-detail ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.step-guarantee {
  margin-top: 24px;
  background: rgba(0,201,167,.08);
  border-left: 3px solid var(--teal);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 14px; font-weight: 600; color: var(--navy);
}

.monitoring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.monitoring-card {
  background: var(--light);
  border-radius: 10px;
  padding: 20px;
}
.monitoring-card h4 { font-size: 15px; margin-bottom: 6px; color: var(--navy); }
.monitoring-card p  { font-size: 14px; color: var(--body); }

.placeholder-viz {
  background: var(--light);
  border: 2px dashed #CBD5E1;
  border-radius: 12px;
  height: 260px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #94A3B8; font-size: 14px; gap: 8px;
  text-align: center; padding: 24px;
}
.placeholder-viz .viz-icon { font-size: 36px; }

/* ---- Case Study ---- */
.stat-pills {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 24px;
}
.pill {
  background: rgba(0,201,167,.15);
  color: var(--teal);
  border: 1px solid rgba(0,201,167,.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px; font-weight: 600;
}
.context-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.context-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px;
}
.context-card h3 { font-size: 16px; color: var(--teal); margin-bottom: 10px; }
.context-card p  { font-size: 15px; }

.timeline { margin-top: 48px; }
.timeline-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #E2E8F0;
}
.timeline-row:last-child { border-bottom: none; }
.timeline-week { font-weight: 700; color: var(--teal); font-size: 15px; }
.timeline-desc { font-size: 15px; }

.quote-block {
  background: var(--navy);
  border-radius: 16px;
  padding: 56px 64px;
  text-align: center;
  position: relative;
  margin-top: 0;
}
.quote-mark {
  font-size: 80px;
  color: var(--teal);
  line-height: .8;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.quote-text {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 24px;
}
.quote-attr { color: rgba(255,255,255,.55); font-size: 14px; }

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}
.pricing-card {
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  background: var(--white);
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  background: var(--navy);
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal);
}
.recommended-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px;
}
.plan-name { font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--body); margin-bottom: 8px; }
.pricing-card.featured .plan-name { color: rgba(255,255,255,.6); }
.plan-price { font-size: clamp(28px, 3vw, 38px); font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-card.featured .plan-price { color: var(--teal); }
.plan-price-usd { font-size: 13px; color: var(--body); margin-top: 4px; }
.pricing-card.featured .plan-price-usd { color: rgba(255,255,255,.5); }
.plan-for { font-size: 13px; color: var(--body); margin: 12px 0 20px; padding-top: 12px; border-top: 1px solid #E2E8F0; }
.pricing-card.featured .plan-for { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.1); }
.plan-features { list-style: none; margin-bottom: 28px; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; padding: 7px 0;
  color: var(--body);
}
.pricing-card.featured .plan-features li { color: rgba(255,255,255,.8); }
.plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-note { text-align: center; margin-top: 24px; font-size: 14px; color: var(--body); }
.pricing-note strong { color: var(--navy); }

.roi-box {
  background: var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 48px 0;
  font-size: 17px;
  color: var(--navy);
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 26px; margin-bottom: 28px; }
.contact-steps { list-style: none; margin-bottom: 36px; }
.contact-steps li {
  display: flex; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid #E2E8F0;
  font-size: 15px;
}
.contact-steps li:last-child { border-bottom: none; }
.contact-step-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--teal); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; margin-top: 1px;
}
.contact-meta { font-size: 14px; color: var(--body); }
.contact-meta a { color: var(--teal); font-weight: 600; }

.contact-form {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(13,27,42,.06);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; letter-spacing: .02em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-size: 15px; font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,201,167,.12);
}
.form-trust { font-size: 12px; color: var(--body); text-align: center; margin-top: 14px; }

/* ---- Footer ---- */
footer {
  background: var(--navy);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { font-size: 20px; font-weight: 800; color: var(--teal); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--teal); }
.footer-copy { color: rgba(255,255,255,.3); font-size: 13px; }

/* ---- Dark section ---- */
.dark-section { background: var(--navy); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255,255,255,.65); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner, .step-detail, .contact-grid { grid-template-columns: 1fr; }
  .hero-illustration { height: 220px; }
  .step-detail.reverse { direction: ltr; }
  .cards-3, .stats-grid, .pricing-grid, .context-cards { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .quote-block { padding: 40px 28px; }
}
@media (max-width: 600px) {
  .cards-3, .stats-grid, .pricing-grid, .context-cards, .monitoring-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 20px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  nav { position: relative; }
  .hero { padding: 64px 0 56px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .trust-item + .trust-item { border-left: none; }
  .timeline-row { grid-template-columns: 80px 1fr; }
}
