* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  color: #334155;
  overflow-x: hidden;
}

.container {
  width: min(1500px, 95%);
  margin: auto;
}

header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 999;
}

nav {
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #175cff, #0f172a);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font: 700 20px "Poppins", sans-serif;
}

.logo h2 {
  font: 22px "Poppins", sans-serif;
  color: #0f172a;
}

.logo small {
  display: block;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  color: #64748b;
}

.menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.menu a {
  position: relative;
  display: inline-block;
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.menu a:hover {
  color: #175cff;
  transform: translateY(-2px);
}

.btn,
.btn2,
.btn-whatsapp {
  text-decoration: none;
  transition: 0.3s ease;
}

.btn {
  padding: 16px 30px;
  background: #175cff;
  border-radius: 12px;
  color: white;
  font-weight: 800;
}

.btn i,
.btn-whatsapp i {
  margin-right: 8px;
}

.btn2 {
  padding: 16px 30px;
  border: 2px solid #25d366;
  border-radius: 16px;
  background: #25d366;
  color: white;
  font-weight: 600;
}

.btn:hover,
.btn2:hover,
.btn-whatsapp:hover {
  background: #ffc107;
  border-color: #ffc107;
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(23, 92, 255, 0.25);
}

.hero {
  padding: 95px 0 40px;
  background:
    radial-gradient(circle at top right, #dbeafe 0%, transparent 40%),
    linear-gradient(#fff, #f8fafc);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tag,
.section-tag,
.section-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.tag {
  padding: 10px 20px;
  margin-bottom: 25px;
  background: #e8f0ff;
  color: #175cff;
  font-size: 16px;
}

.hero h1 {
  margin-bottom: 22px;
  color: #0f172a;
  font: 52px/1.04 "Poppins", sans-serif;
}

.hero p {
  margin-bottom: 28px;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
}

.actions,
.cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.illustration {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, #eff6ff, #dbeafe);
}

.main-card {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: white;
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.08);
  color: #175cff;
  font-size: 90px;
}

.float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  animation: updown 5s ease-in-out infinite;
}

.float i {
  color: #175cff;
  font-size: 22px;
}

.f1 { top: 30px; left: 35px; }
.f2 { top: 55px; right: 10px; animation-delay: 1s; }
.f3 { bottom: 90px; left: 0; animation-delay: 2s; }
.f4 { right: 40px; bottom: 25px; animation-delay: 3s; }

@keyframes updown {
  50% { transform: translateY(-10px); }
}

.resources,
.process,
.contact {
  background: white;
}

.resources { padding: 20px 0 30px; }
.process { padding: 30px 0 50px; }
.contact { padding: 35px 0 80px; }

.section-title {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-title span,
.section-tag {
  padding: 8px 22px;
  background: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.35);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.18);
  color: #0f172a;
  font: 800 13px/1 "Poppins", sans-serif;
  letter-spacing: 2.5px;
}

.section-title h2 {
  margin: 12px 0 16px;
  color: #0f172a;
  font: 36px "Poppins", sans-serif;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
  font-size: 19px;
  line-height: 1.8;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-card,
.industry-item,
.why-box,
.contact-card,
.about-box {
  border: 1px solid #e2e8f0;
  background: white;
  transition: 0.35s ease;
}

.resource-card {
  padding: 24px;
  border-radius: 24px;
}

.resource-card:hover,
.industry-item:hover,
.why-box:hover,
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(23, 92, 255, 0.12);
}

.resource-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.resource-card .icon,
.why-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: #eff6ff;
}

.resource-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.resource-card .icon i,
.why-icon i {
  color: #175cff;
}

.resource-card h3 {
  color: #0f172a;
  font: 24px/1.3 "Poppins", sans-serif;
}

.resource-card p,
.why-box p,
.about-left p,
.about-box p {
  color: #64748b;
  line-height: 1.8;
}

.industries,
.why,
.about {
  background: #f8fafc;
}

.industries { padding: 30px 0 60px; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.industry-item {
  padding: 34px 20px;
  border-radius: 22px;
  text-align: center;
}

.industry-item i {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #eff6ff;
  color: #175cff;
  font-size: 28px;
}

.industry-item span {
  display: block;
  color: #0f172a;
  font: 600 18px "Poppins", sans-serif;
}

.process-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.process-line {
  position: absolute;
  top: 40px;
  right: 12%;
  left: 12%;
  height: 3px;
  background: #dce8ff;
}

.step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto 18px;
  border-radius: 50%;
  background: #175cff;
  color: white;
  font: 700 24px "Poppins", sans-serif;
}

.step h3,
.why-box h3,
.about-box h3 {
  color: #0f172a;
  font-family: "Poppins", sans-serif;
}

.step h3 {
  margin: 5px 0 10px;
  font-size: 22px;
}

