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

:root {
  --navy: #111827;
  --navy2: #1f2937;
  --blue: #2563eb;
  --blue-light: #1d4ed8;
  --accent: #2563eb;
  --accent2: #1d4ed8;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #eff6ff;
  --gray-mid: #e5e7eb;
  --text: #1f2937;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 6%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}
.logo {
  font-size: 1.4rem; color: #111827;
  letter-spacing: -0.5px;
  display: flex; align-items: baseline;
}
.logo .logo-net { font-weight: 300; color: rgba(17,24,39,0.35); }
.logo .logo-inity { font-weight: 900; color: #111827; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: #6b7280; text-decoration: none;
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: #111827; }
.nav-cta {
  background: var(--blue); color: white !important;
  padding: 0.5rem 1.2rem; border-radius: 6px; font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #111827; border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0;
  background: white; padding: 1.5rem 6%; flex-direction: column; gap: 1rem; z-index: 99;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-menu a { color: #374151; text-decoration: none; font-size: 1rem; padding: 0.5rem 0; border-bottom: 1px solid #f3f4f6; }
.mobile-menu.open { display: flex; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; align-items: center;
  padding: 120px 6% 80px;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-content { position: relative; max-width: 720px; }
.hero-badge::before { content: none; }
h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 800;
  color: #111827; line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em { color: var(--blue); font-style: normal; }
.hero-sub {
  font-size: 1.15rem; color: #6b7280;
  line-height: 1.7; max-width: 520px; margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  background: var(--blue); color: white;
  padding: 0.9rem 2rem; border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.3); }
.btn-secondary {
  background: transparent; color: #374151;
  padding: 0.9rem 2rem; border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
  border: 1px solid #d1d5db; display: inline-block;
}
.btn-secondary:hover { border-color: #374151; background: #f9fafb; }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; color: #111827;
}
.stat-num span { color: var(--blue); }
.stat-label { font-size: 0.8rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }

/* ─── SECTION SHARED ─── */
section { padding: 100px 6%; }
.section-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--blue); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.5px; line-height: 1.2;
  color: var(--navy); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: #6b7280; line-height: 1.7;
  max-width: 560px; margin-bottom: 3rem;
}

/* ─── HOW IT WORKS ─── */
#how { background: var(--gray-light); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step {
  background: white; border-radius: 16px; padding: 2rem;
  border: 1px solid var(--gray-mid); position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3.5rem; font-weight: 800;
  color: var(--gray-mid); line-height: 1; margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy); }
.step p { font-size: 0.9rem; color: #6b7280; line-height: 1.6; }

/* ─── PRICING ─── */
#pricing { background: white; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  border: 1.5px solid var(--gray-mid); border-radius: 16px; padding: 2.5rem;
  position: relative; transition: all 0.25s;
  display: flex; flex-direction: column;
}
.price-card:hover { border-color: var(--blue-light); box-shadow: 0 12px 40px rgba(37,99,235,0.1); transform: translateY(-4px); }
.price-card.featured {
  background: var(--blue); border-color: var(--blue);
  box-shadow: 0 16px 48px rgba(37,99,235,0.25);
}
.price-card.custom-card {
  background: #0f172a; border-color: #1e293b;
}
.price-card.custom-card:hover {
  border-color: #60a5fa; box-shadow: 0 12px 40px rgba(37,99,235,0.2);
}
.featured-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #dbeafe; color: var(--blue);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 1rem; border-radius: 100px;
  white-space: nowrap;
}
.price-tier { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 0.5rem; }
.price-card.featured .price-tier { color: rgba(255,255,255,0.7); }
.price-card.custom-card .price-tier { color: #60a5fa; }
.price-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.price-card.featured .price-name { color: white; }
.price-card.custom-card .price-name { color: white; }
.price-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--navy); margin-bottom: 0.3rem; line-height: 1; }
.price-card.featured .price-amount { color: white; }
.price-card.custom-card .price-amount { color: white; font-size: 2rem; }
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-note { font-size: 0.8rem; color: #9ca3af; margin-bottom: 1.5rem; }
.price-card.featured .price-note { color: rgba(255,255,255,0.6); }
.price-card.custom-card .price-note { color: rgba(255,255,255,0.45); }
.price-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.price-features li { font-size: 0.9rem; color: #4b5563; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.4; }
.price-card.featured .price-features li { color: rgba(255,255,255,0.85); }
.price-card.custom-card .price-features li { color: rgba(255,255,255,0.75); }
.price-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-card.featured .price-features li::before { color: white; }
.price-card.custom-card .price-features li::before { color: #60a5fa; }
.btn-outline {
  display: block; text-align: center; width: 100%;
  padding: 0.85rem; border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s; cursor: pointer; border: 1.5px solid var(--blue);
  background: transparent; color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: white; }
.price-card.featured .btn-outline { background: white; color: var(--blue); border-color: white; }
.price-card.featured .btn-outline:hover { background: #dbeafe; }
.price-card.custom-card .btn-outline { border-color: #60a5fa; color: #60a5fa; }
.price-card.custom-card .btn-outline:hover { background: #60a5fa; color: #0f172a; }

/* ─── SAMPLE SITES ─── */
#samples { background: #0f172a; }
#samples .section-title { color: white; }
#samples .section-sub { color: rgba(255,255,255,0.55); }
#samples .section-label { color: #60a5fa; }
.samples-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.sample-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
  background: #1e3a8a;
}
.sample-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.sample-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  background: #0f172a;
}
.sample-browser {
  height: 200px; position: relative; overflow: hidden;
  background: #0f172a;
}
.browser-bar {
  background: #0c1445; padding: 0.5rem 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-preview {
  width: 100%; height: calc(100% - 36px);
  border: none; pointer-events: none;
  transform: scale(0.6); transform-origin: top left;
  width: 166.67%; height: 166.67%;
}
.sample-body { padding: 1.25rem 1.5rem; }
.sample-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #60a5fa; margin-bottom: 0.4rem;
}
.sample-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 0.3rem; }
.sample-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ─── WHY US ─── */
#why { background: var(--gray-light); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.why-card {
  background: white; border-radius: 14px; padding: 2rem;
  border: 1px solid var(--gray-mid); transition: all 0.25s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.07); border-color: var(--blue-light); }
