:root {
  --bg: #000000;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --muted: #c6ced9;
  --accent: #3b82f6;
  --accent2: #0f4db2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}


html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}


img, svg, video {
  max-width: 100%;
  height: auto;
}

p, h1, h2, h3, h4 {
  overflow-wrap: break-word;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* CONTAINER */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 100%;
}

/* HERO */

.hero {
  text-align: center;
  margin-bottom: 80px;
  margin-top: 80px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 400;
  background: linear-gradient(90deg, #fff, #f1f1f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
}

p:not(:last-child) {
  margin-bottom: 16px;
}

/* SECTIONS */

.section {
  margin-bottom: 60px;
}

.section h2 {
  font-family: inherit;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
}

/* GRID */

.grid {
  display: grid;
  gap: 20px;
}

/* CARDS */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.card:hover {
  border-color: var(--accent);
}

/* LIST */

ul {
  margin-top: 10px;
  padding-left: 18px;
}

li {
  margin-bottom: 6px;
  color: var(--muted);
}

/* FOOTER */

footer {
  text-align: left;
  color: var(--muted);
  font-size: 12px;
  margin-top: 40px;
}

/* TABLET */

@media (min-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .section h2 {
    font-size: 36px;
  }

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

/* DESKTOP */

@media (min-width: 1024px) {
  .container {
    padding: 20px 20px;
  }

  .hero {
    margin-top: 60px;
    margin-bottom: 60px;
  }

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

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

.how-wrapper {
  display: grid;
  gap: 30px;
}

/* LEFT */

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: 0.3s;
}

.step:hover {
  border-color: rgba(255,255,255,0.2);
}

.step.active {
  background: rgba(59,130,246,0.1);
  border-color: var(--accent);
  color: #fff;
}

/* RIGHT */

.how-content {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  background: var(--card);
}

.content-item {
  display: none;
}

.content-item.active {
  display: block;
}

/* TABLET+ */

@media (min-width: 768px) {
  .how-wrapper {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

/* SERVICE */

.service-card {
  padding: 30px;
}

.service-header {
  margin-bottom: 30px;
}

.service-header h3, .card h3 {
   font-family: inherit;
  font-weight: 400;
   font-size: 24px;
  margin-bottom: 10px;
}

.service-sub {
  color: var(--muted);
  font-size:18px;
  
}

/* GRID */

.service-grid {
  display: grid;
  gap: 20px;
}

/* ITEM */

.service-item h4 {
  font-size: 24px;
  font-weight:400;
  margin-bottom: 16px;
}

.service-item p, .section p, .contact-item {
  color: var(--muted);
  font-size: 18px;
}

/* TABLET */

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* DESKTOP */

@media (min-width: 1024px) {
  .service-card {
    padding: 40px;
  }

  .service-header h3 {
    font-size: 32px;
  }

  .service-item p {
    font-size: 18px;
  }
}

/* CONTACT */

.contact-card {
  padding: 30px;
}

.contact-grid {
  display: grid;
  gap: 20px;
}

.contact-item h4 {
  font-size: 20px;
  font-weight:400;
  margin-bottom: 6px;
}

.contact-item a {
  color: var(--text);
}


/* TABLET */

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* DESKTOP */

@media (min-width: 1024px) {
  .contact-card {
    padding: 40px;
  }
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1100px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
}

/* MENU */

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.menu a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE */

@media (max-width: 767px) {

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    background: var(--bg);
    padding: 20px;
    border: 1px solid var(--accent);
    border-radius: 10px;
    width: 90%;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
  margin-bottom: 16px;
  margin-top: 4px;}

  .about-photo img {
  width: 240px;
  height: 240px;
}

/* CTA */

.nav-cta {
  display: none;
  padding: 8px 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/* TABLET */

@media (min-width: 768px) {
  .menu {
    display: flex;
  }

  .nav-cta {
    display: inline-block;
  }

  .burger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}



/* HERO GRID */

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

/* TEXT */

.hero-text h1 {
  font-size: 48px;
  line-height: 60px;
}

.hero-text p {
  margin-top: 16px;
  color: var(--muted);
  max-width: 500px;
}

p.small {
  font-size: 10px;
  color: var(--muted);
}

@media (max-width: 480px) {
  .hero-text h1 {
  font-size: 38px;
  line-height: 50px;
  }

}

/* VISUAL */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

/* CHART CARD */

.chart-card {
  width: 100%;
  max-width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
}

/* HEADER */

.chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.chart-header .green {
  color: #22c55e;
  font-weight: 400;
}

/* SVG */

.chart {
  width: 100%;
  height: auto;
}

/* GRID */

.chart line {
  stroke: rgba(255,255,255,0.05);
  stroke-width: 1;
}

/* LINE */

.line {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(59,130,246,0.5));
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* DOT */

.dot {
  fill: #22c55e;
  filter: drop-shadow(0 0 6px rgba(34,197,94,0.6));
}

/* FOOTER */

.chart-footer {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.about-grid {
  display: grid;
  gap: 30px;
  align-items: start;
  margin-top: 20px;
}

/* PHOTO CARD */

.about-photo {
  display: flex;
  justify-content: center;
}

.about-photo img {
  width: 240px;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 4px;
  filter: contrast(1.05) saturate(0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* TEXT */

.about-text p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* TABLET+ */

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 260px 1fr;
  }

  .about-photo {
    justify-content: flex-start;
  }
}


.logo svg {
  height: 36px;
  width: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}

.price p{
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.pricing-card ul {
  padding-left: 18px;
  margin-bottom: 14px;
  color: var(--muted);
}

.pricing-card li {
  margin-bottom: 6px;
  line-height: 1.4;
}


@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

p.note{
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

/* FEATURED TIER */

.featured {
  border: 1px solid rgba(59,130,246,0.5);
  box-shadow: 0 0 30px rgba(59,130,246,0.1);
}

/* RESPONSIVE */



.partner-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0;
}

.partner-card {
  min-width: 200px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  color: #C9D1D9;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  text-align: center;
  flex-shrink: 0;
}

.section h3 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 400;
}


/* MEDIA */

@media (max-width: 768px) {
  .container {
    padding: 24px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 16px 16px;
  }
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(59,130,246,0.1);
}

.icon-wrap svg {
  width: 18px;
  height: 18px;
  color: #3B82F6;
}

.chart {
  width: 100%;
  height: auto;
}

.chart line {
  stroke: rgba(255,255,255,0.08);
  stroke-width: 1;
}

.line {
  fill: none;
  stroke: #3B82F6;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 6px rgba(59,130,246,0.4));
}

.dot {
  fill: #22c55e;
}
