:root {
  --primary:#1f4fa3;
  --accent:#1fc7c1;
  --bg:#f4f8fb;
  --text:#1c1c1c;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity:0;
    transform:translateY(20px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity:0;
    transform:translateX(-30px);
  }
  to {
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity:0;
    transform:translateX(30px);
  }
  to {
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity:0;
    transform:scale(0.95);
  }
  to {
    opacity:1;
    transform:scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow:0 0 0 0 rgba(31, 199, 193, 0.7);
  }
  50% {
    box-shadow:0 0 0 8px rgba(31, 199, 193, 0);
  }
}

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:system-ui;
}

body {
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

/* Layout */
.container {
  max-width:900px;
  margin:auto;
  padding:20px;
}

/* Hero Header */
.hero-header {
  padding: 90px 20px 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left,
    rgba(31,199,193,0.15),
    transparent 30%),
    #f7f9fc;
  animation:fadeInUp 0.8s ease 0.3s backwards;
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.logo {
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:bold;
  color:var(--primary);
  font-size: 25px;
  animation:slideInLeft 0.6s ease 0.15s backwards;
  text-decoration: none;
}

.logo img {
  width:40px;
}

.hero-header .btn.small {
  animation:slideInRight 0.6s ease 0.15s backwards;
}

/* Buttons */
.btn {
  display:inline-block;
  background:var(--accent);
  color:white;
  padding:12px 20px;
  border-radius:6px;
  text-decoration:none;
  margin-top:10px;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor:pointer;
  border:2px solid transparent;
}

.btn:hover {
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 8px 20px rgba(31, 199, 193, 0.35);
}

.btn:active {
  transform:translateY(-1px) scale(0.98);
}

.btn.small {
  padding:8px 14px;
}

.btn.small:hover {
  transform:translateY(-2px) scale(1.04);
}

/* Cards */
.card {
  background:white;
  padding:15px;
  border-radius:10px;
  margin-bottom:10px;
  box-shadow:0 2px 5px rgba(0,0,0,0.05);
}

/* Notice */
.notice {
  font-size:0.9rem;
  opacity:0.7;
  animation:fadeInUp 0.8s ease 0.7s backwards;
}

/* Accent text */
.accent-text {
  color:var(--accent);
  font-weight:600;
}

/* CTA SECTION */
.cta-section {
  padding: 40px 15px;
  animation:fadeInUp 0.8s ease 1.3s backwards;
}

/* CONTAINER */
.cta-container {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(135deg, #0b3c5d, #1f4fa3);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: white;
}

/* TEXT */
.cta-text h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  animation:slideInLeft 0.6s ease 1.4s backwards;
}

.cta-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
  animation:slideInLeft 0.6s ease 1.5s backwards;
}

/* FORM CARD */
.cta-form {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  animation:slideInRight 0.6s ease 1.5s backwards;
}

.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* GRID FIX (MOBILE FIRST) */
.grid {
  display: grid;
  grid-template-columns: 1fr; /* always 1 column on mobile */
  gap: 12px;
}

/* INPUTS */
.cta-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 0.95rem;
}

.cta-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

/* CONSENT BOX */
.consent {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: white;
  font-size: 0.95rem;
}

.consent input {
  width: auto;
  min-width: auto;
  transform: scale(1.05);
}

