*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --white: #ffffff;
  --off-white: #f8f9fc;
  --ink: #0b0f19;
  --ink-70: #3a3f52;
  --ink-50: #6b7085;
  --ink-30: #a0a6bb;
  --border: #e4e8f0;
  --border-soft: #eef1f7;

  --blue: #2563eb;
  --blue-dark: #1741b8;
  --blue-mid: #93c5fd;
  --blue-light: #eef4ff;
  --blue-glow: rgba(37, 99, 235, .12);

  --green: #15803d;
  --green-light: #f0fdf6;
  --amber: #b45309;
  --amber-light: #fffbeb;
  --red: #b91c1c;
  --red-light: #fef2f2;
  --purple: #6d28d9;
  --purple-light: #f5f3ff;
  --teal: #0d9488;
  --teal-light: #f0fdfa;

  --r4: 4px;
  --r8: 8px;
  --r12: 12px;
  --r16: 16px;
  --r20: 20px;
  --r999: 999px;

  --shadow-xs: none;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-xl: none;
}


html {
  scroll-behavior: smooth;
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 20px;
  border: 2px solid var(--white);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--white);
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── HANDWRITING ── */
.hand {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: var(--blue)
}

/* ── PEN UNDERLINE (SVG inline) ── */
.pen-ul {
  position: relative;
  display: inline;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='14' viewBox='0 0 300 14'%3E%3Cpath d='M2 10 C60 3, 130 13, 200 7 C240 3, 272 11, 298 8' stroke='%232563eb' stroke-width='3.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 14px;
  padding-bottom: 6px;
}

.pen-ul-green {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='14' viewBox='0 0 300 14'%3E%3Cpath d='M2 10 C60 3, 130 13, 200 7 C240 3, 272 11, 298 8' stroke='%2315803d' stroke-width='3.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 14px;
  padding-bottom: 6px;
}

.squiggle {
  position: relative;
  display: inline;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='16' viewBox='0 0 300 16'%3E%3Cpath d='M0 8 C25 2,50 14,75 8 C100 2,125 14,150 8 C175 2,200 14,225 8 C250 2,275 14,300 8' stroke='%232563eb' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 16px;
  padding-bottom: 8px;
}

.double-ul {
  position: relative;
  display: inline;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='18' viewBox='0 0 300 18'%3E%3Cpath d='M2 6 C80 2, 160 10, 298 5' stroke='%232563eb' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M2 13 C80 9, 160 17, 298 12' stroke='%232563eb' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-dasharray='4 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 18px;
  padding-bottom: 10px;
}

.highlight-ul {
  background: linear-gradient(180deg, transparent 55%, rgba(37, 99, 235, .18) 55%);
  padding: 0 2px;
}

/* ── ANNOUNCEMENT ── */
.ann-bar {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2140 100%);
  color: rgba(255, 255, 255, .75);
  text-align: center;
  padding: 10px 20px;
  font-size: .78rem;
  font-weight: 500;
}

.ann-bar strong {
  color: white
}

.ann-bar a {
  color: #93c5fd;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(147, 197, 253, .4);
  margin-left: 7px;
  transition: border-color .2s;
}

.ann-bar a:hover {
  border-color: #93c5fd
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 62px;
  transition: none;
}

nav.scrolled {
  box-shadow: none;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
  letter-spacing: -0.03em;
  transition: all 0.3s ease;
}


.logo-text {
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo-od {
  color: var(--blue);
  font-weight: 900;
}

.logo-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-left: 2px;
  margin-top: 6px;
  display: inline-block;
}

.nav-logo img {
  height: 50px;
  width: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-50);
  padding: 6px 13px;
  border-radius: var(--r8);
  text-decoration: none;
  transition: color .15s, background .15s;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--off-white)
}

.nav-links a.active {
  color: var(--blue);
  font-weight: 600
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px
}

.btn-ghost-nav {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-70);
  padding: 7px 16px;
  border-radius: var(--r8);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all .2s;
}

.btn-ghost-nav:hover {
  border-color: var(--ink-70);
  color: var(--ink)
}

