/* ================================================================
   CODEXA — Global Styles
   Design tokens extracted from Figma node 421:5590
================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #2D6CDF;
  --blue-light:  #72A1EF;
  --blue-pale:   #B7D6FF;
  --ink:         #060C3C;
  --text:        #282828;
  --text-sub:    #2F2F2F;
  --muted:       #5D6180;
  --page:        #FAFAFA;
  --white:       #FFFFFF;
  --radius-pill: 999px;
  --shadow-nav:  0 14px 40px -18px rgba(6,12,59,.18);
  --shadow-card: 0 6px 30px -2px rgba(6,12,59,.08);
  --container-max: 1200px;
  --container-pad: clamp(16px, 4vw, 24px);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--page);
  min-width: 320px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.page-shell {
  min-height: 100vh;
  background: linear-gradient(to top, var(--page) 30%, #d9e8ff 90%, var(--blue-pale) 145%);
  padding-top: 50px;
}

.home-page-shell {
  padding-top: 0;
}

.about-page-shell,
.blog-page-shell {
  padding-top: 0;
}

.contact-page-shell,
.privacy-page-shell,
.terms-page-shell,
.refund-page-shell {
  padding-top: 0;
}

.icon-arrow-45 {
  transform: rotate(45deg);
}

/* ================================================================
   NAVBAR
================================================================ */

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 10px;
  z-index: 100;
  padding: 0 var(--container-pad);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px var(--container-pad);
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow-nav);
}

/* ---- Brand / Logo ---- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.brand-logo {
  width: 120px;
  height: auto;
  display: block;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-mark img { position: absolute; }

/* Main logo image */
.brand-mark img:nth-child(1) { inset: 0; width: 100%; height: 100%; }
/* Decorative vector overlays – exact inset % from Figma */
.brand-mark img:nth-child(2) { inset: 12% 73% 13% 7%;  }
.brand-mark img:nth-child(3) { inset: 22% 86% 23% 6%;  }
.brand-mark img:nth-child(4) { inset: 22% 72% 23% 19%; }
.brand-mark img:nth-child(5) { inset: 39% 74% 40% 22%; }
.brand-mark img:nth-child(6) { inset: 39% 88% 40% 8%;  }

.brand-type {
  display: grid;
  line-height: 1;
  color: var(--blue);
}

.brand-name {
  font-family: "Oxanium", sans-serif;
  font-size: 21.12px;
  font-weight: 400;
  line-height: 1;
}

.brand-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 5.73px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 6px;
  margin-top: 2px;
}

/* ---- Nav links ---- */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  width: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
  min-height: 44px;
}

