:root {
  --bg: #07111f;
  --bg-soft: #0b1728;
  --card: #0e1b2e;
  --card-2: #111f35;
  --text: #ffffff;
  --muted: #b8c2d6;
  --primary: #18f08b;
  --primary-dark: #10bf6d;
  --blue: #2f80ed;
  --yellow: #ffd166;
  --danger: #ff6b6b;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 128, 237, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(24, 240, 139, 0.12), transparent 28%),
    var(--bg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

.container {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-sm {
  padding: 34px 0;
}

.top-offer {
  min-height: 40px;
  background: linear-gradient(90deg, var(--primary), var(--blue));
  color: #02101c;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 16px;
  text-align: center;
}

.top-offer strong {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: #04111f;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--primary);
  color: #02101c !important;
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(24, 240, 139, 0.22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
  border-radius: 99px;
}

.hero {
  padding-top: 80px;
  overflow: hidden;
}

.hero-grid,
.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  background: rgba(24, 240, 139, 0.1);
  border: 1px solid rgba(24, 240, 139, 0.24);
  padding: 10px 14px;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(24, 240, 139, 0.7);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(24, 240, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(24, 240, 139, 0); }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  margin: 24px 0 22px;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin: 14px 0 18px;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle,
.section-head p,
.two-col p,
.price-left p,
.contact-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 34px 0 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #02101c;
  box-shadow: 0 18px 42px rgba(24, 240, 139, 0.25);
}

.btn-primary:hover {
  background: #32ffa0;
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-full {
  width: 100%;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.laptop {
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--card);
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.laptop:before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(24, 240, 139, 0.32), transparent 70%);
  filter: blur(4px);
}

.laptop-top {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.laptop-top span {
  width: 12px;
  height: 12px;
  background: var(--border);
  border-radius: 99px;
}

.code-card,
.chart-card,
.folder-card {
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.code-card p {
  margin: 0 0 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #dfffee;
}

.code-card .muted {
  color: #8fa1ba;
}

.code-card .accent {
  color: var(--primary);
}

.chart-card {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 14px;
}

.bar {
  width: 18%;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, var(--primary), var(--blue));
}

.h1 { height: 46%; }
.h2 { height: 72%; }
.h3 { height: 56%; }
.h4 { height: 86%; }
.h5 { height: 64%; }

.folder-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.folder-card span,
.feature-card p,
.project-card p,
.testimonial-card span,
.footer p,
.disclaimer p,
.lead-form small,
.price-box small,
.deadline-text {
  color: var(--muted);
}

.floating-card {
  position: absolute;
  z-index: 2;
  background: rgba(14, 27, 46, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.card-one {
  top: 55px;
  right: -6px;
}

.card-two {
  bottom: 62px;
  left: -18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.stats-grid div {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 24px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.check-list {
  margin: 24px 0;
  display: grid;
  gap: 10px;
}

.check-list p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}

.roadmap-preview {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.road-step {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  font-weight: 900;
}

.road-step.active {
  background: rgba(24, 240, 139, 0.12);
  border-color: rgba(24, 240, 139, 0.32);
  color: var(--primary);
}

.road-line {
  height: 28px;
  width: 2px;
  margin-left: 24px;
  background: linear-gradient(var(--blue), var(--primary));
}

.section-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 46px;
}

.feature-grid,
.projects-grid,
.preview-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.project-card,
.testimonial-card,
.preview-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover,
.project-card:hover,
.preview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 240, 139, 0.32);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 26px;
  border-radius: 16px;
  background: rgba(24, 240, 139, 0.1);
  margin-bottom: 18px;
}

.notice-box {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 209, 102, 0.35);
  background: rgba(255, 209, 102, 0.08);
  border-radius: 18px;
  color: #ffecbd;
}

.dark-card-section,
.pricing-section,
.testimonials {
  background:
    linear-gradient(180deg, rgba(47, 128, 237, 0.08), transparent),
    rgba(255,255,255,0.02);
}

.projects-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-card span {
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.center {
  text-align: center;
  margin-top: 34px;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.timeline-item b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: #02101c;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.career-visual {
  min-height: 360px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow);
}

.resume-card {
  width: 72%;
  min-height: 280px;
  background: #f7fbff;
  color: #02101c;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.28);
}

.resume-head {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--primary));
  margin-bottom: 22px;
}

.resume-line {
  height: 13px;
  border-radius: 99px;
  background: #d7e2f0;
  margin-bottom: 14px;
}

.w80 { width: 80%; }
.w60 { width: 60%; }
.w90 { width: 90%; }
.w50 { width: 50%; }

.linkedin-card {
  position: absolute;
  right: 24px;
  bottom: 34px;
  width: 210px;
  background: rgba(47, 128, 237, 0.95);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
}

.linkedin-card span {
  color: rgba(255,255,255,0.75);
}

.pricing-card {
  background:
    radial-gradient(circle at top right, rgba(24, 240, 139, 0.15), transparent 28%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 32px;
  box-shadow: var(--shadow);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 12px;
}

.countdown div {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
}

.countdown strong {
  display: block;
  font-size: 30px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.countdown span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}

.price-box {
  background: rgba(7, 17, 31, 0.78);
  border: 1px solid rgba(24, 240, 139, 0.28);
  border-radius: 28px;
  padding: 28px;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 800;
}

.new-price {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  margin: 12px 0 8px;
  letter-spacing: -0.05em;
}

.price-box ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
}

.price-box li {
  color: var(--text);
  font-weight: 700;
}

.price-box li:before {
  content: "✓";
  color: var(--primary);
  margin-right: 9px;
}

.preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.preview-card {
  min-height: 130px;
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(47, 128, 237, 0.18), rgba(24, 240, 139, 0.08)),
    var(--card);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card p {
  color: #ecf5ff;
  font-size: 16px;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
}

.testimonial-card span {
  font-size: 14px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0 20px;
}

summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
}

details p {
  color: var(--muted);
  margin-bottom: 20px;
}

.lead-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.lead-form label {
  color: var(--text);
  font-weight: 800;
  display: grid;
  gap: 8px;
}

input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
}