.btn-nav-cta {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: white;
  padding: 8px 18px;
  border-radius: var(--r8);
  background: var(--blue);
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 999;
  padding: 80px 28px 32px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-50);
  padding: 13px 0;
  border-bottom: 1px solid var(--border-soft);
  text-decoration: none;
  transition: color .2s;
}

.mobile-menu a:hover {
  color: var(--blue)
}

.mob-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--ink);
}

/* ── HERO ── */
#hero {
  padding: 90px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -120px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .07) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 128, 61, .05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: var(--r999);
  margin-bottom: 24px;
  border: 1px solid #bfdbfe;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}



.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}


.hero-h1-sub {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 22px;
  font-weight: 600;
  display: block;
}

.hero-p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  color: var(--ink-50);
  max-width: 540px;
  line-height: 1.8;
  margin: 0 auto 30px;
  font-weight: 400;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.chip {
  font-family: 'Outfit', sans-serif;
  font-size: .73rem;
  font-weight: 600;
  color: var(--ink-70);
  border: 1px solid var(--border);
  border-radius: var(--r999);
  padding: 5px 13px;
  background: white;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: none;
  transition: all .2s;
}

.chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.chip i {
  color: var(--blue);
  font-size: .68rem
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.btn-primary {
  background: var(--blue);
  color: white;
  padding: 12px 28px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  border: 2px solid var(--blue);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: none;
}

.btn-outline {
  background: white;
  color: var(--ink);
  padding: 12px 24px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  border: 2px solid var(--border);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-note {
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  color: var(--ink-30);
  font-weight: 500;
}

.hero-note strong {
  color: var(--blue-dark)
}

/* ── SECTION COMMON ── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px
}

section {
  padding: 88px 0
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: -.035em;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 14px;
  font-weight: 800;
}

.section-lead {
  font-family: 'Outfit', sans-serif;
  font-size: .96rem;
  color: var(--ink-50);
  line-height: 1.85;
  max-width: 550px;
  font-weight: 400;
}

.section-lead.center {
  margin: 0 auto
}

.center-text {
  text-align: center
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border)
}

/* ── HAND ANNOTATIONS (decorative) ── */
.annotation {
  font-family: 'Caveat', cursive;
  font-size: .95rem;
  color: var(--blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: .75;
}

/* ── HOW IT WORKS ── */
#how {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 52px;
  border: 1px solid var(--border);
  border-radius: var(--r20);
  overflow: hidden;
  background: var(--border);
}

.step {
  background: white;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background .2s;
}

.step:hover {
  background: var(--blue-light)
}

.step-n {
  width: 38px;
  height: 38px;
  border-radius: var(--r8);
  background: var(--blue);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .02em;
}

.step h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink)
}

.step p {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  color: var(--ink-50);
  line-height: 1.75
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--ink-30);
  z-index: 2;
}

.step:last-child .step-arrow {
  display: none
}

/* ── MODULES ── */
#modules {
  background: white
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r20);
  overflow: hidden;
  margin-top: 52px;
}

.mod {
  background: white;
  padding: 48px 32px 52px;
  position: relative;
  transition: all .2s;
  display: flex;
  flex-direction: column;
}

.mod:hover {
  background: #fbfcff
}

.mod.star {
  background: linear-gradient(145deg, var(--blue-light) 0%, #f0f7ff 100%)
}

.mod.star:hover {
  background: linear-gradient(145deg, #dbeafe 0%, #e8f2ff 100%)
}

.mod-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mod-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--blue);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--r999);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mod h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.mod-sub {
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  color: var(--ink-50);
  margin-bottom: 28px;
  line-height: 1.7;
  flex-shrink: 0;
}

.mod-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.mod-list li {
  font-family: 'Outfit', sans-serif;
  font-size: .84rem;
  color: var(--ink-70);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.mod-list li i {
  color: var(--blue);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.mod-list li::before {
  display: none;
}

.mod-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  margin-top: 20px;
  transition: gap .2s;
}

.mod-link:hover {
  gap: 9px
}

/* ── FEATURES ── */
#features {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px
}

