:root {
  --brand: #1868db;
  --brand-dark: #1254b5;
  --brand-light: #4a8ee8;
  --brand-xlight: #82b4f0;
  --bg-blue: #deebff;
  --bg-white: #ffffff;
  --text-dark: #0d1b3e;
  --text-mid: #3a4a6b;
  --text-muted: #6b7faa;
  --accent: #ff6b35;
  --accent2: #00c896;
  --card-border: rgba(24, 104, 219, 0.12);
  --shadow-sm: 0 2px 12px rgba(24, 104, 219, 0.08);
  --shadow-md: 0 8px 32px rgba(24, 104, 219, 0.14);
  --shadow-lg: 0 20px 60px rgba(24, 104, 219, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 104, 219, 0.08);
  border: 1px solid rgba(24, 104, 219, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

h2.section-title {
  /* font-family: "Syne", sans-serif; */
  font-size: clamp(2rem, 4vw, 2.8rem);
  /* font-weight: 800; */
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 620px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(24, 104, 219, 0.35);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(24, 104, 219, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand);
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--brand);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: var(--brand);
  color: #fff;
}

.blue-bg {
  background: var(--bg-blue);
}

.white-bg {
  background: #fff;
}

/* ── ANNOUNCEMENT BAR ── */
#announce {
  background: linear-gradient(
    90deg,
    var(--brand-dark),
    var(--brand),
    var(--brand-light)
  );
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

#announce a {
  color: #fff;
  text-decoration: underline;
  margin-left: 8px;
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(24, 104, 219, 0.1);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/*.logo-text {*/
/*  font-family: "Syne", sans-serif;*/
/*  font-size: 1.2rem;*/
/*  font-weight: 800;*/
/*  color: var(--text-dark);*/
/*}*/
.logo-text {
    font-family: 'Plus Jakarta Sans';
    font-size: 1.2rem;
    /* font-weight: 800; */
    color: var(--text-dark);
}
.logo-text span {
  color: var(--brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--brand);
  background: rgba(24, 104, 219, 0.07);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 12px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--bg-blue);
  color: var(--brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions a {
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-login {
  color: var(--brand);
}

.nav-login:hover {
  background: var(--bg-blue);
}

.nav-register {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 3px 14px rgba(24, 104, 219, 0.3);
}

.nav-register:hover {
  background: var(--brand-dark);
}

/* ── 1. HERO ── */
#hero {
  padding: 80px 0 60px;
  background: linear-gradient(160deg, #fff 50%, var(--bg-blue) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(24, 104, 219, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

#hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(222, 235, 255, 0.8) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  /* align-items: center; */
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(24, 104, 219, 0.1),
    rgba(24, 104, 219, 0.05)
  );
  border: 1px solid rgba(24, 104, 219, 0.25);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-badge .spark {
  font-size: 14px;
}

h1.hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.4rem, 5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}

h1.hero-title span {
  color: var(--brand);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  font-family: "Syne", sans-serif;
}

.hero-stat span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand),
    var(--brand-light),
    var(--accent2)
  );
}

.tool-demo {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-demo-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.demo-input {
  display: flex;
  gap: 10px;
}

.demo-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(24, 104, 219, 0.2);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  background: var(--bg-blue);
}

.demo-input input:focus {
  border-color: var(--brand);
}