.why-icon {
  width: 48px; height: 48px; background: #dbeafe; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.why-card p { font-size: 0.88rem; color: #6b7280; line-height: 1.6; }

/* ─── INTAKE FORM ─── */
#intake { background: #eff6ff; }
.form-wrap {
  max-width: 760px; margin: 0 auto;
  background: #0f172a; border-radius: 24px;
  padding: 3.5rem; border: 1px solid rgba(96,165,250,0.15);
}
.form-wrap .section-label { color: #60a5fa; }
.form-wrap .section-title { color: white; }
.form-wrap .section-sub { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; text-transform: uppercase; }
input, select, textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(96,165,250,0.2);
  border-radius: 8px; padding: 0.85rem 1rem;
  color: white; font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none; width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
input:focus, select:focus, textarea:focus {
  border-color: #60a5fa; background: rgba(255,255,255,0.1);
}
select option { background: #0f172a; color: white; }
textarea { resize: vertical; min-height: 120px; }
.checkbox-group { display: flex; flex-direction: column; gap: 0.6rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.7rem; cursor: pointer; }
.checkbox-item input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; accent-color: #60a5fa;
  padding: 0;
}
.checkbox-item span { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.form-submit {
  margin-top: 2rem; text-align: center;
}
.btn-submit {
  background: var(--blue); color: white;
  padding: 1rem 3rem; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem;
  border: none; cursor: pointer; transition: all 0.25s;
  display: inline-block;
}
.btn-submit:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,99,235,0.4); }
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; }
.success-msg {
  display: none; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px; padding: 1.5rem; text-align: center;
  color: #34d399; font-size: 1rem; font-weight: 500; margin-top: 1.5rem;
}
.success-msg.show { display: block; }

/* ─── FOOTER ─── */
footer {
  background: #0f172a; border-top: 1px solid rgba(96,165,250,0.1);
  padding: 3rem 6%; text-align: center;
}
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; color: white; margin-bottom: 0.5rem; display: flex; align-items: baseline; justify-content: center; }
.footer-logo .logo-net { font-weight: 300; color: rgba(255,255,255,0.4); }
.footer-logo .logo-inity { font-weight: 900; color: white; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.35); margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ─── STATS / PROOF SECTION ─── */
#proof { background: #0f172a; position: relative; overflow: hidden; }
#proof::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(96,165,250,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(96,165,250,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
#proof .section-label { color: #60a5fa; }
#proof .section-title { color: var(--white); }
#proof .section-sub { color: rgba(255,255,255,0.55); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.proof-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(96,165,250,0.15);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96,165,250,0.4);
  background: rgba(255,255,255,0.08);
}
.proof-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}
.proof-source {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.proof-callout {
  background: linear-gradient(135deg, rgba(37,99,235,0.3), rgba(29,78,216,0.15));
  border: 1px solid rgba(96,165,250,0.25);
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-callout-icon { font-size: 3rem; flex-shrink: 0; }
.proof-callout-text h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.45rem;
}
.proof-callout-text h3 em { color: #60a5fa; font-style: normal; }
.proof-callout-text p { font-size: 0.93rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { /* visible by default — JS enhances with animation */ }
.reveal.reveal-ready {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.reveal-ready.visible { opacity: 1; transform: translateY(0); }

/* ─── FAQ ─── */
#faq { background: var(--gray-light); }
.faq-grid { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: white; border-radius: 14px;
  border: 1px solid var(--gray-mid); overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.4rem 1.75rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--navy); line-height: 1.4;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: #dbeafe; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--blue); transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: #93c5fd; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 1.75rem;
}
.faq-answer p { font-size: 0.93rem; color: #4b5563; line-height: 1.75; padding-bottom: 1.4rem; }
.faq-category {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--blue); margin-bottom: 0.75rem; margin-top: 2rem;
}
.faq-category:first-child { margin-top: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.custom-card {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem 1.5rem; }
  .hero-stats { gap: 2rem; }
  section { padding: 70px 5%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.custom-card { grid-column: auto; max-width: 100%; }
}
