/* DocFill Website — Aryze Colors 2026 V2 */
:root {
  --bg: #F7F9FA;
  --fg: #001E2B;
  --primary: #007599;
  --primary-dark: #006282;
  --navy: #001E2B;
  --mint: #D9F5EA;
  --mint-dark: #6FCF97;
  --border: #BFD9EF;
  --muted: #5C6D7E;
  --light: #EDF2F7;
  --white: #FFFFFF;
  --danger: #DC2626;
  --radius: 12px;
  --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,249,250,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.nav-logo .doc { color: var(--navy); }
.nav-logo .fill { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--primary) !important; color: var(--white) !important; }

/* ── Hero ── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: var(--mint);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--primary); }
.hero .subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary); color: var(--white); }
.btn-secondary {
  background: var(--white);
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* ── How it Works ── */
.section { padding: 80px 0; }
.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-desc {
  text-align: center;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 56px;
  font-size: 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.25s;
}
.step-card:hover { box-shadow: 0 8px 32px rgba(0,30,43,0.08); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ── Modes ── */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.mode-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.mode-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--mint);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.mode-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.mode-card p { color: var(--muted); font-size: 15px; margin-bottom: 20px; line-height: 1.6; }
.mode-card ul { list-style: none; }
.mode-card li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mode-card li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23007599' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Security ── */
.security-section { background: var(--navy); color: var(--white); }
.security-section .section-label { color: var(--mint-dark); }
.security-section .section-title { color: var(--white); }
.security-section .section-desc { color: rgba(255,255,255,0.65); }
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.security-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.security-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.security-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }
.security-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(111,207,151,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--mint-dark);
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.25s;
  position: relative;
}
.price-card.popular {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0,117,153,0.12);
}
.price-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.price-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
}
.price-amount span { font-size: 16px; font-weight: 500; color: var(--muted); }
.price-per { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.price-features { list-style: none; text-align: left; margin-bottom: 24px; }
.price-features li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23007599' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.price-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--fg);
  cursor: pointer;
  transition: all 0.2s;
}
.price-btn:hover { border-color: var(--primary); color: var(--primary); }
.price-card.popular .price-btn {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.price-card.popular .price-btn:hover { background: var(--primary); border-color: var(--primary); }

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--fg); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .steps-grid, .security-grid, .pricing-grid { grid-template-columns: 1fr; }
  .features-grid, .modes-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 48px; }
  .section { padding: 56px 0; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer .container { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── Privacy / Legal pages ── */
.legal-page { padding: 48px 0 80px; max-width: 720px; margin: 0 auto; }
.legal-page h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.legal-page .updated { font-size: 14px; color: var(--muted); margin-bottom: 36px; }
.legal-page h2 { font-size: 20px; font-weight: 700; margin-top: 36px; margin-bottom: 12px; }
.legal-page p, .legal-page li { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; }

/* ── Success page ── */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 480px;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.success-card h1 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.success-card p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
