* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f4f7fb;
  color: #000; /* BLACK TEXT */
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
header {
  width: 100%;
  padding: 22px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-bottom: 1px solid #ddd;
}

header img {
  width: 85px;
  animation: float 5s ease-in-out infinite;
}

nav a {
  margin-left: 25px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #006be6;
}

/* HERO */
.hero {
  min-height: 70vh;
  padding: 90px 7%;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,68,150,0.15), rgba(0,68,150,0.15)),
    url("assets/logo.png");
  background-size: 420px;
  background-repeat: no-repeat;
  background-position: right 10% center;
}

.hero div {
  max-width: 640px;
  animation: fadeUp 1s ease forwards;
}

.small {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  color: #006be6;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(46px, 8vw, 82px);
  line-height: 1;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 18px;
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.intro {
  font-size: 21px;
  max-width: 580px;
}

/* SECTIONS */
.section {
  padding: 85px 7%;
  animation: fadeUp 1s ease forwards;
}

.two {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
}

.section p {
  max-width: 720px;
  font-size: 18px;
}

.note {
  background: white;
  border-left: 6px solid #006be6;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.note:hover {
  transform: translateY(-5px);
}

/* GRID */
.grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid div {
  background: white;
  padding: 26px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.grid div:hover {
  border-color: #006be6;
  transform: translateY(-6px);
}

/* COMING SOON */
.soon {
  background: #eaf3ff;
}

.soon .small {
  color: #006be6;
}

/* FOOTER */
footer {
  padding: 30px 7%;
  background: white;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 18px;
}

footer img {
  width: 55px;
  animation: float 6s ease-in-out infinite;
}

footer p {
  color: #333;
}

/* ANIMATIONS */

/* floating loop */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* fade up */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width: 800px) {
  nav {
    display: none;
  }

  .hero {
    background-size: 260px;
    background-position: center bottom 30px;
  }

  .two,
  .grid {
    grid-template-columns: 1fr;
  }
}
.funded {
  padding: 45px 7%;
  text-align: center;
  background: #f4f7fb;
}

.funded p {
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.funded img {
  width: 260px;
  max-width: 80%;
}

.pricing {
  background: #f4f7fb;
  text-align: center;
}

/* CENTER WRAP */
.pricing-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* PLAN BOX */
.plan {
  width: 320px;
  background: white;
  padding: 35px;
  border: 1px solid #ddd;
  text-align: left;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.plan:hover {
  transform: translateY(-8px);
  border-color: #006be6;
}

/* FEATURED */
.highlight {
  border: 2px solid #006be6;
}

/* TEXT */
.plan h3 {
  margin-bottom: 10px;
}

.pricing {
  background: #f4f7fb;
  text-align: center;
}

.pricing-intro {
  max-width: 700px;
  margin: 0 auto 35px;
}

.price-table {
  max-width: 1050px;
  margin: 0 auto;
  background: white;
  border: 1px solid #ddd;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: #06152b;
  color: white;
  padding: 18px;
  text-align: left;
}

td {
  padding: 22px 18px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

td strong {
  display: block;
  font-size: 20px;
}

td span {
  display: block;
  color: #555;
  font-size: 14px;
}

.old {
  text-decoration: line-through;
  color: #777;
}

.new {
  color: #006be6;
  font-size: 28px;
  margin: 2px 0;
}

em {
  display: block;
  font-style: normal;
  font-weight: bold;
  color: #006be6;
  margin-top: 6px;
}

tr:last-child td {
  border-bottom: none;
}

@media(max-width: 700px) {
  th, td {
    min-width: 180px;
  }
}
td span {
  display: block;
  color: #006be6;
  font-weight: bold;
  font-size: 14px;
}
.pricing-note {
  max-width: 900px;
  margin: 25px auto 0;
  padding: 18px;
  background: #fff3f3;
  border: 1px solid #e0b4b4;
  color: #8a1f1f;
  font-size: 14px;
  text-align: left;
}