.nav-link:hover { color: var(--blue); background: #EEF5FF; }

.nav-link.active {
  font-weight: 600;
  color: var(--blue);
}

.nav-link i {
  color: var(--blue);
  font-size: 12px;
}

/* Chevron icon inside Solutions link */
.chevron-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Mobile CTA (hidden on desktop) */
.nav-link.mobile-cta { display: none; }

/* ---- CTA button ---- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 18px 34px -22px rgba(45,108,223,.8);
}

.cta-btn:hover {
  background: #235FC8;
  transform: translateY(-1px);
  box-shadow: 0 22px 38px -20px rgba(45,108,223,1);
}

.w-fit {
  width: fit-content;
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}

.cta-icon img,
.cta-icon i {
  width: 12px;
  height: 12px;
  color: var(--blue);
  font-size: 12px;
}

/* Mobile hamburger (hidden on desktop) */
.nav-toggle,
.menu-button { display: none; }

/* ================================================================
   HERO SECTION
================================================================ */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: clamp(190px, 19vw, 275px); /* matches the Figma hero vertical rhythm */
  padding-bottom: 72px;
  overflow: hidden;
  background: linear-gradient(to top, #fafafa 30%, #c8dfff 90%, #b7d6ff 140%);
  isolation: isolate;
}

/* ---- Wave decoration (left & right) ---- */
.hero-wave {
  position: absolute;
  top: 50%;
  width: min(60vw, 900px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  transform: translateY(-50%);
}
.hero-wave { height: auto; }

.hero-wave-left  { right: 50%; }
.hero-wave-right {
  left: 50%;
  width: min(56vw, 840px);
  transform: translateY(-50%) rotateY(180deg);
}

/* ---- Dot-grid overlays ---- */
.grid-overlay {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.grid-top {
  top: 260px;
  width: 1110px;
  opacity: 0.37;
}

.grid-top img,
.grid-bottom img { width: 100%; }

.grid-bottom {
  top: 62%;
  width: 1157px;
  opacity: 0.25;
}

/* ---- Floating cards ---- */
.float-card {
  position: absolute;
  z-index: 5;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  font-family: "Inter", sans-serif;
  pointer-events: none;
  overflow: hidden;
}

/* Revenue Growth card — left middle */
.revenue-card {
  left: 118px;
  top: 395px;
  width: 178px;
  padding: 12px 12px 10px;
  border-radius: 4.5px;
}

.revenue-card .fc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.revenue-card .fc-title {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink);
}

.revenue-card .fc-badge {
  font-size: 8px;
  font-weight: 400;
  color: var(--muted);
}

.revenue-card .fc-chart {
  width: 100%;
  margin-top: 2px;
}

/* Daily Visitor card — top right */
.visitor-card {
  right: 120px;
  top: 117px;
  width: 85px;
  padding: 10px 10px 8px;
  border-radius: 4px;
}

.visitor-card .fc-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.visitor-card .fc-big {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
}

/* Project card — upper left */
.project-card {
  left: 174px;
  top: 145px;
  width: 70px;
  height: 96px;
  padding: 0;
  background: var(--white);
  border-radius: 7.793px;
  box-shadow: 3.542px 7.085px 21.255px 0 rgba(0,0,0,0.05);
  overflow: hidden;
}

.hero-widget-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.hero-widget-image {
  position: absolute;
  display: block;
  max-width: none;
}

.hero-widget-image--project {
  width: 717.34%;
  height: 392.34%;
  left: -358.67%;
  top: -56.96%;
}

.project-card .fc-label {
  font-size: 7.5px;
  color: var(--muted);
  margin-bottom: 2px;
}

.project-card .fc-big {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.fc-dot {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Sales Stats card — right middle */
.stats-card {
  right: 120px;
  top: 116px;
  width: 167px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.sales-card {
  right: 127px;
  top: 164px;
  width: 120px;
  padding: 10px 10px 8px;
  border-radius: 4px;
}

.sales-card .fc-title {
  display: block;
  font-size: 9.2px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.sales-card .fc-pie {
  width: 58px;
  height: 58px;
  margin: 0 auto 4px;
}

.fc-legend {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.fc-legend span {
  display: block;
  width: 8px;
  height: 4px;
  border-radius: 2px;
}

/* Growth card — right lower */
.growth-card {
  right: 249px;
  top: 413px;
  width: 97.682px;
  height: 73.385px;
  padding: 0;
  background: var(--white);
  border-radius: 7.4px;
  box-shadow: 5px 6px 26px 0 rgba(0,0,0,0.05);
  overflow: hidden;
}

.hero-widget-image--growth {
  width: 517.17%;
  height: 516.3%;
  left: -251.14%;
  top: -316.3%;
}

/* ---- Hero copy ---- */
.hero-body {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 903px;
  padding: 0 24px;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.hero-line1 {
  font-size: clamp(36px, 3.4vw, 48px);
  font-weight: 400;
  color: #000;
  text-transform: none;
  line-height: 1.15;
}

.hero-line2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(54px, 4.7vw, 64px);
  line-height: 1.02;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.hero-sub {
  max-width: 647px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.5;
  margin-bottom: 28px;
}

.hero-cta {
  /* inherits .cta-btn styles */
}

/* ================================================================
   RESPONSIVE
================================================================ */

@media (max-width: 1100px) {
  .site-header { inset: 16px 24px auto; }
  .nav-links { width: auto; gap: 4px; }
  .nav-link { font-size: 16px; padding: 8px; }
}

@media (max-width: 900px) {
  .site-header { inset: 12px 12px auto; }

  .menu-button {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #EEF5FF;
    color: var(--ink);
    cursor: pointer;
    order: 3;
  }

  .menu-button i {
    grid-area: 1/1;
    font-size: 18px;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .menu-button .fa-xmark {
    opacity: 0;
    transform: rotate(-45deg) scale(.7);
  }

  /* Slide-down menu */
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-nav);
    gap: 2px;
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .nav-link { justify-content: space-between; min-height: 44px; padding: 10px 14px; }
  .nav-link.mobile-cta { display: flex; background: var(--blue); color: #fff; border-radius: var(--radius-pill); font-weight: 600; margin-top: 6px; }
  .nav-link.mobile-cta i { color: var(--white); }

  .nav-toggle:checked ~ .nav-links {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-toggle:checked + .menu-button .fa-bars {
    opacity: 0; transform: rotate(45deg) scale(.7);
  }
  .nav-toggle:checked + .menu-button .fa-xmark {
    opacity: 1; transform: rotate(0deg) scale(1);
  }

  .cta-btn.nav-demo { display: none; }

  /* Hero adjustments for sm and md */
  .hero { 
    min-height: 100vh; 
    padding-top: 120px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
  }
  .hero-wave, .grid-overlay { display: none; }
  .float-card { display: none; }
  .hero-body { 
    width: 100%; 
    max-width: 100%; 
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    padding: 0 10px;
  }

  .navbar {
    padding: 10px 12px;
  }

  .brand-logo {
    width: 112px;
  }

  .hero { padding-top: 100px; }
  .hero-line2 { white-space: normal; }
}

/* ================================================================
   LEADS CRM HERO (Solutions Page)
=============================================================== */

.leads-hero {
  position: relative;
  padding: 76px 0 88px;
  overflow: hidden;
}

.leads-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 456px) minmax(460px, 1fr);
  align-items: center;
  gap: 54px;
}

.leads-hero-bg {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.42;
  z-index: 1;
}

.leads-hero-bg-right {
  width: 820px;
  max-width: 58vw;
  right: -160px;
  top: 34px;
}

.leads-hero-bg-left {
  width: 980px;
  max-width: 66vw;
  left: -520px;
  top: 198px;
  opacity: 0.28;
}

.leads-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 456px;
}

.leads-hero-title {
  font-size: 44px;
  font-weight: 400;
  color: #000;
  line-height: 1.12;
  margin: 0;
}

.leads-hero-tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.15;
  margin: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leads-hero-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.5;
  margin: 0;
  max-width: 440px;
}

.leads-hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 0;
  flex-wrap: wrap;
}

.leads-cta-primary {
  min-width: 228px;
  justify-content: center;
}

.leads-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 134px;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  font-size: 16px;
  font-weight: 500;
  transition: all 200ms ease;
  cursor: pointer;
}

.leads-cta-secondary:hover {
  background: var(--blue);
  color: var(--white);
}

.leads-pricing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  flex-shrink: 0;
}

.leads-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
}

.leads-visual-container {
  position: relative;
  width: 100%;
  max-width: 774px;
  min-height: 476px;
}

.leads-mockup {
  width: 615px;
  height: auto;
  margin: 34px 0 0 122px;
  border-radius: 8px;
  border: 8px solid rgba(183, 214, 255, 0.3);
  box-shadow: 0 24px 80px rgba(6,12,59,0.08);
}

/* Floating Cards */
.leads-card {
  position: absolute;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(6,12,59,0.08);
  padding: 12px;
  font-size: 12px;
}

.leads-card-header {
  margin-bottom: 8px;
}

.leads-card-label {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.leads-card h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.leads-card-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

/* Revenue Growth Card - Top Left */
.leads-card-revenue {
  top: 136px;
  left: 0;
  width: 186px;
  padding: 12px;
}

.leads-card-chart {
  margin-top: 8px;
  height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 4px;
}

.leads-card-chart img {
  height: 100%;
  width: auto;
}

/* Sales Stats Card - Bottom Right */
.leads-card-stats {
  right: 0;
  bottom: 0;
  width: 140px;
}

.leads-stats-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.stat-bar {
  height: 20px;
  border-radius: 6px;
}

.stat-bar-pink { background: #ff81ab; }
.stat-bar-blue { background: #528afd; }
.stat-bar-purple { background: #9577fb; }
.stat-bar-yellow { background: #fcd862; }

/* Daily Visitors Card - Right Middle */
.leads-card-visitors {
  right: 0;
  bottom: 74px;
  width: 98px;
  text-align: left;
}

/* Total Subscribe Card - Top Right */
.leads-card-subscribe {
  top: 0;
  right: 44px;
  width: 130px;
  background: rgba(102, 169, 255, 0.1);
  border-radius: 10px;
  text-align: left;
  padding: 10px;
}

/* Responsive */
@media (max-width: 1100px) {
  .leads-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .leads-hero-content {
    max-width: 100%;
  }
  .leads-hero-title { font-size: 40px; }
  .leads-hero-tagline { font-size: 40px; }
  .leads-hero-visual {
    min-width: 0;
  }
  .leads-visual-container {
    max-width: 700px;
    min-height: 420px;
    margin: 0 auto;
  }
  .leads-mockup {
    width: 560px;
    margin: 30px 0 0 96px;
  }
  .leads-card {
    padding: 10px;
    font-size: 11px;
  }
  .leads-card-revenue { top: 120px; }
  .leads-card-visitors { bottom: 60px; }
}

@media (max-width: 768px) {
  .leads-hero {
    padding: 46px 0 52px;
  }
  .leads-hero-bg {
    display: none;
  }
  .leads-hero-inner {
    gap: 28px;
  }
  .leads-hero-content {
    align-items: flex-start;
    text-align: left;
  }
  .leads-hero-title { font-size: 34px; }
  .leads-hero-tagline { font-size: 42px; }
  .leads-hero-ctas {
    gap: 12px;
  }
  .leads-cta-primary,
  .leads-cta-secondary {
    min-width: 0;
  }
  .leads-visual-container {
    max-width: 100%;
    min-height: 0;
  }
  .leads-mockup {
    width: 100%;
    margin: 0;
    border-width: 6px;
  }
  .leads-card {
    transform: scale(0.84);
    transform-origin: center;
  }
  .leads-card-revenue {
    top: 4%;
    left: -4%;
  }
  .leads-card-subscribe {
    top: -2%;
    right: -2%;
  }
  .leads-card-visitors {
    right: -3%;
    bottom: 12%;
  }
  .leads-card-stats {
    right: 1%;
    bottom: -2%;
  }
}

@media (max-width: 520px) {
  .leads-hero {
    padding: 36px 0 44px;
  }
  .leads-hero-title { font-size: 31px; }
  .leads-hero-tagline { font-size: 35px; }
  .leads-hero-desc {
    font-size: 13px;
  }
  .leads-hero-ctas {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .leads-cta-primary,
  .leads-cta-secondary {
    width: auto;
  }
  .leads-card {
    transform: scale(0.72);
  }
  .leads-card-revenue {
    left: -10%;
  }
  .leads-card-subscribe,
  .leads-card-visitors {
    right: -10%;
  }
  .leads-card-stats {
    right: -3%;
  }
}

/* ================================================================
   SOLUTIONS SECTION
=============================================================== */

.features-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  background: #FAFAFA;
}

.features-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.fb-grid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
}

.fb-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(45, 108, 223, 0.08) 0%, transparent 70%);
  filter: blur(80px);
}

.features-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}


.solutions-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.features-header {
  padding-top: 4px;
}

.sh-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sh-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(45, 108, 223, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(45, 108, 223, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(45, 108, 223, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 108, 223, 0); }
}


.sh-tag span {
  font-size: 19px;
  font-weight: 500;
  color: #0a0a0a;
}

.sh-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: #111;
  line-height: 1.1;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sh-title span {
  display: block;
}

.gradient-text {
  background: linear-gradient(90deg, #2D6CDF 0%, #72A1EF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sh-italic {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.1em;
  margin-top: -4px;
}



.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--blue-pale);
  box-shadow: 0 20px 50px rgba(45, 108, 223, 0.1);
}

.fc-visual {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  background: #F8FAFF;
  border: 1px solid #EEF2F8;
  position: relative;
}

.fc-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-img {
  width: 80%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.fc-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card:hover .fc-img {
  transform: scale(1.05);
}

.fc-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.01em;
}

.fc-content p {
  font-size: 16px;
  color: #5D6180;
  line-height: 1.6;
}


.features-cta {
  gap: 10px;
  padding: 12px 14px 12px 24px;
  min-height: 46px;
}

.features-cta .cta-icon {
  width: 30px;
  height: 30px;
}

.features-cta .cta-icon i {
  font-size: 14px;
}

/* shared illustration primitives */
.illus-window,
.illus-network-frame,
.illus-password-frame,
.illus-analytics-frame,
.illus-grid-frame {
  position: absolute;
  border: 4px solid #efefef;
  border-radius: 2px;
  background: #fff;
}

.illus-window::before,
.illus-network-window::before,
.illus-password-window::before,
.illus-analytics-window::before,
.illus-grid-window::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 8px;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: #d9d9d9;
  box-shadow: 9px 0 0 #d9d9d9, 18px 0 0 #d9d9d9;
}

.illus-window::after,
.illus-network-window::after,
.illus-password-window::after,
.illus-analytics-window::after,
.illus-grid-window::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 10px;
  width: 12px;
  height: 4px;
  border-radius: 999px;
  background: #d9d9d9;
}