.feat {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 30px 26px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.feat:hover {
  border-color: var(--blue);
}

.feat:hover::before {
  transform: scaleX(1)
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 16px;
}

.feat h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px
}

.feat p {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  color: var(--ink-50);
  line-height: 1.75
}

/* ── ACTION GALLERY ── */
#action {
  background: white;
  border-top: 1px solid var(--border);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.action-preview {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.action-preview:hover {
  border-color: var(--border);
}

.action-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.action-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: none;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  background: var(--off-white);
  aspect-ratio: 16 / 10;
}

.action-img-wrap:hover {
  border-color: var(--border);
}

.action-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.action-cap {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  color: var(--ink-70);
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  padding: 0 10px;
}

.action-cap strong {
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media(max-width:900px) {
  .action-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── WORKFLOW ── */
#workflow {
  background: white
}

.wf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px
}

.wf-steps {
  display: flex;
  flex-direction: column;
  gap: 0
}

.wf-row {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.wf-row:last-child {
  border-bottom: none
}

.wf-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: .73rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.wf-row h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px
}

.wf-row p {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  color: var(--ink-50);
  line-height: 1.7
}

.wf-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.wf-info p {
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  color: var(--ink-50);
  line-height: 1.85;
  margin-bottom: 24px
}

.wf-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px
}

.wf-checks li {
  font-family: 'Outfit', sans-serif;
  font-size: .84rem;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wf-checks li i {
  color: var(--green);
  font-size: .8rem
}

/* ── PRICING ── */
#pricing {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

/* TOGGLE */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 32px 0 0;
}

.toggle-label {
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-50);
  transition: color .2s;
}

.toggle-label.active {
  color: var(--ink)
}

.toggle-pill {
  width: 52px;
  height: 28px;
  border-radius: var(--r999);
  background: var(--border);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background .3s;
  flex-shrink: 0;
}

.toggle-pill.yearly {
  background: var(--blue)
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  box-shadow: none;
  transition: transform .3s;
}

.toggle-pill.yearly .toggle-thumb {
  transform: translateX(24px)
}

.save-badge {
  font-family: 'Caveat', cursive;
  font-size: .9rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 2px 9px;
  border-radius: var(--r999);
  border: 1px solid #bbf7d0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.price-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r16);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .25s;
  position: relative;
}

.price-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px)
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: none;
}

.price-top-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r999);
  white-space: nowrap;
}

.price-plan {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 6px
}

.price-desc {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  color: var(--ink-50);
  line-height: 1.6;
  margin-bottom: 24px
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px
}

.price-currency {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink-50);
  margin-bottom: 4px
}

.price-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  letter-spacing: -.05em;
  color: var(--ink);
  line-height: 1;
  font-weight: 800;
}

.price-period {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  color: var(--ink-30);
  font-weight: 500;
  margin-left: 3px
}

.price-gst {
  font-family: 'Outfit', sans-serif;
  font-size: .71rem;
  color: var(--ink-30);
  margin-bottom: 22px
}

.price-div {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 22px
}

.price-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1
}

.price-feats li {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
}

.price-feats li i.fa-check-circle {
  color: var(--green);
  font-size: .8rem;
  flex-shrink: 0
}

.price-feats li.soon {
  color: var(--ink-30)
}

.price-feats li.soon i {
  color: var(--amber)
}

.price-cta {
  margin-top: 24px;
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  transition: all .2s;
}

.price-cta:hover,
.price-cta.solid {
  background: var(--blue);
  color: white
}

.price-cta.solid:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark)
}

.annual-save {
  font-family: 'Caveat', cursive;
  font-size: .88rem;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  margin-top: 8px;
  display: none;
}

.annual-save.show {
  display: block
}

.bundle-card {
  margin-top: 16px;
  background: var(--ink);
  border-radius: var(--r20);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 200px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .18) 0%, transparent 70%);
  pointer-events: none;
}

.bundle-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r999);
  margin-bottom: 14px;
}

.bundle-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.65rem;
  color: white;
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: 8px;
  font-weight: 800;
}

