@charset "UTF-8";
:root {
  --brand: #343aa0;
  --brand-dark: #22277a;
  --brand-light: #4b53c4;
  --accent: #f5a623;
  --accent2: #00c49a;
  --bg: #f7f8fc;
  --surface: #ffffff;
  --text: #0f1132;
  --muted: #6b7280;
  --border: #e2e4f0; }

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

html {
  scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  animation: fadeDown 0.6s ease both; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.5px; }

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center; }

.nav-logo .logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white; }

.nav-logo img {
  height: 40px;
  width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none; }

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s; }

.nav-links a:hover {
  color: var(--brand); }

.nav-cta {
  background: var(--brand);
  color: white !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s; }

.nav-cta:hover {
  background: var(--brand-light);
  transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(52, 58, 160, 0.13) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0, 196, 154, 0.08) 0%, transparent 60%), radial-gradient(ellipse 40% 30% at 5% 90%, rgba(245, 166, 35, 0.08) 0%, transparent 60%); }

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(52, 58, 160, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(52, 58, 160, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(52, 58, 160, 0.08);
  border: 1px solid rgba(52, 58, 160, 0.18);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  z-index: 1;
  animation: fadeUp 0.7s 0.1s ease both; }

.hero-badge span {
  width: 7px;
  height: 7px;
  background: var(--accent2);
  border-radius: 50%; }

h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  z-index: 1;
  animation: fadeUp 0.7s 0.2s ease both;
  max-width: 820px; }

h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--brand); }

h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px; }

.hero-sub {
  margin-top: 24px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  z-index: 1;
  animation: fadeUp 0.7s 0.3s ease both; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  z-index: 1;
  animation: fadeUp 0.7s 0.4s ease both;
  flex-wrap: wrap;
  justify-content: center; }

.btn-primary {
  background: var(--brand);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(52, 58, 160, 0.3);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px; }

.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(52, 58, 160, 0.4); }

.btn-secondary {
  background: white;
  color: var(--brand);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px; }

.btn-secondary:hover {
  border-color: var(--brand);
  transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  z-index: 1;
  animation: fadeUp 0.7s 0.5s ease both;
  flex-wrap: wrap;
  justify-content: center; }

.stat {
  text-align: center; }

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1; }

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px; }

.stat-divider {
  width: 1px;
  background: var(--border); }

/* ── MOCKUP ── */
.hero-mockup {
  margin-top: 64px;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  animation: fadeUp 0.9s 0.6s ease both; }

.mockup-window {
  background: white;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(52, 58, 160, 0.18), 0 2px 0 rgba(52, 58, 160, 0.1);
  overflow: hidden;
  border: 1px solid var(--border); }

.mockup-bar {
  background: #f0f2fa;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 7px;
  border-bottom: 1px solid var(--border); }

.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%; }

.mockup-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 340px; }

.mockup-sidebar {
  background: var(--brand);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 2px; }

.sidebar-item {
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s; }

.sidebar-item.active {
  background: rgba(255, 255, 255, 0.15);
  color: white; }

.sidebar-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0; }

.mockup-main {
  padding: 24px;
  background: #f7f8fc; }

.dash-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 16px; }

.dash-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; }

.dash-card {
  background: white;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--border); }

.dash-card-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 6px; }

.dash-card-val {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text); }

.dash-card-tag {
  font-size: 0.7rem;
  margin-top: 4px;
  font-weight: 600; }

.tag-green {
  color: var(--accent2); }

.tag-blue {
  color: var(--brand); }

.tag-orange {
  color: var(--accent); }

.dash-table {
  margin-top: 16px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden; }

.dash-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 10px 14px;
  background: #f0f2fa; }

.dash-table-head span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.dash-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 9px 14px;
  border-top: 1px solid var(--border);
  align-items: center; }

.dash-row span {
  font-size: 0.78rem;
  color: var(--text); }

.badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600; }

.badge-green {
  background: rgba(0, 196, 154, 0.12);
  color: var(--accent2); }

.badge-orange {
  background: rgba(245, 166, 35, 0.12);
  color: #d48a00; }

.badge-blue {
  background: rgba(52, 58, 160, 0.1);
  color: var(--brand); }

/* ── SECTION TITLE ── */
.section {
  padding: 90px 5%; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px; }

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  max-width: 560px; }

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-top: 14px; }

/* ── FEATURES ── */
.features {
  background: white; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px; }

.feature-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s; }

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(52, 58, 160, 0.1); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(52, 58, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px; }

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--brand); }