/* card 1 */
.feature-illus-window .illus-window-back {
  left: 14%;
  top: 16%;
  width: 42%;
  height: 49%;
}

.feature-illus-window .illus-window-front {
  left: 22%;
  top: 22%;
  width: 46%;
  height: 48%;
  border: 4px solid #efefef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 30, 52, 0.06);
}

.illus-window-bar,
.illus-text-line,
.illus-line,
.illus-stat-line {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.illus-window-bar {
  left: 18px;
  top: 34px;
  width: 74%;
  height: 8px;
  background: #e7e7e7;
}

.illus-line {
  left: 18px;
  height: 6px;
  background: #e5e5e5;
}

.line-a { top: 62px; width: 52%; }
.line-b { top: 80px; width: 58%; }
.line-c { top: 106px; width: 31%; background: var(--blue); }
.line-d { top: 124px; width: 56%; background: #8db7ff; }

.illus-chart-card {
  position: absolute;
  left: 42%;
  bottom: 8%;
  width: 42%;
  height: 36%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(17, 30, 52, 0.10);
}

.illus-chart-card .illus-axis {
  position: absolute;
  left: 18px;
  bottom: 14px;
  width: 2px;
  height: 72%;
  background: #7eb1ff;
}

.illus-chart-card .illus-grid {
  position: absolute;
  inset: 16px 14px 14px 18px;
  background:
    linear-gradient(to right, rgba(189, 207, 235, 0.9) 1px, transparent 1px),
    linear-gradient(to top, rgba(189, 207, 235, 0.9) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.55;
}

.illus-chart-card .illus-area {
  position: absolute;
  left: 15px;
  right: 12px;
  bottom: 14px;
  height: 66%;
  background: linear-gradient(180deg, rgba(45, 108, 223, 0.2) 0%, rgba(45, 108, 223, 0.9) 100%);
  clip-path: polygon(0 88%, 18% 66%, 29% 70%, 40% 58%, 55% 62%, 67% 49%, 77% 41%, 90% 14%, 100% 0, 100% 100%, 0 100%);
  border-radius: 12px 12px 0 0;
}

/* card 2 */
.feature-illus-network .illus-network-frame {
  left: 14%;
  top: 12%;
  width: 49%;
  height: 56%;
  border-style: dotted;
  background: transparent;
}

.feature-illus-network .illus-network-window {
  position: absolute;
  right: 18%;
  top: 20%;
  width: 58%;
  height: 54%;
  border: 4px solid #efefef;
  background: #fff;
  box-shadow: 0 16px 32px rgba(17, 30, 52, 0.06);
}

.illus-network-center,
.illus-node,
.illus-logo-square {
  position: absolute;
  display: block;
}

.illus-network-center {
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 16px 24px rgba(45, 108, 223, 0.22);
}

.illus-network-center::before,
.illus-network-center::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 24px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 4px;
  box-shadow: 12px 10px 0 #e7e7e7;
}

.illus-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eee;
}

.node-a { left: 18%; top: 26%; width: 38px; height: 38px; }
.node-b { right: 18%; top: 27%; width: 30px; height: 30px; }
.node-c { left: 15%; bottom: 18%; width: 32px; height: 32px; }
.node-d { right: 16%; bottom: 18%; width: 34px; height: 34px; }
.node-e { left: 47%; top: 15%; }
.node-f { left: 47%; bottom: 11%; }

.illus-connector {
  position: absolute;
  display: block;
  height: 4px;
  background: rgba(110, 164, 255, 0.55);
  transform-origin: left center;
}

.conn-a { left: 40%; top: 41%; width: 24%; transform: rotate(-156deg); }
.conn-b { left: 58%; top: 41%; width: 24%; transform: rotate(-24deg); }
.conn-c { left: 37%; top: 53%; width: 25%; transform: rotate(152deg); }
.conn-d { left: 58%; top: 53%; width: 25%; transform: rotate(28deg); }
.conn-e { left: 49%; top: 24%; width: 18%; transform: rotate(90deg); }
.conn-f { left: 49%; top: 55%; width: 19%; transform: rotate(90deg); }

.illus-logo-square {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(17, 30, 52, 0.18);
}

.square-a { left: 50%; top: 46%; transform: translate(-50%, -50%) rotate(0deg); }
.square-b { left: 57%; top: 52%; transform: translate(-50%, -50%); }

/* card 3 */
.feature-illus-password .illus-password-frame {
  left: 10%;
  top: 18%;
  width: 44%;
  height: 53%;
  border-style: dotted;
  background: transparent;
}

.feature-illus-password .illus-password-window {
  position: absolute;
  left: 16%;
  top: 12%;
  width: 39%;
  height: 60%;
  border: 4px solid #efefef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(17, 30, 52, 0.05);
}

.feature-illus-password .illus-window-bar {
  top: 32px;
  width: 50%;
}

.illus-text-line.small {
  left: 16px;
  top: 60px;
  width: 36%;
  height: 5px;
  background: #e6e6e6;
}

.illus-text-line.small.alt {
  top: 100px;
  width: 42%;
}

.illus-password-pill {
  position: absolute;
  left: 16px;
  top: 76px;
  width: 74%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b5caf7 0%, #e7eefc 100%);
}

.feature-illus-password .illus-password-pill:last-of-type {
  top: 118px;
}

.illus-button {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 18px;
  padding: 0 8px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 7px;
  font-weight: 600;
}

.illus-password-strip {
  position: absolute;
  left: 28%;
  top: 36%;
  width: 54%;
  height: 32px;
  border-radius: 6px;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(45, 108, 223, 0.18);
}

.illus-password-strip::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 13px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 16px 0 0 #fff, 32px 0 0 #fff, 48px 0 0 rgba(255,255,255,0.7), 64px 0 0 rgba(255,255,255,0.7), 80px 0 0 rgba(255,255,255,0.7);
}

/* card 4 */
.feature-illus-analytics .illus-analytics-frame {
  left: 14%;
  top: 14%;
  width: 50%;
  height: 53%;
  border-style: dotted;
  background: transparent;
}

.feature-illus-analytics .illus-analytics-window {
  position: absolute;
  left: 20%;
  top: 18%;
  width: 50%;
  height: 53%;
  border: 4px solid #efefef;
  background: #fff;
  box-shadow: 0 16px 32px rgba(17, 30, 52, 0.06);
}

.illus-column {
  position: absolute;
  bottom: 18px;
  width: 12px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(45,108,223,0.35) 0%, rgba(45,108,223,0.95) 100%);
}

.column-a { left: 32px; height: 28%; }
.column-b { left: 54px; height: 42%; }
.column-c { left: 76px; height: 36%; }
.column-d { left: 98px; height: 52%; }
.column-e { left: 120px; height: 18%; }
.column-f { left: 142px; height: 32%; }
.column-g { left: 164px; height: 46%; }

.illus-donut {
  position: absolute;
  right: -12px;
  top: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at center, transparent 28px, #fff 29px), conic-gradient(from 220deg, rgba(45,108,223,0.25) 0 72%, rgba(45,108,223,0.95) 72% 100%);
  box-shadow: 0 16px 30px rgba(17, 30, 52, 0.08);
}

.illus-stat-card {
  position: absolute;
  left: 12%;
  bottom: 20px;
  width: 44%;
  height: 34%;
  border-radius: 16px;
  background: var(--blue);
  box-shadow: 0 16px 32px rgba(45, 108, 223, 0.20);
}

.illus-stat-card .illus-stat-line {
  left: 16px;
  top: 18px;
  width: 42%;
  height: 6px;
  background: rgba(255,255,255,0.92);
}

.illus-stat-card .illus-stat-line.short {
  top: 33px;
  width: 20%;
  background: rgba(255,255,255,0.45);
}

.illus-stat-bars {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 44%;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.illus-stat-bars span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: rgba(255,255,255,0.72);
}

.illus-stat-bars span:nth-child(1) { height: 34%; }
.illus-stat-bars span:nth-child(2) { height: 54%; }
.illus-stat-bars span:nth-child(3) { height: 80%; }
.illus-stat-bars span:nth-child(4) { height: 60%; }
.illus-stat-bars span:nth-child(5) { height: 92%; }
.illus-stat-bars span:nth-child(6) { height: 48%; }