.bundle-title .hand {
  color: #93c5fd
}

.bundle-desc {
  font-family: 'Outfit', sans-serif;
  font-size: .83rem;
  color: rgba(255, 255, 255, .4)
}

.bundle-right {
  text-align: right
}

.bundle-from {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 4px
}

.bundle-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  color: white;
  letter-spacing: -.05em;
  line-height: 1;
  font-weight: 800
}

.bundle-gst {
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 10px
}

.bundle-save {
  font-family: 'Caveat', cursive;
  font-size: .95rem;
  color: #93c5fd;
  font-weight: 600;
  margin-bottom: 16px
}

.bundle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 12px 24px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .84rem;
  text-decoration: none;
  border: 1.5px solid var(--blue);
  transition: all .2s;
}

.bundle-btn:hover {
  background: transparent;
  color: var(--blue-mid);
  border-color: var(--blue-mid)
}

/* ── COMPARISON ── */
#comparison {
  background: white
}

.comp-wrap {
  margin-top: 52px;
  overflow-x: auto;
  border-radius: var(--r16);
  border: 1px solid var(--border)
}

.comp-table {
  width: 100%;
  border-collapse: collapse
}

.comp-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.comp-table th.ours {
  background: var(--blue);
  color: white
}

.comp-table td {
  padding: 12px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border-soft);
  font-weight: 500;
}

.comp-table td.ours {
  background: var(--blue-light);
  font-weight: 700;
  color: var(--blue-dark)
}

.comp-table tr:last-child td {
  border-bottom: none
}

.comp-table tr:hover td {
  background: var(--off-white)
}

.comp-table tr:hover td.ours {
  background: #dbeafe
}

.ck-y {
  color: var(--green)
}

.ck-p {
  color: var(--amber)
}

.ck-n {
  color: var(--red)
}

.comp-note {
  font-family: 'Caveat', cursive;
  font-size: .85rem;
  color: var(--ink-30);
  margin-top: 12px;
  text-align: center;
}

/* ── SECURITY ── */
#security {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.sec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px
}

.sec-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all .2s;
}

.sec-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px)
}

.sec-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.sec-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 5px
}

.sec-desc {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  color: var(--ink-50);
  line-height: 1.7
}

/* ── FAQ ── */
#faq {
  background: white
}

.faq-layout {
  max-width: 850px;
  margin: 52px auto 0
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r12);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: var(--blue)
}

.faq-q {
  padding: 17px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .86rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--blue)
}

.faq-arr {
  font-size: .72rem;
  color: var(--ink-30);
  transition: transform .3s;
  flex-shrink: 0
}

.faq-item.open .faq-arr {
  transform: rotate(180deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-family: 'Outfit', sans-serif;
  font-size: .83rem;
  color: var(--ink-50);
  line-height: 1.8;
  padding: 0 20px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 18px
}


/* ── SERVICES ── */
#services {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px
}

.svc {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 28px 22px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.svc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s;
}

.svc:hover {
  border-color: var(--blue);
  transform: translateY(-3px)
}

.svc:hover::after {
  transform: scaleX(1)
}

.svc-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 14px;
}

.svc h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px
}

.svc p {
  font-family: 'Outfit', sans-serif;
  font-size: .77rem;
  color: var(--ink-50);
  line-height: 1.7
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  margin-top: 13px;
  transition: gap .2s;
}

.svc-link:hover {
  gap: 9px
}

/* ── CONTACT ── */
#contact {
  background: white
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 52px;
  align-items: start
}

.contact-head h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px
}

.contact-head p {
  font-family: 'Outfit', sans-serif;
  font-size: .86rem;
  color: var(--ink-50);
  line-height: 1.85;
  margin-bottom: 28px
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px
}

.ci {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r12);
  background: var(--off-white);
  transition: all .2s;
}

.ci:hover {
  border-color: var(--blue);
  transform: translateX(3px)
}

.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  flex-shrink: 0;
}

.ci-label {
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  color: var(--ink-30);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1px
}

.ci-val {
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink)
}

.socials {
  display: flex;
  gap: 8px
}

