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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f5f7fa;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


 .logo img {
    width: 150px;
    height: auto;
    display: block;
}


.logo-mark {
  color: #2563eb;
}

.logo-accent {
  color: #2563eb;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.nav-menu a:hover {
  color: #2563eb;
}

.nav-cta {
  background: #2563eb;
  color: white !important;
  padding: 9px 15px;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
}

.hero {
  background: #eaf2ff;
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: #2563eb;
  font-weight: bold;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-lede {
  font-size: 18px;
  margin-bottom: 25px;
  color: #555;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-ghost {
  border: 1px solid #2563eb;
  color: #2563eb;
  background: white;
}

.browser-window {
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.browser-bar {
  background: #eee;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #aaa;
}

.browser-url {
  margin-left: 10px;
  color: #666;
  font-size: 13px;
}

.browser-body {
  padding: 30px;
}

.code-block {
  background: #222;
  color: #eee;
  padding: 20px;
  border-radius: 6px;
  overflow-x: auto;
}

.render-preview {
  margin-top: 25px;
  padding: 25px;
  background: #f5f5f5;
  border-radius: 6px;
}

.render-h1 {
  display: block;
  font-size: 28px;
  font-weight: bold;
}

.render-p {
  color: #666;
}

section {
  padding: 70px 0;
}

section h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

.overview {
  background: white;
}

.overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 45px;
}

.overview-text p {
  margin-bottom: 18px;
}

.stat-list {
  list-style: none;
}

.stat-list li {
  background: #eaf2ff;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 8px;
}

.stat-num {
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: #2563eb;
}

.stat-label {
  color: #555;
}

.modules {
  background: #f5f7fa;
}

.section-lede {
  margin-bottom: 25px;
  color: #555;
}

.table-wrap {
  overflow-x: auto;
}

.modules-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.modules-table th,
.modules-table td {
  border: 1px solid #ddd;
  padding: 13px;
  text-align: left;
}

.modules-table th {
  background: #2563eb;
  color: white;
}

.modules-table tr:nth-child(even) {
  background: #f8fafc;
}

.table-note {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.why-us {
  background: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
}

.feature-icon {
  display: inline-block;
  color: #2563eb;
  font-weight: bold;
  margin-bottom: 12px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.cta-banner {
  background: #2563eb;
  color: white;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 10px;
}

.cta-banner p {
  margin-bottom: 20px;
}

.cta-banner .btn-primary {
  background: white;
  color: #2563eb;
}

.apply {
  background: #f5f7fa;
}

.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #bbb;
  border-radius: 5px;
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.site-footer {
  background: #222;
  color: white;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: bold;
}

.social-links {
  display: flex;
  list-style: none;
  gap: 15px;
}

.social-links img {
  width: 24px;
  height: 24px;
}

.footer-copy {
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 800px) {
  .hero-inner,
  .overview-grid,
  .apply-inner {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 38px;
  }

  .nav-menu {
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: block;
    border: 0;
    background: none;
    cursor: pointer;
    font-size: 25px;
  }

  .nav-toggle::before {
    content: "☰";
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    flex-direction: column;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  }

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

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

  .hero {
    padding: 50px 0;
  }

  section {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