.demo-btn {
  padding: 12px 20px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.demo-results {
  background: var(--bg-blue);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-result-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.demo-result-row .icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.demo-result-row strong {
  color: var(--text-dark);
  font-weight: 600;
}

.demo-result-row span {
  color: var(--text-muted);
  font-size: 11px;
}

.float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.float-badge.top-right {
  top: -37px;
  right: -20px;
}

.float-badge.bot-left {
  bottom: 140px;
  left: -16px;
}

.float-badge .green {
  color: var(--accent2);
}

/* ── 2. TRUSTED BY ── */
#trusted {
  padding: 36px 0;
  background: #fff;
  border-top: 1px solid rgba(24, 104, 219, 0.07);
  border-bottom: 1px solid rgba(24, 104, 219, 0.07);
}

.trusted-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-logo {
  font-size: 15px;
  font-weight: 800;
  color: rgba(13, 27, 62, 0.25);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.trusted-logo:hover {
  color: var(--brand);
}

/* ── 3. FEATURES ── */
#features {
  padding: 90px 0;
  background: var(--bg-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--bg-blue), rgba(24, 104, 219, 0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 14px;
}

.tag-new {
  background: rgba(0, 200, 150, 0.1);
  color: var(--accent2);
}

.tag-hot {
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
}

.tag-free {
  background: rgba(24, 104, 219, 0.1);
  color: var(--brand);
}

/* ── 4. STATS ── */
#stats {
  padding: 80px 0;
  background: #fff;
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stats-left h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.stats-left p {
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: var(--bg-blue);
  border: 1px solid rgba(24, 104, 219, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.stat-box .num {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
}

.stat-box .lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

.stats-chart {
  background: var(--bg-blue);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.chart-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-label span {
  color: var(--brand);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 140px;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.bar {
  width: 100%;
  background: linear-gradient(180deg, var(--brand-light), var(--brand));
  border-radius: 8px 8px 0 0;
  transition: all 0.3s;
}

.bar:hover {
  background: linear-gradient(180deg, var(--accent), var(--brand-dark));
}

.bar-group span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.chart-legend {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.chart-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--brand);
}

/* ── 5. HOW IT WORKS ── */
#how {
  padding: 90px 0;
  background: var(--bg-blue);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}

.how-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  z-index: 0;
}

.step-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 6. TOOLS/SERVICES ── */
#tools {
  padding: 90px 0;
  background: #fff;
}

.tools-tabs {
  display: flex;
  gap: 8px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}

.tool-tab {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid rgba(24, 104, 219, 0.2);
  color: var(--text-mid);
  transition: all 0.2s;
  background: transparent;
}

.tool-tab.active,
.tool-tab:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-card {
  background: var(--bg-blue);
  border: 1.5px solid rgba(24, 104, 219, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.tool-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--brand);
}

.tool-card .t-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.tool-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.tool-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tool-card .arrow {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

/* ── 7. USE CASES ── */
#usecases {
  padding: 90px 0;
  background: var(--bg-blue);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.use-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all 0.3s;
}

.use-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.use-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--bg-blue), rgba(24, 104, 219, 0.2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.use-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.use-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.use-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.use-tags .utag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(24, 104, 219, 0.08);
  color: var(--brand);
}

/* ── 8. LEAD TYPES ── */
#leads {
  padding: 90px 0;
  background: #fff;
}

.leads-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.leads-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.lead-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--bg-blue);
  transition: all 0.2s;
  cursor: pointer;
}

.lead-item:hover,
.lead-item.active {
  background: #fff;
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.lead-item.active .lead-num {
  background: var(--brand);
  color: #fff;
}

.lead-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(24, 104, 219, 0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.2s;
}

.lead-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.lead-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.leads-visual {
  background: linear-gradient(160deg, var(--bg-blue), rgba(24, 104, 219, 0.05));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.growth-chart {
  margin: 20px 0;
}

.growth-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(
    var(--brand) 0% 75%,
    rgba(24, 104, 219, 0.1) 75% 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.growth-ring-inner {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.growth-ring-inner strong {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
}

.growth-ring-inner span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── 9. PRICING ── */
#pricing {
  padding: 90px 0;
  background: var(--bg-blue);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.price-card {
  background: #fff;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.price-card.popular {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 50px;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-plan {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: "Syne", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.price-amount sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 8px;
}

.price-amount .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.price-feature .check {
  width: 20px;
  height: 20px;
  background: rgba(0, 200, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent2);
  flex-shrink: 0;
}

.price-feature .cross {
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #ccc;
  flex-shrink: 0;
}

.price-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.price-btn-outline {
  border: 2px solid var(--brand);
  color: var(--brand);
}

.price-btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

.price-btn-fill {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(24, 104, 219, 0.3);
}

.price-btn-fill:hover {
  background: var(--brand-dark);
}

/* ── 10. TESTIMONIALS ── */
#testimonials {
  padding: 90px 0;
  background: #fff;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.test-card {
  background: var(--bg-blue);
  border: 1px solid rgba(24, 104, 219, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}

.test-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
}

.test-stars {
  color: #f5b400;
  font-size: 14px;
  margin-bottom: 14px;
}

.test-quote {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.test-quote::before {
  content: "\201C";
  font-size: 3rem;
  color: rgba(24, 104, 219, 0.15);
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -14px;
  margin-right: 4px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.test-info strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.test-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── 11. INTEGRATIONS ── */
#integrations {
  padding: 90px 0;
  background: var(--bg-blue);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.int-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}

.int-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}

.int-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.int-card span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ── 12. FAQ ── */
#faq {
  padding: 90px 0;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--bg-blue);
}

.faq-q .faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(24, 104, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open {
  border-color: var(--brand);
}

.faq-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: #fff;
}

.faq-cta h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-cta p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

.faq-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--brand);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.faq-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ── 13. BLOG ── */
#blog {
  padding: 90px 0;
  background: var(--bg-blue);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}