.soc {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-50);
  text-decoration: none;
  font-size: .9rem;
  transition: all .2s;
}

.soc:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateY(-3px)
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.ff label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: .73rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.ff input,
.ff textarea,
.ff select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r8);
  font-family: 'Outfit', sans-serif;
  font-size: .86rem;
  color: var(--ink);
  background: white;
  outline: none;
  transition: border-color .2s;
}

.ff input:focus,
.ff textarea:focus,
.ff select:focus {
  border-color: var(--blue);
  box-shadow: none;
}

.ff textarea {
  resize: vertical;
  min-height: 115px
}

.form-btn {
  background: var(--blue);
  color: white;
  border: 2px solid var(--blue);
  padding: 13px 24px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: none;
}

.form-btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px)
}

.form-msg-ok {
  background: var(--green-light);
  color: var(--green);
  padding: 13px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-msg-err {
  background: var(--red-light);
  color: var(--red);
  padding: 13px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── CTA BAND ── */
#cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #2563eb 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.cta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--r999);
  margin-bottom: 24px;
  border: 1px solid rgba(147, 197, 253, 0.2);
}

.cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: white;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
}

.cta h2 .hand {
  color: #60a5fa;
  font-size: 1.15em;
}

.cta p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 400;
}

.cta p strong {
  color: #fff;
  font-weight: 700;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-white {
  background: white;
  color: var(--blue-dark);
  padding: 13px 30px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  border: 2px solid white;
  box-shadow: none;
}

.btn-white:hover {
  background: transparent;
  color: white
}

.btn-ghost-white {
  background: transparent;
  color: white;
  padding: 13px 26px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .35);
  display: inline-flex;
  align-items: center;
  outline: none;
  transition: border-color .2s;
}

.ff input:focus,
.ff textarea:focus,
.ff select:focus {
  border-color: var(--blue);
  box-shadow: none;
}

.ff textarea {
  resize: vertical;
  min-height: 115px
}

.form-btn {
  background: var(--blue);
  color: white;
  border: 2px solid var(--blue);
  padding: 13px 24px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: none;
}

.form-btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px)
}

.form-msg-ok {
  background: var(--green-light);
  color: var(--green);
  padding: 13px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-msg-err {
  background: var(--red-light);
  color: var(--red);
  padding: 13px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── CTA BAND ── */
#cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #2563eb 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.cta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--r999);
  margin-bottom: 24px;
  border: 1px solid rgba(147, 197, 253, 0.2);
}

.cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: white;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
}

.cta h2 .hand {
  color: #60a5fa;
  font-size: 1.15em;
}

.cta p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 400;
}

.cta p strong {
  color: #fff;
  font-weight: 700;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-white {
  background: white;
  color: var(--blue-dark);
  padding: 13px 30px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  border: 2px solid white;
  box-shadow: none;
}

.btn-white:hover {
  background: transparent;
  color: white
}

.btn-ghost-white {
  background: transparent;
  color: white;
  padding: 13px 26px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.btn-ghost-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, .08)
}

/* ── FOOTER ── */
footer {
  background: white;
  color: var(--ink-50);
  border-top: 1px solid var(--border);
}

.foot-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px 60px;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 52px;
}

.foot-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.foot-logo img {
  height: 50px;
  width: auto;
}

.foot-brand p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
  color: var(--ink-50);
}

.foot-ci {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--ink-70);
}

.foot-ci i {
  color: var(--blue);
  font-size: 0.9rem;
}

.foot-ci a {
  color: var(--ink-70);
  text-decoration: none;
  transition: color .2s;
  font-weight: 500;
}

.foot-ci a:hover {
  color: var(--blue)
}

.foot-col-h {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 20px;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-50);
  text-decoration: none;
  transition: all .2s;
}

.foot-links a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-copy {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-50);
}

.foot-bottom-links {
  display: flex;
  gap: 24px
}

.foot-bottom-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-50);
  text-decoration: none;
  transition: color .2s
}

.foot-bottom-links a:hover {
  color: var(--blue)
}

.foot-socials {
  display: flex;
  gap: 8px
}