/* card 5 */
.feature-illus-grid .illus-grid-frame {
  left: 16%;
  top: 14%;
  width: 50%;
  height: 53%;
  border-style: dotted;
  background: transparent;
}

.feature-illus-grid .illus-grid-window {
  position: absolute;
  right: 16%;
  top: 18%;
  width: 54%;
  height: 52%;
  border: 4px solid #efefef;
  background: #fff;
  box-shadow: 0 16px 32px rgba(17, 30, 52, 0.06);
}

.illus-grid-item {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #ececec;
}

.feature-illus-grid .illus-grid-window .active { left: 16px; top: 38px; background: var(--blue); }
.feature-illus-grid .illus-grid-window .illus-grid-item:nth-of-type(3) { left: 54px; top: 38px; }
.feature-illus-grid .illus-grid-window .illus-grid-item:nth-of-type(4) { left: 92px; top: 38px; }
.feature-illus-grid .illus-grid-window .illus-grid-item:nth-of-type(5) { left: 130px; top: 38px; }
.feature-illus-grid .illus-grid-window .illus-grid-item:nth-of-type(6) { left: 16px; top: 76px; }
.feature-illus-grid .illus-grid-window .illus-grid-item:nth-of-type(7) { left: 54px; top: 76px; }
.feature-illus-grid .illus-grid-window .illus-grid-item:nth-of-type(8) { left: 92px; top: 76px; }
.feature-illus-grid .illus-grid-window .illus-grid-item:nth-of-type(9) { left: 130px; top: 76px; }

.illus-grid-tile {
  position: absolute;
  right: 10%;
  bottom: 16%;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(17, 30, 52, 0.08);
}

.illus-grid-mark {
  position: absolute;
  left: 22px;
  top: 18px;
  width: 16px;
  height: 36px;
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(180deg, #1dd4f6 0%, #8a4dff 100%);
  transform: rotate(45deg);
}

.illus-grid-mark.mark-b {
  left: 30px;
  top: 18px;
  background: linear-gradient(180deg, #e74cff 0%, #ffb84d 100%);
  transform: rotate(225deg);
}

.illus-grid-mark.mark-c {
  left: 26px;
  top: 18px;
  width: 12px;
  background: linear-gradient(180deg, #35f0d3 0%, #18c4f0 100%);
  transform: rotate(180deg);
}

/* ================================================================
   SOLUTIONS RESPONSIVE
=============================================================== */

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 24px;
  }

  .sh-title {
    font-size: 32px;
  }
}


/* ================================================================
   HOME SOLUTIONS SECTION
=============================================================== */

.solutions-section:not(.features-section) {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 74px var(--container-pad) 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

.solutions-section:not(.features-section) .solutions-header {
  gap: 24px;
}

.solutions-section:not(.features-section) .sh-tag span {
  font-size: 20px;
}

.solutions-section:not(.features-section) .sh-title {
  gap: 4px;
}

.solutions-section:not(.features-section) .sh-title > span:first-child {
  font-size: clamp(30px, 2.5vw, 32px);
  line-height: 1;
}

.solutions-section:not(.features-section) .solutions-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.solutions-section:not(.features-section) .solution-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  width: 100%;
  min-height: 456px;
  padding: 40px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 80px rgba(10, 18, 48, 0.06);
}

.solutions-section:not(.features-section) .solution-card.sc-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.solutions-section:not(.features-section) .sc-content,
.solutions-section:not(.features-section) .sc-visual {
  min-width: 0;
  width: 100%;
}

.solutions-section:not(.features-section) .sc-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.solutions-section:not(.features-section) .sc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.solutions-section:not(.features-section) .sc-header h3 {
  font-size: clamp(34px, 3.4vw, 40px);
  line-height: 1;
}

.solutions-section:not(.features-section) .sc-header h4 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--text);
}

.solutions-section:not(.features-section) .sc-desc {
  max-width: 610px;
  font-size: 16px;
  line-height: 1.45;
  color: #181818;
}

.solutions-section:not(.features-section) .sc-desc .font-light {
  font-weight: 400;
  color: #545454;
}

.solutions-section:not(.features-section) .sc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.solutions-section:not(.features-section) .sc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #282828;
}

.solutions-section:not(.features-section) .icon-circle {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f6f6f6;
  flex: 0 0 auto;
}

.solutions-section:not(.features-section) .icon-circle img {
  width: 12.8px;
  height: 12.8px;
}

.solutions-section:not(.features-section) .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 14px 12px 20px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 18px 34px -22px rgba(45, 108, 223, 0.75);
}

.solutions-section:not(.features-section) .btn-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  flex: 0 0 auto;
}

.solutions-section:not(.features-section) .btn-icon img {
  width: 14px;
  height: 14px;
}

.solutions-section:not(.features-section) .sc-visual {
  display: flex;
  align-items: stretch;
}

.solutions-section:not(.features-section) .sc-visual-inner {
  position: relative;
  width: 100%;
  min-height: 376px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(135deg, rgba(250, 252, 255, 0.98) 0%, rgba(210, 227, 251, 0.8) 45%, rgba(168, 201, 249, 0.45) 100%);
}

.solutions-section:not(.features-section) .sc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  pointer-events: none;
}

