/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #eef0f4;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0f1b2d;
  text-decoration: none;
}

.navbar select {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid #dde1e8;
  border-radius: 8px;
  background: #fff;
  color: #0f1b2d;
  cursor: pointer;
}

:root {
  --navy: #0f1b2d;
  --navy-light: #1a2e4a;
  --blue: #2d7bc4;
  --blue-light: #4a9ae0;
  --green: #3cb848;
  --green-dark: #2a9636;
  --teal: #1a8a7a;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #dde1e8;
  --gray-400: #6b7280;
  --gray-600: #374151;
  --font-main: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

html { background: #ffffff !important; }

body {
  font-family: var(--font-main);
  color: var(--navy);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(165deg, #f0f6fc 0%, #e8f4f0 40%, #f7f8fa 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,123,196,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(60,184,72,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 6px 18px 6px 8px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--navy);
}

h1 .accent {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(60,184,72,0.3);
}

.hero-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(60,184,72,0.4);
}

.hero-price {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-400);
}

.hero-platforms {
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray-400);
}

/* SOCIAL PROOF */
.proof {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.proof-text {
  font-size: 14px;
  color: var(--gray-600);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* PROBLEM */
.problem {
  padding: 100px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.problem h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.steps-manual {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}

.steps-manual h3 {
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--gray-400);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-list {
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  counter-increment: steps;
  padding: 10px 0 10px 44px;
  position: relative;
  font-size: 15px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}

.step-list li:last-child { border-bottom: none; }

.step-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 10px;
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  font-family: var(--font-mono);
}

.steps-ftpull {
  background: linear-gradient(135deg, #f0faf0 0%, #e8f8f4 100%);
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.steps-ftpull h3 {
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--green);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.steps-ftpull p {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.steps-ftpull .zero {
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin: 8px 0;
  font-family: var(--font-mono);
}

/* FEATURES */
.features {
  padding: 100px 24px;
  background: var(--gray-50);
  color: var(--navy);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features .section-label {
  color: var(--blue);
}

.features h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 60px;
  color: var(--navy);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(45,123,196,0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(45,123,196,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
}

/* SECTORS */
.sectors {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.sectors h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.sectors .subtitle {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 48px;
  max-width: 600px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.sector-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
  cursor: default;
}

.sector-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(45,123,196,0.1);
}

.sector-card .sector-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.sector-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.sector-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* HOW IT WORKS */
.how {
  padding: 100px 24px;
  background: var(--gray-50);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.how h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}

.how-step:last-child { border-bottom: none; }

.how-num {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--blue);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.how-step p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* COMPARISON */
.comparison {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
  text-align: center;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 500;
  color: var(--gray-400);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
  border-bottom: 2px solid var(--gray-200);
}

.comparison-table th:last-child {
  color: var(--green);
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.comparison-table td:last-child {
  font-weight: 700;
  color: var(--navy);
}

.comparison-table .check { color: var(--green); font-size: 18px; }
.comparison-table .cross { color: #d44; font-size: 18px; }
.comparison-table .partial { color: var(--gray-400); }

/* PRICING */
.pricing {
  padding: 100px 24px;
  background: linear-gradient(165deg, #f0f6fc 0%, #e8f4f0 40%, #f7f8fa 100%);
  text-align: center;
}

.pricing-inner {
  max-width: 500px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.pricing .subtitle {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.pricing-amount {
  font-size: 64px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-mono);
  line-height: 1;
}

.pricing-amount span {
  font-size: 24px;
  color: var(--gray-400);
  font-weight: 400;
}

.pricing-type {
  font-size: 15px;
  color: var(--gray-400);
  margin: 8px 0 32px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  min-width: 20px;
}

.pricing-cta {
  display: block;
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(60,184,72,0.3);
  font-family: var(--font-main);
}

.pricing-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.pricing-guarantee {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-400);
}

/* FAQ */
.faq {
  padding: 100px 24px;
  max-width: 700px;
  margin: 0 auto;
}

.faq h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.faq-item summary {
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gray-400);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 48px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  color: var(--gray-400);
  text-align: center;
  font-size: 13px;
}

footer a {
  color: var(--gray-600);
  text-decoration: none;
}

footer a:hover { color: var(--navy); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero-inner { padding: 100px 20px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .how-step { flex-direction: column; gap: 12px; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-amount { font-size: 48px; }
}