input:focus {
  outline: 2px solid rgba(24, 240, 139, 0.45);
  border-color: transparent;
}

.form-message {
  margin: 0;
  color: var(--primary);
  font-weight: 800;
}

.final-cta {
  padding: 80px 0;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(24, 240, 139, 0.16), transparent 42%),
    #06101d;
}

.final-cta h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.footer {
  padding: 56px 0 110px;
  background: #050b14;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer .logo {
  color: var(--text);
  margin-bottom: 12px;
}

.footer h4 {
  margin-top: 0;
}

.disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  font-size: 13px;
}

.mobile-sticky {
  display: none;
}


.image-frame {
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--card);
  padding: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.image-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}

.section-image-wide {
  max-width: 880px;
  margin: 34px auto 0;
}

.image-preview {
  padding: 12px;
  min-height: auto;
  display: block;
  text-align: left;
}

.image-preview img {
  width: 100%;
  border-radius: 18px;
  display: block;
  margin-bottom: 14px;
}

.image-preview span,
.upload-placeholder span {
  display: block;
  color: var(--text);
  font-weight: 900;
  padding: 0 6px 8px;
}

.upload-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.08), rgba(47, 128, 237, 0.08)),
    var(--card);
  text-align: center;
}

.support-proof {
  background:
    radial-gradient(circle at top left, rgba(24, 240, 139, 0.08), transparent 32%),
    rgba(255,255,255,0.015);
}



.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.gallery-showcase {
  background:
    linear-gradient(180deg, rgba(47, 128, 237, 0.06), transparent),
    rgba(255,255,255,0.02);
}

.hero-visual.image-frame img {
  max-height: 620px;
  object-fit: cover;
  width: 100%;
}

.image-frame img {
  width: 100%;
  display: block;
}

.preview-grid {
  align-items: stretch;
}

.preview-card.image-preview span {
  min-height: 28px;
}

.notice-box strong {
  color: #fff5d3;
}


@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 114px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .stats-grid,
  .feature-grid,
  .projects-grid,
  .preview-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card {
    padding: 22px;
  }

  .image-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .top-offer {
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
  }

  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .stats-grid,
  .feature-grid,
  .projects-grid,
  .preview-grid,
  .testimonial-grid,
  .footer-grid,
  .countdown {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .laptop {
    min-height: 340px;
    padding: 18px;
  }

  .chart-card {
    height: 110px;
  }

  .floating-card {
    display: none;
  }

  .career-visual {
    min-height: 320px;
  }

  .resume-card {
    width: 88%;
  }

  .linkedin-card {
    width: 180px;
  }

  .new-price {
    font-size: 54px;
  }

  .mobile-sticky {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 14px;
    right: 14px;
    bottom: 14px;
    height: 54px;
    z-index: 80;
    background: var(--primary);
    color: #02101c;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(24, 240, 139, 0.32);
  }
}