.solutions-section:not(.features-section) .sc-visual-title {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.solutions-section:not(.features-section) .sc-visual-title .sh-italic {
  font-size: 36px;
}

.solutions-section:not(.features-section) .sc-visual-title span {
  font-size: 16px;
  color: #525252;
}

.solutions-section:not(.features-section) .sc-mockup {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(92%, 510px);
  max-width: 510px;
  border: 3px solid #b7d6ff;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(6, 12, 59, 0.06);
}

@media (max-width: 1100px) {
  .solutions-section:not(.features-section) {
    padding: 64px 32px 76px;
  }

  .solutions-section:not(.features-section) .solution-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px;
  }

  .solutions-section:not(.features-section) .solution-card.sc-reverse {
    grid-template-columns: 1fr;
  }

  .solutions-section:not(.features-section) .sc-content {
    width: 100%;
    max-width: none;
  }

  .solutions-section:not(.features-section) .sc-visual-inner {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .solutions-section:not(.features-section) {
    padding: 54px 20px 64px;
    gap: 34px;
  }

  .solutions-section:not(.features-section) .solutions-header {
    gap: 18px;
  }

  .solutions-section:not(.features-section) .sh-tag span {
    font-size: 16px;
  }

  .solutions-section:not(.features-section) .sh-title > span:first-child {
    font-size: 26px;
  }

  .solutions-section:not(.features-section) .solutions-header .sh-italic {
    font-size: 34px;
  }

  .solutions-section:not(.features-section) .solution-card {
    padding: 22px 18px;
    border-radius: 28px;
  }

  .solutions-section:not(.features-section) .sc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .solutions-section:not(.features-section) .sc-header h4 {
    font-size: 20px;
  }

  .solutions-section:not(.features-section) .sc-desc,
  .solutions-section:not(.features-section) .sc-features li,
  .solutions-section:not(.features-section) .btn-primary,
  .solutions-section:not(.features-section) .sc-visual-title span {
    font-size: 15px;
  }

  .solutions-section:not(.features-section) .sc-visual-inner {
    min-height: 300px;
    border-radius: 28px;
  }

  .solutions-section:not(.features-section) .sc-visual-title {
    top: 22px;
  }

  .solutions-section:not(.features-section) .sc-visual-title .sh-italic {
    font-size: 28px;
  }

  .solutions-section:not(.features-section) .sc-mockup {
    bottom: 18px;
    width: calc(100% - 28px);
  }
}

/* ================================================================
   PRICING SECTION (Solutions)
=============================================================== */

.pricing-section {
  position: relative;
  background: rgba(183, 214, 255, 0.15);
  padding: 72px 0 64px;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 192px;
  background: url("../assets/faq/faq-bg-vector.svg") top center / cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.pricing-container {
  position: relative;
  z-index: 2;
  max-width: 1282px;
}

.pricing-header {
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: end;
}

.pricing-card {
  background: #fff;
  border: 1px solid #eaf0fc;
  border-radius: 16px;
  padding: 23px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 420px;
}

.pricing-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 36px;
  line-height: 0.9;
  color: #0a0a0a;
}

.pricing-desc {
  font-size: 16px;
  line-height: 1.35;
  color: #4a5565;
}

.pricing-cost {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: #0a0a0a;
}

.pricing-cost .currency {
  font-size: 24px;
  line-height: 1;
}

.pricing-cost .amount {
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
}

.pricing-cost .period {
  font-size: 14px;
  color: #6a7282;
  line-height: 1.1;
  margin-bottom: 4px;
}

.pricing-btn {
  height: 44px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.pricing-btn-outline {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
}

.pricing-btn-solid {
  background: var(--blue);
  color: #fff;
}

.pricing-btn-solid .cta-icon {
  width: 20px;
  height: 20px;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #364153;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.pricing-list i {
  font-size: 12px;
  color: #364153;
}

.pricing-card-featured {
  padding: 0;
  border-color: var(--blue);
  overflow: hidden;
  min-height: 494px;
}

.pricing-badge {
  height: 42px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
}

.pricing-featured-inner {
  padding: 23px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SOLUTIONS FEATURES FINAL (Figma 178:1868) */
.solutions-page .features-section,
body .solutions-section.features-section {
  background: #fafafa;
  padding: 64px var(--container-pad);
  gap: 48px;
}

.solutions-section.features-section .solutions-header {
  gap: 24px;
}

.solutions-section.features-section .sh-tag span {
  font-size: 20px;
}

.solutions-section.features-section .sh-title {
  gap: 4px;
}

.solutions-section.features-section .sh-title > span:first-child {
  font-size: 32px;
  font-weight: 400;
}

.solutions-section.features-section .sh-title .sh-italic {
  font-size: 48px;
}

.solutions-section.features-section .feature-grid {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 24px;
}

.solutions-section.features-section .feature-card {
  background: #fff;
  border-radius: 30px;
  border: 1px solid #eef2f8;
  box-shadow: none;
  padding: 20px;
  gap: 32px;
  min-height: 415px;
}

.solutions-section.features-section .feature-card--wide {
  grid-column: span 3;
  min-height: 391px;
}

.solutions-section.features-section .feature-card:not(.feature-card--wide) {
  grid-column: span 2;
}

.feature-shot {
  width: 100%;
  height: 255px;
  border-radius: 12px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: #fff;
}

.feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-section.features-section .feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: #000;
}

.solutions-section.features-section .feature-card p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: #000;
}

.solutions-section.features-section .features-cta {
  width: 228px;
}

@media (max-width: 1100px) {
  .solutions-section.features-section .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solutions-section.features-section .feature-card,
  .solutions-section.features-section .feature-card--wide,
  .solutions-section.features-section .feature-card:not(.feature-card--wide) {
    grid-column: span 1;
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .solutions-section.features-section {
    padding: 56px 16px;
  }

  .solutions-section.features-section .feature-grid {
    grid-template-columns: 1fr;
  }

  .solutions-section.features-section .sh-title > span:first-child {
    font-size: 28px;
  }

  .solutions-section.features-section .sh-title .sh-italic {
    font-size: 38px;
  }

  .feature-shot {
    height: 220px;
  }

  .solutions-section.features-section .feature-card p {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card,
  .pricing-card-featured {
    min-height: auto;
  }
}

/* ================================================================
   INTEGRATIONS SECTION
=============================================================== */

.integrations-section {
  position: relative;
  width: 100%;
  background: var(--white);
  padding: 64px var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.integrations-header {
  padding-top: 4px;
}

.integrations-stage {
  position: relative;
  width: min(1008px, 100%);
  height: 395px;
}

.integrations-lines {
  position: absolute;
  inset: 44px 0 0;
  width: 100%;
  height: 308px;
  overflow: visible;
}

.integrations-lines path {
  fill: none;
  stroke: #e9ebf1;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integration-node {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  border: 1px solid #e9ebf1;
  background: var(--white);
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 2;
}

.integration-node img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.integration-node-frame {
  display: none;
}

.integration-node--top-left { left: 0; top: 0; }
.integration-node--top-mid-left { left: 21.43%; top: 0; }
.integration-node--middle-left { left: 25.89%; top: 38.86%; }
.integration-node--bottom-left { left: 0; bottom: 0; }
.integration-node--bottom-mid-left { left: 21.43%; bottom: 0; }
.integration-node--top-right { right: 0; top: 0; }
.integration-node--top-mid-right { right: 21.43%; top: 0; }
.integration-node--middle-right { right: 25.89%; top: 38.86%; }
.integration-node--bottom-mid-right { right: 21.43%; bottom: 0; }
.integration-node--bottom-right { right: 0; bottom: 0; }

.integration-center {
  position: absolute;
  left: 50%;
  top: 43.8%;
  transform: translate(-50%, -50%);
  width: 124px;
  height: 124px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #e9ebf1;
  box-shadow: 0 0 0 8px #fff, 0 16px 132px rgba(55, 113, 200, 0.3);
  display: grid;
  place-items: center;
  z-index: 3;
}

.integration-center-shell {
  width: calc(100% - 42px);
  height: calc(100% - 42px);
  border-radius: inherit;
  display: grid;
  place-items: center;
}

.integration-center-mark {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.integrations-cta {
  width: 228px;
  justify-content: center;
  padding: 12px 18px;
}

@media (max-width: 900px) {
  .integrations-stage {
    height: 340px;
  }

  .integrations-lines {
    inset: 36px 0 0;
  }

  .integration-node {
    width: 70px;
    height: 70px;
  }

  .integration-node img {
    width: 28px;
    height: 28px;
  }

  .integration-center {
    width: 102px;
    height: 102px;
  }

  .integration-center-mark {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 720px) {
  .integrations-section {
    padding: 56px 20px 64px;
    gap: 26px;
  }

  .integrations-stage {
    height: 300px;
  }

  .integration-node {
    width: 58px;
    height: 58px;
  }

  .integration-node img {
    width: 24px;
    height: 24px;
  }

  .integration-center {
    width: 88px;
    height: 88px;
    box-shadow: 0 0 0 6px #fff, 0 12px 96px rgba(55, 113, 200, 0.24);
  }

  .integration-center-shell {
    width: calc(100% - 28px);
    height: calc(100% - 28px);
  }

  .integration-center-mark {
    width: 28px;
    height: 28px;
  }

  .integrations-cta {
    width: 100%;
    max-width: 228px;
  }
}

/* ================================================================
   LOGOS SECTION
=============================================================== */

.logos-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: var(--page);
  overflow: hidden;
  width: 100%;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  max-width: 1440px;
  overflow: hidden;
  /* Subtle fade out on the edges */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}

/* Pause on hover */
.marquee-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  padding: 0 45px; /* Creates a 90px gap between logos */
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
  height: auto;
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.animate-scroll-left {
  animation: scrollLeft 60s linear infinite;
}

.animate-scroll-right {
  animation: scrollRight 60s linear infinite;
}

.team-marquee-left:hover .animate-scroll-left,
.team-marquee-right:hover .animate-scroll-right {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .logos-section {
    padding: 50px 0;
  }
  .logo-item {
    padding: 0 25px; /* Creates a 50px gap on mobile */
    max-height: 40px; /* Scale down logos a bit on mobile */
  }
}

/* ================================================================
   FEATURES SECTION
=============================================================== */

.features-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px var(--container-pad) 120px;
  background: rgba(102, 169, 255, 0.05);
  overflow: hidden;
}

.features-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.fb-grid {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1440px;
  opacity: 0.6;
}

.fb-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(114, 161, 239, 0.15) 0%, transparent 70%);
}

.features-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1284px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--white);
  padding: 20px;
  border-radius: 30px;
  width: 100%;
}

.fc-visual {
  position: relative;
  height: 255px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 0 4px var(--white), 0 12px 96px 0 rgba(6, 11, 19, 0.06);
}

.fc-visual-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #e9ebf1;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center top;
}

.fc-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 4px 12px;
}

.fc-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.fc-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

/* ================================================================
   FEATURES RESPONSIVE
=============================================================== */

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 20px 80px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ================================================================
   TESTIMONIALS SECTION
=============================================================== */

.testimonials-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 24px 104px;
  background: linear-gradient(to bottom, #ffffff 0%, #e1edff 100%);
  overflow: hidden;
}

.testimonials-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1284px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  padding: 26px;
  border-radius: 16px;
  border: 1px solid #e9ebf1;
  box-shadow: 0px 12px 40px 0px rgba(6, 11, 19, 0.04), 0px 0px 0px 4px white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 16px 48px 0px rgba(6, 11, 19, 0.08), 0px 0px 0px 4px white;
}

.tc-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tc-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: #060b13;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.tc-content p {
  font-size: 15px;
  font-weight: 400;
  color: #363d4f;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

.tc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.tc-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.tc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tc-name {
  font-size: 14px;
  font-weight: 400;
  color: #060b13;
  font-family: 'Inter', sans-serif;
}

.tc-handle {
  font-size: 12px;
  font-weight: 500;
  color: #2d6cdf;
  font-family: 'Inter', sans-serif;
}