.blog-thumb-1 {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.blog-thumb-2 {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.blog-thumb-3 {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.blog-body {
  padding: 24px;
}

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-read {
  color: var(--brand);
  font-weight: 700;
}

/* ── 14. NEWSLETTER ── */
#newsletter {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--brand-dark) 0%,
    var(--brand) 50%,
    var(--brand-light) 100%
  );
  position: relative;
  overflow: hidden;
}

#newsletter::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

#newsletter::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.newsletter-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter-inner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.newsletter-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.newsletter-form button {
  padding: 14px 28px;
  background: #fff;
  color: var(--brand);
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.newsletter-form button:hover {
  background: var(--bg-blue);
}

.newsletter-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
}

/* ── 15. ABOUT / WHY US ── */
#about {
  padding: 90px 0;
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-blue);
  border: 1px solid rgba(24, 104, 219, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-point h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about-point p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-visual {
  background: var(--bg-blue);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--card-border);
}

.check-row .chk {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.check-row span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ── 16. SECURITY / TRUST ── */
#security {
  padding: 90px 0;
  background: var(--bg-blue);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.sec-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.sec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sec-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.sec-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.sec-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 17. FOOTER ── */
#footer {
  background: var(--text-dark);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--brand-xlight);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.fc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
}

.fc-row .fc-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--brand-xlight);
}

/* ── CTA BANNER ── */
#cta-banner {
  padding: 90px 0;
  background: #fff;
}

.cta-banner-box {
  background: linear-gradient(
    135deg,
    var(--bg-blue) 0%,
    rgba(222, 235, 255, 0.4) 100%
  );
  border: 2px solid rgba(24, 104, 219, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(24, 104, 219, 0.1), transparent 70%);
  border-radius: 50%;
}

.cta-banner-box h2 {
  /* font-family: "Syne", sans-serif; */
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  position: relative;
}

.cta-banner-box p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-banner-box .btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner,
  .stats-inner,
  .leads-inner,
  .faq-grid,
  .about-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .tools-grid,
  .test-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-grid,
  .security-grid,
  .integrations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .features-grid,
  .tools-grid,
  .test-grid,
  .pricing-grid,
  .blog-grid,
  .how-grid,
  .security-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-links {
    display: none;
  }

  .hero-ctas,
  .newsletter-form {
    flex-direction: column;
  }

  .hero-stats {
    gap: 18px;
  }
}

/*footer css style*/
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  transition: all 0.3s ease;
}
/* Hover Colors (Official Brand Colors) */
.footer-social.twitter:hover {
  background: #000;
}

.footer-social.facebook:hover {
  background: #1877f2;
}

.footer-social.linkedin:hover {
  background: #0a66c2;
}

.footer-social.instagram:hover {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.footer-social.youtube:hover {
  background: #ff0000;
}

/* Hover Animation */
.footer-social:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