/* BUTTON */
.cta-form button {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  background: #1fc7c1;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* NOTE */
.form-note {
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.85;
  margin-top: 0;
}

.form-status {
  min-height: 1.25rem;
  color: white;
  font-size: 0.88rem;
  text-align: center;
}

/* TABLET */
@media (min-width: 600px) {
  .cta-container {
    padding: 30px;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cta-container {
    padding: 20px 16px;
  }

  .cta-text h2 {
    font-size: 1.4rem;
  }

  .cta-form {
    padding: 18px;
  }
}

/* DESKTOP */
@media (min-width: 900px) {
  .cta-container {
    flex-direction: row;
    align-items: center;
    padding: 40px;
  }

  .cta-text {
    flex: 1;
    padding-right: 20px;
  }

  .cta-form {
    flex: 1;
  }

  .cta-text h2 {
    font-size: 1.8rem;
  }
}
.footer {
  background: linear-gradient(180deg, rgba(31,79,163,0.96), rgba(31,79,163,1));
  color: white;
  padding: 40px 20px;
  font-size: 0.95rem;
  animation:fadeInUp 0.8s ease 1.6s backwards;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* TOP */
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation:fadeInUp 0.8s ease 1.7s backwards;
}

.footer-logo {
  font-size: 1.7rem;
  margin-bottom: 0;
}

.footer-desc {
  opacity: 0.85;
  margin-bottom: 0;
  max-width: 620px;
  line-height: 1.6;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socials a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.socials a:hover {
  color: white;
}

/* LINE */
.footer hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* TRUST */
.footer-middle h3 {
  margin-bottom: 12px;
}

.footer-middle p {
  opacity: 0.88;
  margin-bottom: 14px;
  line-height: 1.75;
  max-width: 720px;
}

/* BADGES */
.badges span {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 10px;
  margin-right: 10px;
  margin-top: 8px;
  font-size: 0.85rem;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.links a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.links a:hover {
  color: var(--accent);
  opacity: 1;
}

/* COPYRIGHT */
.copyright {
  opacity: 0.75;
  font-size: 0.88rem;
  margin: 0;
}

/* DESKTOP */
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
/* GRID LAYOUT */
.footer-grid {
  display: grid;
  gap: 30px;
}

/* CONTACT */
.footer-contact h3 {
  margin-bottom: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31,79,163,0.95), rgba(31,199,193,0.9));
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(31,79,163,0.14);
  flex-shrink: 0;
}

.contact-item p {
  margin: 0;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}



/* SECTION */
.about-section {
  padding: 60px 20px;
  background: white;
}

/* GRID */
.about-grid {
  display: grid;
  gap: 30px;
}

/* TEXT */
.about-text h2 {
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  opacity: 0.8;
  line-height: 1.6;
}

/* HIGHLIGHTS */
.about-highlights {
  display: grid;
  gap: 15px;
}

.highlight {
  background: #f4f8fb;
  padding: 15px;
  border-radius: 12px;
}

.highlight h3 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1rem;
}

.highlight p {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.highlight {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.2s ease;
}

.highlight:hover {
  transform: translateY(-3px);
}





/* SECTION */
.services-section {
  text-align: center;
  padding: 60px 20px;
}

.services-section h2 {
  animation:fadeInUp 0.8s ease 0.8s backwards;
}

.services-section .section-sub {
  animation:fadeInUp 0.8s ease 0.9s backwards;
}

/* GRID */
.services-grid {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

/* CARD */
.service-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  animation:scaleIn 0.6s ease;
}

.service-card:nth-child(1) {
  animation:scaleIn 0.6s ease 1s backwards;
}

.service-card:nth-child(2) {
  animation:scaleIn 0.6s ease 1.1s backwards;
}

.service-card:nth-child(3) {
  animation:scaleIn 0.6s ease 1.2s backwards;
}

/* HOVER EFFECT (premium feel) */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ICON */
.icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f4fa3, #1fc7c1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* SVG */
.icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* TEXT */
.service-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* GRID RESPONSIVE */
@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* SECTION */
.why-section {
  background: #f4f8fb;
  padding: 60px 20px;
  text-align: center;
  animation:fadeInUp 0.8s ease 1.1s backwards;
}

.why-section h2 {
  animation:fadeInUp 0.8s ease 1.2s backwards;
}

/* GRID */
.why-grid {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

/* CARD */
.why-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  position: relative;
  transition: 0.25s ease;
  animation:scaleIn 0.6s ease;
}

.why-card:nth-child(1) {
  animation:scaleIn 0.6s ease 1.25s backwards;
}

.why-card:nth-child(2) {
  animation:scaleIn 0.6s ease 1.35s backwards;
}

.why-card:nth-child(3) {
  animation:scaleIn 0.6s ease 1.45s backwards;
}

.why-card:hover {
  transform: translateY(-5px);
}

/* NUMBER */
.number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

/* TEXT */
.why-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* RESPONSIVE */
@media (min-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(#1f4fa3, #1fc7c1);
  border-radius: 4px 0 0 4px;
}

/* =========================
        FAQ SECTION
========================= */

.faq-section {
  padding: 80px 20px;
  background:
    radial-gradient(circle at top left,
    rgba(31,199,193,0.08),
    transparent 30%),
    #f7f9fc;
  text-align: center;
}

/* LABEL */
.faq-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #1fc7c1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* TITLE */
.faq-title {
  font-size: 2.7rem;
  line-height: 1.1;
  color: #101828;
  margin-bottom: 15px;
}

.faq-title span {
  background: linear-gradient(135deg, #1f4fa3, #1fc7c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.faq-sub {
  max-width: 650px;
  margin: auto;
  color: #667085;
  line-height: 1.7;
  margin-bottom: 45px;
}

/* WRAPPER */
.faq-wrapper {
  max-width: 950px;
  margin: auto;
}

/* FAQ ITEM */
.faq-item {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

/* ACTIVE */
.faq-item.active {
  border-color: rgba(31,199,193,0.3);
  box-shadow: 0 20px 50px rgba(31,199,193,0.08);
}

/* HOVER */
.faq-item:hover {
  transform: translateY(-2px);
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #101828;
}

/* ARROW */
.faq-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(31,199,193,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #1fc7c1;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s ease;
}

/* ROTATE */
.faq-item.active .faq-arrow svg {
  transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: #667085;
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: left;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* MOBILE */
@media (max-width: 768px) {

  .faq-section {
    padding: 60px 15px;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 18px;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 0.9rem;
  }
}

  /* =========================
        HERO HEADER
========================= */

.hero-header {
  width: 100%;
  position: relative;
  z-index: 999;
  background: #f4f8fb;
}

/* NAV */
.nav {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 100%;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #101828;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo img {
  width: 42px;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #344054;
  font-weight: 500;
  transition: 0.2s ease;
}

.menu a:hover {
  color: #1fc7c1;
}

/* BUTTON */
.nav-btn {
  background: linear-gradient(135deg, #1f4fa3, #1fc7c1);
  color: white !important;
  padding: 12px 18px;
  border-radius: 10px;
}

/* TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #101828;
  border-radius: 5px;
}

/* =========================
        HERO
========================= */

.hero {
  padding: 90px 20px 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left,
    rgba(31,199,193,0.15),
    transparent 30%),
    #f7f9fc;
}

/* GRID */
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

/* CONTENT */
.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  color: #101828;
  margin: 15px 0;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #1f4fa3, #1fc7c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: #667085;
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 25px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(31,199,193,0.1);
  color: #1f4fa3;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

/* PRIMARY */
.primary-btn {
  background: linear-gradient(135deg, #1f4fa3, #1fc7c1);
  color: white;
  box-shadow: 0 15px 30px rgba(31,199,193,0.25);
}

/* SECONDARY */
.secondary-btn {
  border: 1px solid #d0d5dd;
  color: #101828;
  background: white;
}

/* HOVER */
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 1.4rem;
  color: #1f4fa3;
}

.stat p {
  margin: 0;
  font-size: 0.9rem;
}

/* IMAGE */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
}

/* SHAPE */
.hero-shape {
  position: absolute;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #1f4fa3, #1fc7c1);
  border-radius: 30px;
  bottom: 0;
  right: 40px;
  z-index: 1;
}

/* =========================
        DESKTOP
========================= */

@media (min-width: 900px) {

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

}

/* =========================
        MOBILE
========================= */

@media (max-width: 899px) {

  .menu {
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 15px;
    width: 220px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 1001;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-header {
    padding: 60px 20px 40px;
  }

  .nav {
    padding: 15px 0;
    position: relative;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    margin: auto auto 25px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-shape {
    width: 230px;
    height: 230px;
    right: auto;
  }

}

/* Header and hero polish */
.hero-header {
  position: relative;
  padding: 18px 20px 76px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,248,251,0.94)),
    radial-gradient(circle at 78% 24%, rgba(31,199,193,0.18), transparent 34%),
    radial-gradient(circle at 8% 8%, rgba(31,79,163,0.16), transparent 30%);
  overflow: hidden;
}

.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,79,163,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,79,163,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 78%);
  pointer-events: none;
}

.hero-header > * {
  position: relative;
  z-index: 1;
}

.nav {
  max-width: 1120px;
  min-height: 72px;
  margin: 0 auto 58px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(31,79,163,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 50px rgba(16,24,40,0.08);
  backdrop-filter: blur(14px);
}

.logo {
  color: #101828;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #344054;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  background: rgba(31,199,193,0.09);
  color: #1552a3;
  outline: none;
}

.menu .nav-btn {
  margin-left: 8px;
  padding: 12px 18px;
  color: white !important;
  background: linear-gradient(135deg, #1f4fa3, #17b8b4);
  box-shadow: 0 12px 26px rgba(31,79,163,0.24);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(31,79,163,0.12);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #101828;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-grid {
  max-width: 1120px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(31,199,193,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  color: #1552a3;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1fc7c1;
  box-shadow: 0 0 0 5px rgba(31,199,193,0.13);
}

.hero-content h1 {
  max-width: 620px;
  margin: 18px 0 18px;
  color: #101828;
  font-size: clamp(2.55rem, 6vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content h1 span {
  display: block;
  background: linear-gradient(135deg, #1f4fa3, #17b8b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content > p {
  max-width: 560px;
  margin-bottom: 28px;
  color: #516070;
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, #1f4fa3, #17b8b4);
  box-shadow: 0 18px 34px rgba(31,79,163,0.24);
}

.secondary-btn {
  border: 1px solid rgba(31,79,163,0.16);
  color: #1f2937;
  background: rgba(255,255,255,0.86);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn:hover {
  border-color: rgba(31,199,193,0.5);
  box-shadow: 0 12px 28px rgba(16,24,40,0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(31,79,163,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
}

.stat h3 {
  color: #1f4fa3;
  font-size: 1.28rem;
  line-height: 1.1;
}

.stat p {
  margin-top: 6px;
  color: #5f6c7b;
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-image {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-shape {
  position: absolute;
  width: min(92%, 430px);
  height: 82%;
  right: 2%;
  bottom: 0;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(31,79,163,0.95), rgba(31,199,193,0.86));
  box-shadow: 0 30px 70px rgba(31,79,163,0.22);
  transform: rotate(-3deg);
}

.hero-image::after {
  content: "Funding guidance, built around your next move";
  position: absolute;
  left: 0;
  bottom: 32px;
  z-index: 3;
  max-width: 260px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  color: #344054;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 18px 44px rgba(16,24,40,0.12);
}

.hero-image img {
  width: min(100%, 450px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 32px rgba(16,24,40,0.18));
}

.faq-item {
  border-radius: 14px;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(31,199,193,0.32);
  outline-offset: -3px;
}

@media (max-width: 899px) {
  .hero-header {
    padding: 14px 16px 56px;
  }

  .nav {
    min-height: 64px;
    margin-bottom: 38px;
    padding: 10px 10px 10px 14px;
    position: relative;
    border-radius: 16px;
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 32px));
    padding: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(31,79,163,0.1);
    border-radius: 16px;
    background: white;
    box-shadow: 0 22px 48px rgba(16,24,40,0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
  }

  .menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 1001;
  }

  .menu a {
    padding: 12px;
  }

  .menu .nav-btn {
    margin: 6px 0 0;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

  .hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-shape {
    right: 50%;
    height: 78%;
    transform: translateX(50%) rotate(-3deg);
  }

  .hero-image::after {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(260px, 80%);
  }
}

@media (max-width: 620px) {
  .hero-content h1 {
    font-size: 2.45rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: auto;
  }

  .hero-image {
    min-height: 310px;
  }

  .hero-image img {
    width: min(100%, 340px);
  }
}

/* Branded dashboard hero */
.hero-header {
  padding: 18px 20px 86px;
  color: #101828;
  background:
    radial-gradient(circle at 78% 28%, rgba(31,199,193,0.18), transparent 34%),
    radial-gradient(circle at 8% 10%, rgba(31,79,163,0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fc 58%, #eef8fb 100%);
}

.hero-header::before {
  background-image:
    linear-gradient(rgba(31,79,163,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,79,163,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent 86%);
}

.hero-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(31,199,193,0.08));
  pointer-events: none;
}

.hero-header .nav {
  background: rgba(255,255,255,0.92);
  border-color: rgba(31,79,163,0.1);
  box-shadow: 0 18px 50px rgba(16,24,40,0.08);
}

.hero-header .logo,
.hero-header .menu a {
  color: #344054;
}

.hero-header .menu a:hover,
.hero-header .menu a:focus-visible {
  background: rgba(31,199,193,0.09);
  color: #1f4fa3;
}

.hero-header .menu .nav-btn,
.hero-header .primary-btn {
  color: white !important;
  background: linear-gradient(135deg, #1fc7c1, #1f4fa3);
  box-shadow: 0 16px 34px rgba(31,199,193,0.26);
}

.hero-header .secondary-btn {
  border-color: rgba(31,79,163,0.16);
  color: #101828;
  background: rgba(255,255,255,0.9);
}

.hero-header .secondary-btn:hover {
  border-color: rgba(31,199,193,0.58);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.hero-header .hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
}

.hero-header .hero-content {
  max-width: 640px;
}

.hero-header .hero-badge {
  border-color: rgba(31,199,193,0.24);
  background: rgba(255,255,255,0.82);
  color: #1f4fa3;
}

.hero-header .hero-badge::before {
  background: #1fc7c1;
  box-shadow: 0 0 0 5px rgba(31,199,193,0.16);
}

.hero-header .hero-content h1 {
  color: #101828;
  font-size: clamp(2.7rem, 6vw, 4.55rem);
  line-height: 1.02;
}

.hero-header .hero-content h1 span {
  display: inline;
  background: linear-gradient(135deg, #1f4fa3, #1fc7c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-header .hero-content > p {
  color: #516070;
}

.hero-header .stat {
  border-color: rgba(31,79,163,0.1);
  background: rgba(255,255,255,0.78);
}

.hero-header .stat h3 {
  color: #1f4fa3;
}

.hero-header .stat p {
  color: #5f6c7b;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(86%, 560px);
  height: 74%;
  bottom: 0;
  border-radius: 40px 40px 0 0;
  background:
    linear-gradient(180deg, rgba(31,199,193,0.2), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  z-index: -1;
}

.hero-phone {
  width: min(62vw, 278px);
  min-width: 248px;
  height: 430px;
  padding: 18px;
  border: 8px solid #151b1a;
  border-radius: 34px;
  background: linear-gradient(180deg, #123a76, #071b38);
  color: white;
  box-shadow: 0 32px 70px rgba(0,0,0,0.3);
}

.phone-top,
.phone-title,
.phone-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.72);
}

.phone-speaker {
  width: 74px;
  height: 20px;
  border-radius: 999px;
  background: #050908;
}

.phone-title {
  margin-top: 24px;
  font-weight: 700;
}

.phone-title i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.phone-tabs {
  gap: 5px;
  margin: 20px 0 26px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  font-size: 0.68rem;
}

.phone-tabs span {
  flex: 1;
  padding: 7px 5px;
  border-radius: 999px;
  text-align: center;
  color: rgba(255,255,255,0.54);
}

.phone-tabs .active {
  background: #1fc7c1;
  color: #07315f;
  font-weight: 800;
}

.phone-balance {
  text-align: center;
}

.phone-balance small {
  display: block;
  color: rgba(255,255,255,0.5);
}

.phone-balance strong {
  display: block;
  margin-top: 4px;
  color: #dffbff;
  font-size: 1.6rem;
}

.hero-chart {
  height: 116px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
}

.hero-chart span {
  display: block;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #1fc7c1, rgba(31,199,193,0.16));
}

.hero-chart span:nth-child(1) { height: 42%; }
.hero-chart span:nth-child(2) { height: 74%; }
.hero-chart span:nth-child(3) { height: 54%; }
.hero-chart span:nth-child(4) { height: 88%; }
.hero-chart span:nth-child(5) { height: 64%; }

.hero-orbit-card {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 16px;
  background: rgba(255,255,255,0.94);
  color: #101828;
  box-shadow: 0 18px 48px rgba(0,0,0,0.16);
}

.hero-orbit-card span,
.hero-orbit-card small {
  display: block;
  color: #667085;
  font-size: 0.72rem;
}

.hero-orbit-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
  line-height: 1.1;
}

.hero-income-card {
  top: 110px;
  left: 0;
}

.hero-income-card::after,
.hero-balance-card::after {
  content: "+15%";
  position: absolute;
  top: 12px;
  right: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #1fc7c1;
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
}

.hero-balance-card {
  top: 150px;
  right: 0;
  min-width: 170px;
}

.hero-trade-card {
  left: 72px;
  bottom: 64px;
  min-width: 198px;
}

.hero-trade-card small {
  color: #128a86;
  font-weight: 800;
}

.hero-user-card {
  right: 22px;
  bottom: 126px;
  min-width: 170px;
}

.hero-user-card strong {
  color: #9b1c1c;
}

/* Product samples */
.products-section {
  padding: 72px 20px;
  background: #ffffff;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #1f4fa3;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-section h2 {
  color: #101828;
  font-size: 2.35rem;
  line-height: 1.1;
}

.products-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-sample {
  position: relative;
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(31,79,163,0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(31,79,163,0.04), rgba(31,199,193,0.06)),
    #f8fbfd;
  box-shadow: 0 16px 40px rgba(16,24,40,0.06);
}

.product-sample::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 86px;
  border: 1px dashed rgba(31,79,163,0.22);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(31,79,163,0.08) 32%, transparent 32%) 0 24px / 100% 10px no-repeat,
    linear-gradient(90deg, rgba(31,199,193,0.12) 48%, transparent 48%) 0 48px / 100% 10px no-repeat;
}

.product-tag {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 1;
  color: #1f4fa3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-file-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, #1f4fa3, #1fc7c1);
}

.product-sample h3 {
  color: #101828;
  font-size: 1.08rem;
  line-height: 1.2;
}

.product-sample p {
  margin-top: 8px;
  color: #667085;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .hero-header .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
    width: min(100%, 680px);
    margin: auto;
  }
}

@media (max-width: 720px) {
  .hero-header {
    padding-bottom: 58px;
  }

  .hero-phone {
    min-width: 220px;
    width: 238px;
    height: 380px;
    border-radius: 30px;
  }

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

  .hero-orbit-card {
    padding: 11px 12px;
  }

  .hero-income-card {
    top: 70px;
    left: 6px;
  }

  .hero-balance-card {
    top: 112px;
    right: 6px;
    min-width: 138px;
  }

  .hero-trade-card {
    left: 14px;
    bottom: 42px;
    min-width: 170px;
  }

  .hero-user-card {
    right: 12px;
    bottom: 108px;
    min-width: 142px;
  }

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

/* Mobile navigation correction */
@media (max-width: 899px) {
  .hero-header {
    overflow: visible;
  }

  .hero-header .nav {
    z-index: 20;
  }

  .hero-header .menu {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: 100%;
    max-width: none;
    padding: 10px;
  }

  .hero-header .menu a {
    width: 100%;
    display: block;
  }

  .hero-header .menu .nav-btn {
    margin-top: 6px;
  }
}