.foot-socials a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-50);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all .25s;
}

.foot-socials a:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateY(-2px)
}

/* ── WHATSAPP BUBBLE ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  transition: all 0.3s;
  border: 4px solid white;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  background: #128c7e;
  color: white;
}

.whatsapp-float i {
  font-size: 1.2rem;
}

.whatsapp-float span {
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 600px) {
  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 12px;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    justify-content: center;
  }
}

/* ── REVEAL ── */
.r {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease
}

.r.v {
  opacity: 1;
  transform: translateY(0)
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

/* ── RESPONSIVE ── */
@media(max-width:1080px) {
  .foot-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px
  }
}

@media(max-width:900px) {

  .nav-links,
  .nav-actions {
    display: none
  }

  .hamburger {
    display: flex
  }

  .steps {
    grid-template-columns: 1fr 1fr
  }

  .modules-grid,
  .pricing-grid {
    grid-template-columns: 1fr
  }

  .feat-grid {
    grid-template-columns: 1fr 1fr
  }

  .wf-layout {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .bundle-card {
    grid-template-columns: 1fr
  }

  .bundle-right {
    text-align: left
  }

  .sec-grid {
    grid-template-columns: 1fr
  }

  #hero::before,
  #hero::after {
    display: none
  }
}

@media(max-width:600px) {
  section {
    padding: 60px 0
  }

  .steps {
    grid-template-columns: 1fr
  }

  .feat-grid,
  .svc-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .foot-top {
    grid-template-columns: 1fr;
    padding: 44px 20px
  }

  .foot-bottom {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start
  }

  .cta-btns {
    flex-direction: column;
    align-items: center
  }

  .bundle-card {
    padding: 30px 24px
  }

  .hero-h1 {
    letter-spacing: -.03em
  }
}

/* ── ABOUT PAGE ── */
.ab-hero {
  padding: 64px 0 48px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.wrap-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.tag::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.ab-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.035em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 800;
}

.ab-hero p {
  font-size: .95rem;
  color: var(--ink-50);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.85;
}

.ab-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-soft);
}

.ab-section:last-of-type {
  border-bottom: none;
}