.tc-social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e9ebf1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.tc-social-icon img {
  width: 24px;
  height: 24px;
}

.testimonials-bottom-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 268px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.26) 26%, rgba(102,169,255,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ================================================================
   TESTIMONIALS RESPONSIVE
=============================================================== */

@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 20px 80px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonial-card {
    padding: 24px;
  }
}

.sh-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #2D6CDF;
  border-radius: 50%;
  flex-shrink: 0;
}

.solutions-bottom-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* ================================================================
   FAQ SECTION
=============================================================== */

.faq-section {
  position: relative;
  padding: 120px 24px 80px;
  background: linear-gradient(180deg, #f1f7ff 0%, #ffffff 55%);
  overflow: hidden;
}

.faq-bg-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.faq-bg-vector img {
  width: 100%;
  height: auto;
  min-height: 180px;
  object-fit: cover;
}

.faq-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e6edf8;
  border-radius: 16px;
  box-shadow: 0 8px 30px -20px rgba(6, 12, 60, 0.22);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--blue);
  font-size: 18px;
  transition: transform 220ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-sub);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

@media (max-width: 900px) {
  .faq-section {
    padding: 90px 16px 64px;
  }

  .faq-question {
    font-size: 17px;
    padding: 18px 18px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 15px;
  }
}

/* ================================================================
   FAQ SECTION
=============================================================== */

.faq-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px 140px;
  background: rgba(183, 214, 255, 0.15);
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.faq-bg-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.faq-bg-vector img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 192px;
  overflow: hidden;
}

.faq-pattern-inner {
  width: 100%;
  height: 100%;
  background: url('../assets/faq/faq-bg-pattern-fill.svg');
  background-size: cover;
  -webkit-mask-image: url('../assets/faq/faq-bg-pattern-mask.svg');
  mask-image: url('../assets/faq/faq-bg-pattern-mask.svg');
  -webkit-mask-size: cover;
  mask-size: cover;
}

.faq-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1258px;
}

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-item:hover {
  border-color: #2d6cdf;
  box-shadow: 0px 4px 20px rgba(45, 108, 223, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #101828;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

/* FAQ RESPONSIVE */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px 80px;
  }
  .faq-question span {
    font-size: 16px;
  }
}

/* FAQ FINAL OVERRIDES */
.faq-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 56%);
}

.faq-bg-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.faq-bg-vector img {
  width: 100%;
  height: auto;
  min-height: 170px;
  object-fit: cover;
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-list {
  gap: 14px;
}

.faq-item {
  border: 1px solid #e6edf8;
  border-radius: 16px;
  box-shadow: 0 8px 26px -18px rgba(6, 12, 59, 0.24);
  padding: 0;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 22px 24px;
  text-align: left;
  gap: 12px;
}

.faq-question span {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

.faq-icon {
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.24s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-sub);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

@media (max-width: 900px) {
  .faq-question {
    padding: 18px;
  }

  .faq-question span {
    font-size: 17px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 15px;
  }
}



/* ================================================================
   CTA SECTION
=============================================================== */

.cta-section {
  padding: 64px var(--container-pad);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.cta-box {
  position: relative;
  width: 100%;
  height: 558px;
  background: #2d6cdf;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cta-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-ellipse {
  position: absolute;
  opacity: 0.8;
}

.cta-ellipse-1 {
  width: 834px;
  height: 834px;
  left: 696px;
  top: -446px;
}

.cta-ellipse-2 {
  width: 834px;
  height: 834px;
  left: -324px;
  top: 172px;
}

.cta-ellipse-3 {
  width: 404px;
  height: 404px;
  left: -202px;
  top: -125px;
}

.cta-ellipse-4 {
  width: 404px;
  height: 404px;
  left: 1038px;
  top: 257px;
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 64px;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 527px;
  color: white;
}

.cta-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 500;
}

.cta-text h2 {
  font-size: 48px;
  margin-bottom: 8px;
}

.cta-text p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 20px;
}

.cta-section .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  padding: 12px 18px;
  border-radius: 50px;
  width: fit-content;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-section .cta-btn:hover {
  transform: translateY(-2px);
}

.cta-section .cta-btn > span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2d6cdf;
}

.cta-btn-icon {
  background: #2d6cdf;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.cta-phones {
  position: relative;
  width: 442px;
  height: 710px;
  margin-top: 37px;
}

.phone-mockup {
  position: absolute;
  width: 291px;
  height: 597px;
}

.phone-1 {
  right: 0;
  top: 0;
  z-index: 1;
}

.phone-2 {
  right: 151px;
  top: 112px;
  z-index: 2;
}

.phone-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.phone-screen {
  position: absolute;
  top: 1.88%;
  left: 4.4%;
  width: 91.12%;
  height: 96.24%;
  object-fit: cover;
  border-radius: 35px;
}

/* CTA RESPONSIVE */
@media (max-width: 1100px) {
  .cta-section {
    padding: 40px 24px;
  }
  .cta-content {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
    gap: 40px;
  }
  .cta-box {
    height: auto;
  }
  .cta-text {
    align-items: center;
  }
  .cta-phones {
    width: 350px;
    height: 450px;
    margin-top: 0;
  }
  .phone-mockup {
    width: 220px;
    height: 450px;
  }
  .phone-2 {
    right: 100px;
    top: 50px;
  }
}

@media (max-width: 768px) {
  .cta-text h3 {
    font-size: 24px;
  }
  .cta-text h2 {
    font-size: 36px;
  }
  .cta-phones {
    display: none;
  }
}


/* ================================================================
   FOOTER SECTION (NEW DESIGN)
=============================================================== */

