/* =============================================
   NORISKSITES.COM — Main Stylesheet
   ============================================= */

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

:root {
  --green: #10b981;
  --green-dark: #059669;
  --green-light: #d1fae5;
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --navy-light: #334155;
  --slate: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-lg: 22px;
}

html { scroll-behavior: smooth; }

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

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(16,185,129,0.35); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { background: var(--light); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-nav { background: var(--green); color: white; padding: 9px 20px; font-size: 0.88rem; }
.btn-nav:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; width: 100%; justify-content: center; }

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: linear-gradient(135deg, #10b981, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-accent { color: var(--green); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  margin-left: auto;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-weight: 500; color: var(--navy); }

/* ---- HERO ---- */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--navy);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--slate);
  font-weight: 500;
}
.trust-item i { color: var(--green); }

/* ---- BROWSER MOCKUP ---- */
.hero-mockup {
  max-width: 780px;
  margin: 0 auto;
}
.browser-frame {
  background: white;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 0 0 1px var(--border);
  overflow: hidden;
}
.browser-bar {
  background: #f1f5f9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.browser-url {
  background: white;
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.75rem;
  color: var(--slate);
  flex: 1;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.browser-content { padding: 24px; background: #fafafa; }
.mock-nav {
  height: 12px; background: var(--border);
  border-radius: 6px; margin-bottom: 20px; width: 60%;
}
.mock-hero { margin-bottom: 24px; }
.mock-h1 { height: 20px; background: linear-gradient(90deg, #e2e8f0, #f1f5f9); border-radius: 6px; margin-bottom: 12px; width: 75%; }
.mock-h2 { height: 14px; background: #f1f5f9; border-radius: 6px; margin-bottom: 16px; width: 55%; }
.mock-btn { height: 36px; background: var(--green); border-radius: 50px; width: 140px; opacity: 0.7; }
.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mock-card {
  height: 80px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.mock-hero-bar { height: 8px; background: var(--green); margin-bottom: 0; opacity: 0.6; }

/* ---- PROOF BAR ---- */
.proof-bar {
  background: var(--navy);
  padding: 40px 24px;
}
.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.proof-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.02em;
}
.proof-label { font-size: 0.85rem; color: #94a3b8; font-weight: 500; }
.proof-divider { width: 1px; height: 50px; background: #334155; }

/* ---- SECTIONS COMMON ---- */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 100px 24px;
  background: var(--light);
}
.steps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 240px;
  flex: 1;
  min-width: 200px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: var(--slate); line-height: 1.6; }
.step-arrow { font-size: 1.2rem; color: var(--border); flex-shrink: 0; }

/* ---- WHY ---- */
.why { padding: 100px 24px; background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.why-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.why-icon.green { background: #d1fae5; color: var(--green-dark); }
.why-icon.blue { background: #dbeafe; color: #2563eb; }
.why-icon.purple { background: #ede9fe; color: #7c3aed; }
.why-icon.orange { background: #fff7ed; color: #ea580c; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }

/* ---- WHAT YOU GET ---- */
.whatyouget { padding: 100px 24px; background: var(--light); }
.get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.get-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.get-item i { color: var(--green); font-size: 0.85rem; flex-shrink: 0; }
.get-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  text-align: center;
  position: relative;
}
.get-card.featured { border-color: var(--green); }
.get-card-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.get-card-icon { font-size: 2.5rem; color: var(--green); margin-bottom: 16px; }
.get-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.get-card p { color: var(--slate); font-size: 0.9rem; margin-bottom: 20px; }
.get-card-price { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.get-card-price span { font-size: 2rem; font-weight: 900; color: var(--green); }
.get-card-note { font-size: 0.8rem; color: var(--slate); margin-bottom: 28px; }

/* ---- PRICING ---- */
.pricing { padding: 100px 24px; background: white; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.2s;
}
.pricing-card:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--green);
  background: linear-gradient(180deg, #f0fdf4 0%, white 100%);
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.price { font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.price span { font-size: 0.85rem; font-weight: 400; color: var(--slate); }
.pricing-card ul { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-card li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.pricing-card li i { color: var(--green); font-size: 0.8rem; }
.pricing-note {
  text-align: center;
  color: var(--slate);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pricing-note i { color: var(--green); }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 100px 24px; background: var(--navy); }
.testimonials .section-label { color: #10b981; }
.testimonials .section-title { color: white; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.2s;
}
.testi-card:hover { border-color: var(--green); transform: translateY(-4px); }
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: #cbd5e1; font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: white;
  flex-shrink: 0;
}
.testi-author strong { display: block; color: white; font-size: 0.9rem; }
.testi-author span { font-size: 0.8rem; color: #64748b; }

/* ---- FAQ ---- */
.faq { padding: 100px 24px; background: var(--light); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-q i { font-size: 0.85rem; transition: transform 0.2s; flex-shrink: 0; color: var(--green); }
.faq-q.open i { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 22px;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a2e 100%);
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-badge {
  display: inline-block;
  background: rgba(16,185,129,0.2);
  color: var(--green);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(16,185,129,0.3);
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-section p { color: #94a3b8; margin-bottom: 40px; line-height: 1.7; }
.cta-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: #64748b; }
.cta-form input:focus { outline: none; border-color: var(--green); background: rgba(16,185,129,0.05); }
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-note i { color: var(--green); }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-light);
  padding: 60px 24px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p { color: #64748b; font-size: 0.88rem; margin-top: 12px; line-height: 1.7; }
.footer-legal { font-size: 0.78rem !important; color: #475569 !important; margin-top: 8px !important; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 { color: white; font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.footer-links a { color: #64748b; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--navy-light);
}
.footer-bottom p { color: #475569; font-size: 0.82rem; text-align: center; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: block; }
  .get-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .steps { flex-direction: column; align-items: stretch; }
  .step { max-width: 100%; }
  .proof-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; align-items: center; }
  .proof-inner { flex-direction: column; }
  .mock-cards { grid-template-columns: 1fr; }
  .mock-card:nth-child(2), .mock-card:nth-child(3) { display: none; }
}

/* ---- SCROLL ANIMATION ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