.ab-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ab-section h2 .ico {
  width: 36px;
  height: 36px;
  border-radius: var(--r8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

.ab-section p {
  font-size: .88rem;
  color: var(--ink-70);
  line-height: 1.9;
  margin-bottom: 14px;
}

.ab-section p:last-child {
  margin-bottom: 0;
}

.ab-section a:hover {
  border-color: var(--blue);
}

.ab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ab-card {
  background: white;
  padding: 40px;
  border-radius: var(--r20);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.ab-card:hover {
  border-color: var(--blue);
}

.ico-box {
  width: 48px;
  height: 48px;
  border-radius: var(--r12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.ab-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.ab-card p {
  font-size: 0.95rem;
  color: var(--ink-50);
  line-height: 1.7;
  margin: 0;
}

.founder-card {
  background: white;
  border-radius: var(--r24);
  padding: clamp(30px, 5vw, 60px);
  position: relative;
  border: 1px solid var(--border);
}

.quote-ico {
  font-size: 2.5rem;
  color: var(--blue-light);
  margin-bottom: 24px;
}

.founder-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px !important;
  font-style: italic;
}

.founder-meta {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.founder-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.1rem;
}

.founder-title {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-center h2 {
  justify-content: center;
}

@media (max-width: 768px) {
  .ab-grid {
    grid-template-columns: 1fr;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r20);
  overflow: hidden;
  margin: 48px 0;
}

.stat {
  background: white;
  padding: 32px 24px;
  text-align: center;
}

.stat:hover {
  background: var(--blue-light);
}

.stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.stat .lbl {
  font-size: .78rem;
  color: var(--ink-50);
  font-weight: 500;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r20);
  overflow: hidden;
  margin-top: 32px;
}

.val {
  background: white;
  padding: 30px 26px;
}

.val:hover {
  background: var(--off-white);
}

.val .vi {
  width: 38px;
  height: 38px;
  border-radius: var(--r8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  margin-bottom: 14px;
}

.val h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.val p {
  font-size: .8rem;
  color: var(--ink-50);
  line-height: 1.75;
  margin: 0;
}

.ab-cta {
  padding: 64px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--ink) 0%, #1a2140 100%);
  color: white;
}

.ab-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}

.ab-cta p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.ab-cta .btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--ink);
  padding: 13px 26px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  border: 2px solid white;
  box-shadow: none;
}

.btn-white:hover {
  background: transparent;
  color: white;
}

.btn-ghost-w {
  background: transparent;
  color: white;
  padding: 13px 26px;
  border-radius: var(--r8);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.btn-ghost-w:hover {
  border-color: white;
  background: rgba(255, 255, 255, .08);
}

@media(max-width:900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .values {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .ab-cta .btns {
    flex-direction: column;
  }
}

/* ── PRIVACY POLICY ── */
.pp-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pp-hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.pp-hero .tag::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.pp-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.035em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 800;
}

.pp-hero p {
  font-size: .95rem;
  color: var(--ink-50);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.pp-hero .updated {
  margin-top: 16px;
  font-size: .78rem;
  color: var(--ink-30);
  font-weight: 500;
}

.pp-hero .updated i {
  margin-right: 4px;
}

.pp-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 28px 80px;
}

.pp-section {
  margin-bottom: 44px;
}

.pp-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pp-section h2 .ico {
  width: 32px;
  height: 32px;
  border-radius: var(--r8);
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

.pp-section p {
  font-size: .88rem;
  color: var(--ink-70);
  line-height: 1.9;
  margin-bottom: 12px;
}

.pp-section ul {
  list-style: none;
  margin: 10px 0 14px;
}

.pp-section ul li {
  font-size: .86rem;
  color: var(--ink-70);
  line-height: 1.85;
  padding: 5px 0 5px 24px;
  position: relative;
}

.pp-section ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 6px;
  font-size: .65rem;
  color: var(--blue);
}

.pp-section a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(37, 99, 235, .3);
  transition: border-color .2s;
}

.pp-section a:hover {
  border-color: var(--blue);
}

.info-card {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r12);
  padding: 20px 24px;
  margin: 16px 0;
}

.info-card p {
  margin-bottom: 4px;
}

.info-card strong {
  color: var(--ink);
}

@media(max-width:600px) {
  .pp-content {
    padding: 40px 20px 60px;
  }

  .pp-hero {
    padding: 44px 0 32px;
  }
}

/* ── DOWNLOAD PAGE ── */
.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r999);
  border: 1px solid #bbf7d0;
  margin-bottom: 26px;
}

.success-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: none;
  }

  50% {
    box-shadow: none;
  }
}

.check-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
}

.check-ring i {
  font-size: 1.7rem;
  color: var(--green);
  animation: pop-in .5s cubic-bezier(.34, 1.56, .64, 1) .3s both;
}

.check-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(21, 128, 61, .2);
  animation: ring-expand 2.5s ease-in-out 0.3s infinite;
}

@keyframes ring-expand {
  0% {
    transform: scale(1);
    opacity: .6
  }

  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

.main-sub {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 22px;
  font-weight: 600;
  display: block;
}

.steps-layout {
  max-width: 900px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.steps-card {
  background: var(--ink);
  border-radius: var(--r20);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.steps-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .12);
  pointer-events: none;
}

.steps-card-tag {
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 14px;
}

.steps-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  letter-spacing: -.025em;
  margin-bottom: 32px;
  line-height: 1.25;
}

.next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.next-step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.ns-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .6);
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ns-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.ns-text p {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  color: rgba(255, 255, 255, .38);
  line-height: 1.65;
}