.feature-icon.green {
  background: rgba(0, 196, 154, 0.12); }

.feature-icon.green svg {
  fill: var(--accent2); }

.feature-icon.orange {
  background: rgba(245, 166, 35, 0.12); }

.feature-icon.orange svg {
  fill: var(--accent); }

.feature-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px; }

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65; }

/* ── AUDIENCE ── */
.audience {
  background: var(--bg); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 56px; }

.audience-card {
  background: white;
  border-radius: 16px;
  padding: 30px 24px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s; }

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(52, 58, 160, 0.1); }

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px; }

.audience-card.blue::before {
  background: var(--brand); }

.audience-card.green::before {
  background: var(--accent2); }

.audience-card.orange::before {
  background: var(--accent); }

.audience-card.purple::before {
  background: #8b5cf6; }

.audience-emoji {
  font-size: 2.6rem;
  margin-bottom: 14px; }

.audience-card h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px; }

.audience-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how {
  background: white; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px; }

.step {
  text-align: center;
  padding: 24px 16px; }

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px; }

.step h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px; }

.step p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--brand);
  color: white; }

.testimonials .section-label {
  color: rgba(255, 255, 255, 0.6); }

.testimonials .section-title {
  color: white; }

.testimonials .section-sub {
  color: rgba(255, 255, 255, 0.7); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px; }

.testi-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s; }

.testi-card:hover {
  background: rgba(255, 255, 255, 0.15); }

.testi-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px; }

.testi-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
  font-style: italic; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px; }

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.85rem; }

.testi-name {
  font-weight: 600;
  font-size: 0.88rem; }

.testi-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6); }

/* ── CTA ── */
/* ── CTA ── */
.cta-section {
  background: var(--bg);
  text-align: center;
  padding: 100px 5%; }

.cta-box {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 60px 48px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(52, 58, 160, 0.1); }

.cta-box h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 14px; }

.cta-box p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px; }

.cta-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center; }

.cta-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s; }

.cta-input:focus {
  border-color: var(--brand); }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }

.contact-item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 58, 160, 0.1); }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; }

.contact-icon svg {
  width: 20px;
  height: 20px; }

.contact-icon.green {
  background: var(--accent2); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left; }

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text); }

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 5% 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px; }

.footer-brand .nav-logo {
  color: white;
  margin-bottom: 14px; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px; }

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: white;
  margin-bottom: 16px; }

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s; }

.footer-col ul li a:hover {
  color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px; }

.footer-bottom p {
  font-size: 0.82rem; }

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none; }

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

  .mockup-sidebar {
    display: none; }

  .dash-cards {
    grid-template-columns: repeat(2, 1fr); }

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

  .hero-stats .stat-divider {
    display: none; }

  .cta-box {
    padding: 36px 24px; } }
@media (max-width: 480px) {
  .dash-cards {
    grid-template-columns: 1fr 1fr; }

  .footer-grid {
    grid-template-columns: 1fr; } }
.footer-bottom a {
  color: #fff !important;
  text-decoration: none; }
  .footer-bottom a:hover {
    opacity: 0.8; }

.footer-grid {
  display: inherit !important; }
  .footer-grid .footer-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px; }
    .footer-grid .footer-brand p {
      max-width: 100% !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  position: absolute;
  top: 15px;
  right: 10px; }

.hamburger:hover {
  background: rgba(52, 58, 160, 0.08); }

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--brand);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center; }

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg); }

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0); }

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hamburger {
    display: flex; }

  nav {
    position: fixed;
    flex-wrap: wrap;
    height: auto;
    padding: 0 5%;
    align-items: center; }

  .nav-logo {
    height: 70px; }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 12px 0 20px;
    gap: 0;
    border-top: 1px solid var(--border); }

  .nav-links.open {
    display: flex; }

  .nav-links li {
    width: 100%; }

  .nav-links a {
    display: block;
    padding: 13px 4px;
    font-size: 1rem;
    color: var(--text);
    border-bottom: 1px solid var(--border); }

  .nav-links a:hover {
    color: var(--brand);
    background: none; }

  .nav-links .nav-cta {
    display: inline-block;
    margin-top: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    background: var(--brand);
    color: white;
    text-align: center;
    width: 100%;
    border-bottom: none; }

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

  .mockup-sidebar {
    display: none; }

  .dash-cards {
    grid-template-columns: repeat(2, 1fr); }

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

  .hero-stats .stat-divider {
    display: none; }

  .cta-box {
    padding: 36px 24px; } }

/*# sourceMappingURL=custom.css.map */