.step p {
  padding: 0 10px;
  color: #64748b;
  line-height: 1.8;
}

.why { padding: 30px 0 40px; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: stretch;
}

.why-left h2 {
  margin: 28px 0 25px;
  color: #0f172a;
  font: 40px/1.15 "Poppins", sans-serif;
}

.why-left p {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.75;
}

.why-right {
  display: grid;
  gap: 18px;
}

.why-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 20px;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
}

.why-box h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.why-box p {
  font-size: 16px;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 260px);
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
}

.contact-card {
  min-height: 150px;
  padding: 22px;
  border-radius: 20px;
  text-align: center;
  background: #f8fafc;
}

.contact-icon {
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto 25px;
  border-radius: 50%;
  background: #eff6ff;
}

.contact-icon i {
  color: #175cff;
  font-size: 34px;
}

.contact-icon.whatsapp i {
  color: #25d366;
}

.contact-card h3 {
  margin-bottom: 15px;
  color: #0f172a;
  font: 18px "Poppins", sans-serif;
}

.contact-card a {
  display: flex;
  justify-content: center;
  color: #175cff;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.location {
  margin-top: 35px;
  color: #334155;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.location i {
  margin-right: 10px;
  color: #175cff;
}

.location small {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 15px;
}

.about { padding: 35px 0 70px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 35px;
  align-items: start;
}

.about-left { margin-top: 20px; }

.about-left h2 {
  margin: 18px 0 24px;
  color: #0f172a;
  font: 36px/1.2 "Poppins", sans-serif;
}

.about-left p {
  max-width: 580px;
  margin-bottom: 30px;
  font-size: 18px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  font-weight: 600;
}

.about-points i {
  color: #16a34a;
  font-size: 20px;
}

.about-box {
  margin-top: 70px;
  padding: 20px 30px;
  border-radius: 30px;
  text-align: center;
}

.about-number {
  margin-bottom: 15px;
  color: #175cff;
  font: 700 56px "Poppins", sans-serif;
}

.about-box h3 {
  margin-bottom: 15px;
}

.cta {
  position: relative;
  overflow: hidden;
  margin-top: -30px;
  padding: 25px 10px 50px;
  background: linear-gradient(90deg, #175cff, #1b57f2 50%, #163e9f);
  color: white;
  text-align: center;
}

.cta h2 {
  margin-bottom: 12px;
  font: 36px "Poppins", sans-serif;
}

.cta p {
  max-width: 720px;
  margin: auto auto 24px;
  font-size: 19px;
  line-height: 1.8;
}

.cta-buttons {
  justify-content: center;
}

.btn-whatsapp {
  padding: 16px 34px;
  border-radius: 12px;
  background: #25d366;
  color: white;
  font-weight: 600;
}

footer {
  padding: 35px 0 8px;
  background: #0f172a;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo h3 {
  font: 24px "Poppins", sans-serif;
}

.footer-logo p,
.footer-text,
footer li {
  color: #cbd5e1;
}

.footer-text {
  max-width: 420px;
  line-height: 1.9;
}

footer h4 {
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer li {
  margin-bottom: 8px;
  line-height: 1.5;
}

footer li i {
  width: 22px;
  color: #175cff;
}

footer a {
  color: #5ea8ff;
  text-decoration: none;
  font-weight: 600;
}

footer hr {
  margin: 35px 0 22px;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.copyright {
  padding-bottom: 1px;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.copyright a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: #175cff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
  }

  nav {
    position: relative;
  }

  .mobile-menu {
    position: fixed;
    top: 74px;
    left: -100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
    z-index: 998;
  }

  .mobile-menu.active {
    left: 0;
  }

  .mobile-menu a {
    color: #0f172a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
  }

  .hero-grid,
  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-text {
    margin: auto;
  }
}

@media (max-width: 576px) {
  .container {
    width: 92%;
  }

  nav {
    height: 64px;
  }

  .logo h2 {
    font-size: 18px;
  }

  .logo small {
    font-size: 9px;
  }

  .logo-box {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .hero {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn,
  .actions .btn2,
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }

  .illustration {
    height: 360px;
    margin-top: 35px;
  }

  .circle {
    width: 300px;
    height: 300px;
  }

  .main-card {
    width: 210px;
    height: 210px;
    font-size: 65px;
  }

  .float {
    display: none;
  }

  .section-title h2,
  .cta h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 16px;
  }

  .resource-grid,
  .industry-grid,
  .process-wrapper,
  .contact-grid,
  .about-points {
    grid-template-columns: 1fr;
  }

  .why-left {
    text-align: center;
  }

  .why-right,
  .about-right {
    margin-top: 35px;
  }

  .about-left h2 {
    font-size: 28px;
  }

  .about-number {
    font-size: 42px;
  }
}