.sys-req-wrap {
  background: var(--off-white);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sys-req-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sys-req-item {
  display: flex;
  flex-direction: column;
  min-width: 140px;
  text-align: center;
}

.sys-req-tag-label {
  font-family: 'Poppins', sans-serif;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.sys-req-label {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.sys-req-val {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  color: var(--ink-50);
}

.sys-sep {
  width: 1px;
  background: var(--border);
  height: 40px;
  align-self: center;
  flex-shrink: 0;
}

@media(max-width:900px) {
  .steps-layout {
    grid-template-columns: 1fr;
  }

  .sys-sep {
    display: none;
  }

  .sys-req-item {
    width: 45%;
  }
}

@media(max-width:600px) {
  .sys-req-item {
    width: 100%;
  }
}

/* ── MODULE LANDING PAGES ── */
.lp-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.lp-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.lp-hero p {
  font-size: 1.05rem;
  color: var(--ink-50);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-p {
  text-align: center;
  color: var(--ink-50);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.for-item {
  background: var(--off-white);
  padding: 20px;
  border-radius: var(--r12);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border-soft);
}

.for-item i {
  color: var(--green);
}

.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
  border-radius: var(--r20);
  margin-bottom: 80px;
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

@media(max-width:900px) {
  .lp-hero h1 {
    font-size: 2.4rem;
  }
}

/* ── BLOG ── */
.blog-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}



.blog-hero p {
  font-size: 1.1rem;
  color: var(--ink-50);
  max-width: 600px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r20);
  overflow: hidden;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
  border-color: var(--blue-mid);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--off-white);
}

.blog-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-card p {
  font-size: .9rem;
  color: var(--ink-50);
  line-height: 1.6;
  margin-bottom: 24px;
}

.blog-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--ink-30);
  font-weight: 500;
}

.blog-meta i {
  font-size: .75rem;
}


/* ── BLOG POSTS ── */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 28px;
}

.blog-post .meta {
  display: flex;
  gap: 16px;
  font-size: .9rem;
  color: var(--ink-30);
  margin-bottom: 48px;
  font-weight: 500;
}

.blog-post h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
}

.blog-post h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 48px 0 20px;
  color: var(--ink);
}

.blog-post h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--ink);
}

.blog-post p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  color: var(--ink-70);
  line-height: 1.8;
}

.blog-post ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-post li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--ink-70);
}

.highlight-box {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--r16);
  padding: 32px;
  margin: 40px 0;
}

.highlight-box h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.post-cta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: white;
  padding: 48px;
  border-radius: var(--r20);
  text-align: center;
  margin-top: 60px;
}

.post-cta h2 {
  color: white;
  margin-top: 0;
  margin-bottom: 16px;
}

.post-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

@media(max-width:600px) {
  .blog-post h1 {
    font-size: 2.2rem;
  }

  .blog-post h2 {
    font-size: 1.5rem;
  }

  .highlight-box {
    padding: 24px;
  }

  .post-cta {
    padding: 32px 24px;
  }
}

/* ── ROADMAP STEPS (For Tutorials) ── */
.roadmap-step {
  border-left: 4px solid var(--blue);
  padding-left: 24px;
  margin-bottom: 48px;
  position: relative;
}

.step-badge {
  background: var(--blue);
  color: white;
  padding: 4px 12px;
  border-radius: var(--r999);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .7rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

/* -- FOUNDING MEMBER SECTION -- */
.founding-section {
  background: white;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.founding-watermark {
  position: absolute;
  right: -50px;
  top: -50px;
  font-size: 30rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;
  z-index: 0;
}

.founding-card {
  background: white;
  border-radius: var(--r20);
  padding: clamp(30px, 5vw, 60px);
  position: relative;
  z-index: 1;
  border: 4px solid var(--blue);
}

.founding-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 10%;
  right: 10%;
  height: 8px;
  background: var(--blue);
  border-radius: 99px;
}

.founding-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  align-items: center;
}

.founding-content {
  flex: 1;
  min-width: 300px;
}

.founding-stats {
  flex-basis: 300px;
  flex-shrink: 0;
  margin: 0 auto;
}

.founding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .founding-section {
    padding: 60px 0;
  }

  .founding-watermark {
    display: none;
  }

  .founding-card {
    padding: 32px 20px;
  }

  .founding-flex {
    gap: 40px;
  }

  .founding-content {
    text-align: center;
  }

  .founding-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .founding-content h2 {
    font-size: 1.8rem !important;
  }
}