.site-footer {
  position: relative;
  background: #ffffff;
  padding: 80px 0 30px;
  overflow: hidden;
  width: 100%;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.footer-bg-left {
  position: absolute;
  left: -5.5px;
  top: 0.5px;
  height: 499px;
  width: auto;
}

.footer-bg-right-container {
  position: absolute;
  right: -5.5px;
  top: 0.5px;
  height: 499px;
  width: 443px;
}

.footer-bg-right-container img {
  position: absolute;
}

.footer-bg-right-1 { inset: 0 4.7% 0 4.64%; }
.footer-bg-right-2 { inset: 13.03% 59.75% 13.43% 0; }
.footer-bg-right-3 { inset: 13.03% 0 13.42% 59.54%; }
.footer-bg-right-4 { inset: 35.39% 9.35% 35.62% 73.05%; }
.footer-bg-right-5 { inset: 35.39% 73.27% 35.62% 9.25%; }

.footer-container {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 88px;
  gap: 40px;
}

.footer-main-col {
  max-width: 476px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand img {
  width: 238px;
  height: auto;
}

.footer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #060b13;
  line-height: 1.5;
}

.footer-subscribe {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.subscribe-input-wrapper {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 12px 16px;
  width: 297px;
}

.subscribe-input-wrapper input {
  background: transparent;
  border: none;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #a6a6a6;
  outline: none;
}

.subscribe-btn {
  background: #2d6cdf;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
}

.subscribe-btn span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.subscribe-btn-icon {
  background: white;
  color: #2d6cdf;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.footer-nav-cols {
  display: flex;
  gap: 45px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 177px;
}

.footer-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #0d1b3d;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #2d6cdf;
}

.nav-chevron {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
}

.footer-bottom {
  border-top: 1px solid #f3f3f3;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #060b13;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #e9ebf1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d1b3d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: #2d6cdf;
  color: #2d6cdf;
  background: rgba(45, 108, 223, 0.05);
}

/* FOOTER RESPONSIVE */
@media (max-width: 1100px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-main-col {
    align-items: center;
  }
  .footer-subscribe {
    flex-direction: column;
    width: 100%;
  }
  .subscribe-input-wrapper {
    width: 100%;
    max-width: 400px;
  }
  .footer-nav-cols {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-nav-cols {
    gap: 30px;
  }
  .footer-nav-col {
    min-width: 140px;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

/* ================================================================
   FOOTER FINAL (Figma 273:7366)
=============================================================== */
.old-footer { display: none; }

.site-footer {
  position: relative;
  background: #fbfcff;
  border-top: 1px solid #e8eefb;
  padding: 56px 24px 22px;
  overflow: hidden;
}

.footer-top, .footer-bottom {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px 48px;
  padding-bottom: 34px;
}

.footer-pattern {
  position: absolute;
  top: 10px;
  width: 210px;
  height: 220px;
  border: 2px solid #d8e7ff;
  border-left: 0;
  border-radius: 0 80px 80px 0;
  opacity: 0.7;
}

.footer-pattern::before,
.footer-pattern::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid #d8e7ff;
  border-left: 0;
  border-radius: 0 68px 68px 0;
}

.footer-pattern::after {
  inset: 36px;
  border-radius: 0 56px 56px 0;
}

.footer-pattern-left { left: -110px; }
.footer-pattern-right { right: -110px; transform: scaleX(-1); }

.footer-pattern-svg {
  position: absolute;
  top: 0;
  width: auto;
  height: 500px;
  z-index: 1;
  pointer-events: none;
}

.footer-pattern-svg.footer-pattern-left {
  left: -16px;
}

.footer-pattern-svg.footer-pattern-right {
  right: -16px;
  transform: rotate(0deg);
  transform-origin: center;
}

.footer-brand img { width: 148px; height: auto; }

.footer-about {
  margin-top: 18px;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.5;
  color: #4e5675;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.footer-subscribe input {
  width: 190px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #edf1f9;
  background: #fff;
  padding: 0 12px;
  color: #8390af;
  font-size: 12px;
  outline: none;
}

.footer-subscribe button {
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  padding: 0 10px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.footer-subscribe button i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.footer-subscribe-icon {
  transform: rotate(45deg);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 18px 26px;
  align-content: start;
  padding-top: 22px;
}

.footer-nav-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #112048;
  font-size: 16px;
  font-weight: 500;
}

.footer-nav-grid a i {
  font-size: 11px;
  color: #a5b1c9;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #d9e5fa;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid #deebfd;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: 14px;
  color: #3c4560;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }
  .footer-pattern-svg {
    display: none;
  }
  .footer-subscribe {
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-subscribe input {
    width: 100%;
  }
  .footer-subscribe button {
    align-self: flex-start;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .site-footer { padding: 48px 16px 22px; }
  .footer-nav-grid { grid-template-columns: 1fr; }
  .footer-subscribe { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-pattern { display: none; }
}


/* ================================================================
   BLOGS PAGE
=============================================================== */

.blogs-hero {
  position: relative;
  background: linear-gradient(180deg, #b7d6ff 0%, #fafafa 100%);
  padding: 160px 0 64px;
  overflow: hidden;
  min-height: 464px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blogs-hero-bg {
  position: absolute;
  bottom: -36px;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-decoration {
  width: 1110px;
  opacity: 0.37;
}

.blogs-hero-content {
  position: relative;
  z-index: 10;
}

.hero-titles {
  margin: 24px 0;
}

.hero-title-main {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 32px;
 color: #000;
 margin-bottom: 4px;
}

.hero-title-gradient {
 font-size: 48px;
 background: linear-gradient(90deg, #2d6cdf 0%, #72a1ef 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.hero-description {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 16px;
 color: #2f2f2f;
 max-width: 800px;
 line-height: 1.5;
}

/* FEATURED BLOG */
.featured-blog-section {
  background: #fff;
  padding: 80px 0;
}

.featured-blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 48px;
}

.featured-blog-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .featured-blog-card {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}

.fb-image {
  width: 100%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
}

.fb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fb-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fb-header {
 display: flex;
 flex-direction: column;
 gap: 12px;
}

.fb-date {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 18px;
 color: #757575;
}

.fb-title {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 36px;
 font-weight: 500;
 color: #101828;
 line-height: 1.2;
}

.fb-excerpt {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 18px;
 color: #757575;
 line-height: 1.5;
}

/* ALL BLOGS GRID */
.all-blogs-section {
 padding: 80px 0;
 background: #fafafa;
}

.section-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 48px;
  text-align: left;
}

.sh-titles-left {
  margin-top: 12px;
}

.section-header-centered {
 display: flex;
 flex-direction: column;
 align-items: center;
 margin-bottom: 48px;
 text-align: center;
}

.sh-titles-centered {
 margin-top: 12px;
}

.sh-title-small {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 32px;
 color: #000;
 margin-bottom: 8px;
}

.sh-title-gradient {
  font-size: 48px;
  background: linear-gradient(90deg, #2d6cdf 0%, #72a1ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blogs-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
 gap: 32px;
 max-width: var(--container-max);
 margin: 0 auto;
}

.blog-card {
 background: #fff;
 border-radius: 20px;
 padding: 20px;
 display: flex;
 flex-direction: column;
 gap: 24px;
 position: relative;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bc-image {
 position: relative;
 height: 280px;
 border-radius: 24px;
 overflow: hidden;
}

.bc-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.bc-icon-btn {
 position: absolute;
 bottom: 24px;
 right: 24px;
 width: 48px;
 height: 48px;
 background: #2d6cdf;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 20px;
 z-index: 5;
 transition: transform 0.3s ease;
}

.blog-card:hover .bc-icon-btn {
 transform: scale(1.1);
}

.bc-content {
 display: flex;
 flex-direction: column;
 gap: 12px;
}

.bc-date {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 16px;
 color: #757575;
}

.bc-title {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 20px;
 font-weight: 600;
 color: #101828;
 line-height: 1.4;
}

/* BLOGS RESPONSIVE */
@media (max-width: 1200px) {
  .featured-blog-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .fb-image {
    width: 100%;
    height: 360px;
  }
  .fb-content {
    gap: 24px;
    align-items: flex-start;
  }
  .blogs-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
 .blogs-hero {
 padding: 120px 0 40px;
 }
 .hero-title-main {
 font-size: 24px;
 }
 .hero-title-gradient {
 font-size: 36px;
 }
 .featured-blog-section, .all-blogs-section {
 padding: 40px 0;
 }
 .fb-title {
 font-size: 28px;
 }
 .sh-title-small {
 font-size: 24px;
 }
 .sh-title-gradient {
 font-size: 36px;
 }
 .bc-image { height: 220px; }
}


/* ================================================================
   BLOG DETAILS PAGE
=============================================================== */

.blog-details-hero {
  padding: 140px 0 40px;
}

.bd-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.bd-tag-row span {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 20px;
 font-weight: 500;
 color: #000;
}

.bd-date {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 16px;
 color: #2f2f2f;
 margin-bottom: 16px;
}

.bd-title {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 32px;
 color: #000;
 line-height: 1.3;
 max-width: 900px;
}

.blog-details-main-img {
  padding: 0;
  margin-bottom: 64px;
}

.bd-main-img-container {
 height: 600px;
 border-radius: 24px;
 overflow: hidden;
}

.bd-main-img-container img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.blog-details-content {
  padding: 0 0 64px;
  max-width: 100%;
}

.bd-content-inner {
 display: flex;
 flex-direction: column;
 gap: 32px;
}

.bd-section {
 display: flex;
 flex-direction: column;
 gap: 12px;
}

.bd-section h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 24px;
 font-weight: 700;
 color: #2f2f2f;
}

.bd-section p {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 18px;
 color: #2f2f2f;
 line-height: 1.6;
}

.bd-conclusion {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 18px;
 color: #2f2f2f;
 line-height: 1.6;
}

/* RECOMMENDED BLOGS */
.recommended-blogs-section {
  padding: 64px 0;
  background: #f4f7ff;
}

.rb-header {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 margin-bottom: 48px;
}

.rb-tag-row {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 12px;
}

.rb-tag-row span {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 20px;
 font-weight: 500;
 color: #000;
}

.rb-title {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 32px;
 color: #000;
 margin-bottom: 4px;
}

.rb-subtitle {
 font-size: 48px;
}

/* RESPONSIVE BLOG DETAILS */
@media (max-width: 1100px) {
 .blog-details-hero, .blog-details-main-img, .blog-details-content, .recommended-blogs-section {
 padding-left: 40px;
 padding-right: 40px;
 }
 .bd-main-img-container { height: 400px; }
}

@media (max-width: 768px) {
 .blog-details-hero, .blog-details-main-img, .blog-details-content, .recommended-blogs-section {
 padding-left: 24px;
 padding-right: 24px;
 }
 .bd-title { font-size: 24px; }
 .bd-main-img-container { height: 300px; }
 .rb-subtitle { font-size: 36px; }
}

/* BLOG DETAILS FINAL OVERRIDES */
.blog-details-page {
  background: #f4f4f4;
}

.blog-details-hero {
  padding: 150px 0 34px;
  background: #f4f4f4;
}

.blog-details-hero-inner {
  max-width: var(--container-max);
}

.bd-tag-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.bd-tag-row span:last-child {
  font-size: 18px;
  font-weight: 500;
  color: #0f1d43;
}

.bd-date {
  margin-bottom: 10px;
  color: #5d6180;
  font-size: 16px;
  font-weight: 500;
}

.bd-title {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.2;
  font-weight: 500;
  color: #0f1d43;
}

.blog-details-main-img {
  padding: 0;
  margin-bottom: 64px;
}

.bd-main-img-container {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #E6EDF8;
  box-shadow: 0 20px 40px -28px rgba(6, 12, 59, 0.25);
}

.bd-main-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details-content {
  padding: 44px 0 78px;
}

.bd-content-inner {
  width: 100%;
  display: grid;
  gap: 26px;
}

.bd-section {
  display: grid;
  gap: 10px;
}

.bd-section h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  color: #111b42;
  font-weight: 600;
}

.bd-section p,
.bd-conclusion {
  font-size: 18px;
  line-height: 1.75;
  color: #3f4869;
}

.recommended-blogs-section {
  padding: 78px 0;
  background: #f4f7ff;
}

.rb-header {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 6px;
  margin-bottom: 40px;
}

.rb-tag-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rb-tag-row span:last-child {
  font-size: 18px;
  color: #0f1d43;
  font-weight: 500;
}

.rb-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: #111b42;
  text-align: center;
}

.rb-subtitle {
  font-size: clamp(36px, 4vw, 52px);
  text-align: center;
}

.recommended-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .recommended-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-details-hero {
    padding-top: 118px;
  }

  .bd-section p,
  .bd-conclusion {
    font-size: 16px;
  }

  .recommended-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT SUBJECT RADIO */
.subject-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 4px;
}

.subject-radio-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: #4b5679;
  cursor: pointer;
  line-height: 1.25;
  transition: color 0.2s ease, transform 0.2s ease;
}

.subject-radio-option input[type="radio"] {
  accent-color: var(--blue);
  width: 17px;
  height: 17px;
  margin: 0;
}

.subject-radio-option:hover {
  color: #1f2b4d;
  transform: translateY(-1px);
}

.subject-radio-option:has(input:checked) {
  color: var(--blue);
  font-weight: 600;
}

@media (min-width: 900px) {
  .subject-radio-group {
    flex-wrap: nowrap;
  }

  .subject-radio-option {
    flex: 0 0 auto;
    justify-content: flex-start;
  }
}

/* FEATURES FINAL OVERRIDE - Figma 178:1140 */
.features-section {
  position: relative;
  padding: 86px 0 92px;
  background: rgba(102, 169, 255, 0.05);
  overflow: hidden;
}

.features-container {
  max-width: 1284px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.features-section .solutions-header {
  gap: 24px;
}

.features-section .sh-tag span {
  font-size: 20px;
}

.features-section .sh-title {
  gap: 4px;
}

.features-section .sh-title > span:first-child {
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.features-section .sh-title .sh-italic {
  font-size: 56px;
  line-height: 1;
  margin-top: 0;
}

.features-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
}

.feature-card {
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 30px;
  box-shadow: none;
  padding: 20px;
  gap: 32px;
  transform: none;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: #dbe6f7;
  box-shadow: 0 10px 24px -18px rgba(6, 11, 19, 0.22);
}

.fc-visual {
  height: 255px;
  aspect-ratio: auto;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e9ebf1;
  box-shadow: 0 0 0 4px #fff, 0 12px 38px rgba(6, 11, 19, 0.06);
}

.fc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-content {
  gap: 12px;
}

.fc-content h3 {
  font-size: 38px;
  line-height: 1;
  font-weight: 600;
  color: #000;
}

.fc-content p {
  font-size: 18px;
  line-height: 1.35;
  color: #1e1e1e;
}

@media (max-width: 1200px) {
  .features-section .sh-title > span:first-child {
    font-size: clamp(32px, 4vw, 44px);
  }

  .features-section .sh-title .sh-italic {
    font-size: clamp(40px, 5vw, 52px);
  }

  .fc-content h3 {
    font-size: clamp(28px, 3vw, 36px);
  }
}

@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .features-section {
    padding: 68px 0 72px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    gap: 18px;
    padding: 16px;
    border-radius: 24px;
  }

  .fc-visual {
    height: 210px;
  }

  .fc-content h3 {
    font-size: 30px;
  }

  .fc-content p {
    font-size: 16px;
    line-height: 1.45;
  }
}


/* ================================================================
   CONTACT PAGE
=============================================================== */

.contact-hero {
    padding: 140px 0 64px;
    background: linear-gradient(180deg, #b7d6ff -50%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    bottom: -36px;
    left: -1755px;
    top: 261px;
    width: 1110px;
    opacity: 0.37;
    pointer-events: none;
}

.contact-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.ch-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.ch-tag span {
    font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 20px;
 font-weight: 500;
 color: #000;
}

.ch-title {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 32px;
 font-weight: 400;
 color: #000;
 margin-bottom: 8px;
 line-height: 1.2;
}

.ch-subtitle {
 font-size: 48px;
 margin-bottom: 24px;
}

.ch-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 16px;
 color: #2f2f2f;
 line-height: 1.6;
}

.contact-section {
    padding: 64px 0;
    background: #fafafa;
}

.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1.2fr;
 gap: 32px;
}

.contact-info-col {
 display: flex;
 flex-direction: column;
 gap: 22px;
}

.contact-card {
 background: #fff;
 border: 1px solid #f0f0f0;
 border-radius: 16px;
 padding: 32px;
}

.cc-header {
 margin-bottom: 32px;
}

.cc-header h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 32px;
 font-weight: 500;
 color: #101828;
 margin-bottom: 16px;
}

.cc-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 18px;
 color: #4a5565;
}

.cc-details {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 32px;
}

.cc-item h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 20px;
 font-weight: 500;
 color: #101828;
 margin-bottom: 8px;
}

.cc-item p {
  font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 16px;
 color: #4a5565;
 line-height: 1.5;
}

.cc-socials {
 display: flex;
 gap: 12px;
 margin-top: 12px;
}

.cc-social-link {
 width: 40px;
 height: 40px;
 background: #eaf0fc;
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #2d6cdf;
 font-size: 18px;
 transition: all 0.3s ease;
}

.cc-social-link:hover {
 background: #2d6cdf;
 color: #fff;
}

.cc-map-container {
 height: 256px;
 border-radius: 16px;
 overflow: hidden;
 border: 1px solid #f0f0f0;
}

.cc-map-container img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.contact-form-card {
 background: #fff;
 border: 1px solid #f0f0f0;
 border-radius: 16px;
 padding: 32px;
}

.contact-form {
 display: flex;
 flex-direction: column;
 gap: 24px;
}

.form-group {
 display: flex;
 flex-direction: column;
 gap: 8px;
}

.form-group label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #101828;
}

.form-group input, .form-group textarea {
  background: #fff;
  border: 0.8px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #101828;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #d7d7d7;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: #2d6cdf;
}

.form-group textarea {
  height: 170px;
  resize: none;
}

.btn-send {
  background: #2d6cdf;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-send:hover {
 background: #1e56c0;
}

.contact-faq-section {
    padding: 64px 0;
    background: rgba(183, 214, 255, 0.15);
}

@media (max-width: 1100px) {
 .contact-grid {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 768px) {
 .contact-hero, .contact-section, .contact-faq-section {
 padding-left: 24px;
 padding-right: 24px;
 }
 .ch-subtitle { font-size: 36px; }
 .cc-details { grid-template-columns: 1fr; }
}

/* ================================================================
   ALL TEAMS PAGE
   ============================================================== */

.teams-hero {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to top, #fafafa 30%, #b7d6ff 150%);
}

.teams-hero-container {
    position: relative;
    z-index: 2;
}

.teams-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.teams-hero-tag span:last-child {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.teams-hero-titles {
    margin-bottom: 24px;
}

.teams-title-main {
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin-bottom: 4px;
}

.teams-title-gradient {
    font-size: 48px;
}

.teams-hero-description {
    font-size: 16px;
    color: #2f2f2f;
    max-width: 800px;
    line-height: 1.6;
}

.teams-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.team-grid-section {
    padding: 64px 0 100px;
    background: #fafafa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tc-image {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
}

.tc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-info {
    background: #fbfbfb;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
    gap: 12px;
    transition: background 0.3s ease;
}

.team-card:hover {
    background: #e7f1ff;
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.team-card:hover .tc-info {
    background: #fff;
}

.tc-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    flex: 1;
}

.tc-name {
    font-size: 20px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 2px;
}

.tc-role {
    font-size: 16px;
    color: #667085;
    font-weight: 400;
}

.tc-social {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d6cdf;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.team-card:hover .tc-social {
    background: rgba(220, 235, 255, 0.4);
}

.tc-social:hover {
    background: #2d6cdf;
    color: #fff;
    transform: rotate(15deg);
}

/* Responsive All Teams */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .teams-hero {
        padding-top: 140px;
    }
    
    .teams-title-gradient {
        font-size: 36px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .tc-image {
        height: 300px;
    }
}
