/* ================================================
   Privassistant Landing Page (Global Styles)
   ================================================ */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #000319;
  background-color: #FFFFFF;
}

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.05em;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
}

/* Buttons (Shared Style) */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border-radius: 74px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  transition: all 0.3s ease;

  margin: 0 auto; /* centered */
}

.btn-green {
  background: #008B00;
  color: #FFFFFF;
}

.btn-green:hover {
  background: #006F00;
}

.btn-white {
  background: #FFFFFF;
  color: #000319;
}




/* ================================================
   b) Hero Section
   ================================================ */



.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 172px 120px;
  gap: 32px;
  text-align: center;

  width: 100%;
  min-height: 653px; /* original Figma height, but keeps expanding automatically */

  /* Hero background + dark overlay */
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../images/hero.jpg');

  background-size: cover;      /* fully responsive */
  background-position: center; /* keeps subject centered */
  background-repeat: no-repeat;
  background-attachment: scroll; /* safer on mobile */

  position: relative;
  overflow: hidden;
}




/* === Figma spec for Hero Title (Responsive) === */
.hero h1 {
  max-width: 789px;        /* Figma width on desktop */
  width: 100%;             /* responsive */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 120%;       /* ~77px */
  text-align: center;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  margin: 0 auto;          /* center horizontally */
}

/* === Figma spec for Hero Subtitle (Responsive) === */
.hero p {
  max-width: 642px;        /* Figma width on desktop */
  width: 100%;             /* responsive */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;       /* ~20px */
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
  margin-bottom: 16px;     /* spacing before button */
}


.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}



/* ================================================
   c) How to Setup - Section 1
   (How It Works)
   ================================================ */

.howto-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 120px;
  gap: 48px;
  background: #F1F6F7;
  text-align: center;
}




/* === Figma Frame 184: Oval Capsule Label === */
.howto-1 .section-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 10px;

  width: auto;                 /* allow pill to size naturally */
  height: 32px;

  background: rgba(211, 211, 211, 0.4);

  border: 1px solid #F5F5F5;
  border-radius: 30px;

  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000318;
  opacity: 0.6;

  white-space: nowrap;          /* <— keeps "Setting it up" on one line */
  box-sizing: border-box;
}


.howto-1 h2 {
  font-size: 56px;
  font-weight: 500;
}

.howto-steps {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  width: 291px;
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: left;
}




/* === Figma Step Badge (Frame 195) === */
.step-card .step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  gap: 10px;

  width: 64px;
  height: 29px;

  border: 1px solid #CDCDCD;
  border-radius: 32px;

  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  color: #000319;

  box-sizing: border-box;
  white-space: nowrap; /* ensures "Step 1" stays on one line */
}


.step-card h3 {
  font-size: 2px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  line-height: 120%;
  opacity: 0.6;
}

.step-card img,
.benefit-card img,
.feature-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.step-card .img {
  position: absolute;
  width: 161px;
  height: 161px;
  left: 49px;
  top: 14px;

  /* Remove default img sizing behavior */
  object-fit: contain;

  /* Remove any unwanted backgrounds */
  background: none !important;
  background-color: transparent !important;
  mix-blend-mode: normal !important;
}





/* * ============================================================
   feature.css — UPDATED to revised Figma spec & image
   Every block below is mapped to a Figma frame with comments.
   ============================================================ */ */

/* Base reset */
*,
*::before,
*::after { box-sizing: border-box; }

:root{
  --radius-12: 12px;
  --radius-pill: 30px;
  --radius-cta: 74px;

  --space-96: 96px;
  --space-120: 120px;
  --gap-48: 48px;
  --gap-24: 24px;
  --gap-12: 12px;
  --gap-10: 10px;
  --card-padding: 24px;

  --title-font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --body-font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;

  --ink: #000319;         /* title */
  --ink-2: #000318;       /* subtitle */
  --white: #FFFFFF;
  --badge-bg: rgba(211,211,211,0.1);
  --badge-border: #F5F5F5;
  --cta-bg: #008B00;
}

/* ------------------------------------------------------------
   “How to Setup” — Section wrapper (Figma: How to Setup)
------------------------------------------------------------- */
.howto{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding: var(--space-96) var(--space-120);
  gap: var(--gap-48);
  width:1440px;
  height:1456px;
  background:#FFFFFF;
  margin-inline:auto;
}

/* ------------------------------------------------------------
   Header container (Figma: Frame 184)
------------------------------------------------------------- */
.hero-184{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:0;
  gap:8px;
  width:654px;
  height:171px;
}

/* Badge pill (Figma: Frame 184 inside header) */
.frame-184-pill{
  box-sizing:border-box;
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  padding:8px 12px;
  gap: var(--gap-10);
  width:100px;
  height:32px;
  background: var(--badge-bg);
  border:1px solid var(--badge-border);
  border-radius: var(--radius-pill);

  /* border: 1px solid rgba(255, 255, 255, 0.25); subtle white border for contrast */

  background-blend-mode: color, normal;
}

.badge-text{
  font-family: var(--body-font);
  font-weight:500;
  font-size:13px;
  line-height:16px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#000318;
  opacity:.6;
  /* color: #FFFFFF;    */
  /* white text for benefits */
  opacity: 0.7;     /* per Figma */
}



/* Title + subtitle stack (Figma: Frame 190) */
.frame-190{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:0;
  gap: var(--gap-24);
  width:654px;
  height:131px;
}

.howto-title{
  width:654px;
  height:67px;
  margin:0;
  font-family: var(--title-font);
  font-weight:500;
  font-size:56px;
  line-height:120%;
  text-align:center;
  letter-spacing:-0.05em;
  color: var(--ink);
}

.howto-subtitle{
  width:654px;
  height:40px;
  margin:0;
  font-family: var(--body-font);
  font-weight:400;
  font-size:17px;
  line-height:120%;
  text-align:center;
  color: var(--ink-2);
}

/* ------------------------------------------------------------
   Features grid (Figma: Frame 201)
------------------------------------------------------------- */
.features.frame-201{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:0;
  gap: var(--gap-12);
  width:1200px;
  height:946px;
}

/* Rows (Figma: Frame 199 / Frame 200) */
.features-row{
  display:flex;
  flex-direction:row;
  align-items:flex-start;
  padding:0;
  gap: var(--gap-12);
  width:100%;
}
.frame-199{ height:474px; }
.frame-200{ height:460px; }

/* Feature cards (Figma: Frame 197 & 198) */
.feature-card{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding: var(--card-padding);
  gap: var(--gap-12);
  border:1px solid transparent;
  border-radius: var(--radius-12);
  color: var(--white);
}
.size--lg{ width:750px; }
.size--sm{ width:438px; }

/* Frame dimensions */
.frame-197.size--lg {
  width: 750px;
  height: 474px;
  flex: 1 1 auto;
}

.frame-198.size--sm {
  width: 438px;
  height: 474px;
  flex: 0 0 auto;
}

.features .frame-200 .frame-197.size--lg {
  width: 750px;
  height: 460px;
  flex: 1 1 auto;
}

.features .frame-200 .frame-198.size--sm {
  width: 438px;
  height: 460px;
  flex: 0 0 auto;
}

/* Card themes */
.feature--blue{
  background: linear-gradient(258.62deg, #35B1E6 3.56%, #3B4CEA 92.69%);
  border-color:#D9DAE6;
}
.feature--green{
  background: linear-gradient(90deg, #3CA128 0%, #8BCD28 92.31%);
  border-color:#E9F2E7;
}
.feature--orange{
  background: linear-gradient(258.62deg, #F4AE3D 3.56%, #D78C00 92.69%);
  border-color:#E6E6D9;
}

/* Typography inside cards */
.feature-title{
  font-family: var(--title-font);
  font-weight:600;
  font-size:24px;
  line-height:120%;
  letter-spacing:-0.05em;
  margin:0;
  width:100%;
}
.feature-desc{
  font-family: var(--body-font);
  font-weight:400;
  font-size:15px;
  line-height:120%;
  opacity:.7;
  margin:0;
  width:100%;
  max-width:702px;
}

/* Mask group (icon tiles) */
/* .mask-group{
  width:272px;
  height:272px;
  position:relative;
  flex:none;

} */

/* .mask-group {
  width: 272px;
  height: 272px;
  position: relative;
  flex: none;

} */

/* Figma: Mask group */
.mask-group {
  width: 272px;
  height: 272px;

  position: relative;
  flex: none;
  order: 2;
  flex-grow: 0;
}




.feature-icon{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: hard-light, normal;
  border-radius:24px;
}


/* .feature-icon.lock{
  background-image: linear-gradient(0deg, #3875B9, #3875B9), url("../images/Lock_Mask_group.svg");
} */

.feature-icon.lock{
  background-image:  url("../images/Lock_Mask_group.svg");
}

/* .feature-icon.briefcase{
  background-image: linear-gradient(0deg, #6AB938, #6AB938), url("../images/Role_Mask_group.svg");
} */

.feature-icon.briefcase{
  background-image:  url("../images/Role_Mask_group.svg");
}


/* .feature-icon.puzzle{
  background-image: linear-gradient(0deg, #6AB938, #6AB938), url("../images/Question_Mask_group.svg");
} */

.feature-icon.puzzle{
  background-image:  url("../images/Question_Mask_group.svg");
}



/* .feature-icon.recycling{
  background-image: linear-gradient(0deg, #D39B41, #D39B41), url("../images/Dashboard_Mask_group.svg");
} */

.feature-icon.recycling{
  background-image:  url("../images/Dashboard_Mask_group.svg");
}

/* CTA button under features */
.cta-wrap{ display:flex; justify-content:center; width:100%; }
.button.cta{
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  padding:16px 24px;
  gap: var(--gap-10);
  width:174px;
  height:51px;
  background: var(--cta-bg);
  border-radius: var(--radius-cta);
  color: var(--white);
  font-family: var(--body-font);
  font-weight:500;
  font-size:16px;
  line-height:19px;
  text-decoration:none;
}

/* Responsive helpers */
@media (max-width: 1440px){
  .howto{ width:100%; height:auto; padding:64px 24px; }
  .features.frame-201{ width:100%; height:auto; }
  .features-row{ flex-direction:column; }
  .size--lg, .size--sm{ width:100%; height:auto; }
  .feature-desc{ max-width:100%; }
  .hero-184, .frame-190{ width:100%; }
  .howto-title, .howto-subtitle{ width:100%; }
}

@media (max-width: 1280px){
  .features.frame-201{
    width:100%;
    height:auto;
    padding-inline: 16px;
  }
  .features-row{
    flex-direction:column;
    height:auto;
  }
  .size--lg, .size--sm{
    width:100%;
    height:auto;
  }
  .feature-desc{ max-width: 100%; }
}

/* ===========================================================
   Optional: Responsive adjustment (old lock icon override)
   =========================================================== */
@media (max-width: 768px) {
  .feature-card.blue {
    width: 90%;
    min-height: auto;
    padding: 20px;
  }
  .feature-card.blue .lock-icon {
    width: 200px;
    height: 200px;
  }
  .feature-card.blue .lock-icon::before {
    width: 200px;
    height: 200px;
  }
}


/* ================================================
   d) How to Setup - Section 2 (unused / extra)
   ================================================ */

.howto-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 120px;
  gap: 48px;
  background: #FFFFFF;
  text-align: center;
}

.howto-2 h2 {
  font-size: 56px;
  font-weight: 500;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.feature-card.blue {
  background: #eaf3ff;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  color: #000319;
}

.feature-card.green {
  background: linear-gradient(258.62deg, #F4FFE9 3.56%, #B4F6C7 92.69%);
}

.feature-card.yellow {
  background: linear-gradient(258.62deg, #FFF1E9 3.56%, #F6E9B4 92.69%);
}

/* Lock icon container */
.lock-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 20px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lock-icon::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(0deg, #3875B9, #3875B9),
              url("../images/Lock.png") center/cover no-repeat;
  background-blend-mode: hard-light, normal;
  border-radius: 20px;
  filter: drop-shadow(0px 8px 18px rgba(0, 0, 0, 0.15));
}



.lock-shape-red {
  position: absolute;
  width: 70px;
  height: 90px;
  left: 25px;
  top: 15px;
  background: #FF0606;
  opacity: 0.1;
  border-radius: 12px;
}

.lock-shape-purple {
  position: absolute;
  width: 22px;
  height: 22px;
  left: 48px;
  top: 25px;
  background: #EE00FF;
  opacity: 0.15;
  border-radius: 50%;
}


/* ================================================
   e) How to Setup - Section 3 (Benefits)
   ================================================ */

/* Ellipse 851 — glow between Features and Benefits */
.benefits-ellipse {
  position: absolute;

  width: 731px;
  height: 138px;

  left: 50%;
  top: -96px;
  transform: translateX(-50%);

  background: #75C9E3;
  filter: blur(40px);
  opacity: 0.65;

  z-index: 4;
  pointer-events: none;
}



.howto-3 {
  position: relative; /* enables absolute positioning inside */
  overflow: hidden; /* <-- prevents glow from spilling upward */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 120px;
  gap: 48px;
  background: linear-gradient(180deg, #285DBA 0%, #122A54 100%);
  color: #FFFFFF;
  text-align: center;
}

/* === Benefits Section — Oval Badge (Figma Frame 184) === */
.howto-3 .section-label {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 8px 12px;
  gap: 10px;

  width: auto;                     /* fit content like Figma */
  height: 32px;
  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.08);  /* slightly gray/white tint for visibility */
  border: 1px solid rgba(255, 255, 255, 0.25); /* visible subtle border */
  border-radius: 30px;             /* oval */

  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.75;                   /* matches Figma weakened opacity */

  margin-bottom: 16px;             /* spacing above H2 */
}



.howto-3 h2 {
  font-size: 56px;
  font-weight: 500;
}

.benefits {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.benefit-card {
  width: 276px;
  text-align: left;
}

.benefit-card h3 {
  font-size: 24px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 16px;
  opacity: 0.6;
}

/* Benefit icon frame */
.icon-frame {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  order: 0;
  flex-grow: 0;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 12px 3px rgba(56, 149, 255, 0.8);
}

.icon-frame img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.icon-frame:hover {
  box-shadow: 0 0 18px 4px rgba(56, 149, 255, 1);
  transform: scale(1.05);
  transition: all 0.2s ease-in-out;
}


/* ===========================================================
   Framework Section
   =========================================================== */

.framework-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 96px 120px;
  gap: 48px;
  width: 100%;
  background: #FFFFFF;
  box-sizing: border-box;
}

/* Header */
.framework-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 654px;
  text-align: center;
}

.framework-label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  background: rgba(211, 211, 211, 0.1);
  border: 1px solid #F5F5F5;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000318;
  opacity: 0.6;
}

.framework-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.framework-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 120%;
  letter-spacing: -0.05em;
  color: #000319;
}

.framework-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #000318;
}

/* Cards container */
.framework-cards {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  width: 1200px;
  height: auto;
  padding: 0;
  overflow-x: hidden;
  scrollbar-width: none;
}
.framework-cards::-webkit-scrollbar {
  display: none;
}

/* Individual framework cards */
.framework-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
  gap: 23px;
  width: 282px;
  height: 325px;
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  box-shadow: 0px 3px 0px #E9E9E9;
  border-radius: 12px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 234px;
  height: 230px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.card-content h3 {
  width: 101px;
  height: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.05em;
  color: #000319;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0;
}

.card-content p {
  width: 234px;
  height: 180px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: #000319;
  opacity: 0.5;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.card-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  gap: 12px;
  width: 115px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.card-link span {
  width: 91px;
  height: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  text-align: center;
  color: #008B00;
  flex: none;
  order: 0;
  flex-grow: 0;
  transition: color 0.3s ease;
}

.card-link img {
  width: 12px;
  height: 24px;
  flex: none;
  order: 1;
  flex-grow: 0;
  object-fit: contain;
  position: relative;
  top: 0;
}

.card-link:hover span {
  color: #005F00;
}

/* Nav arrows */
.framework-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  width: 1200px;
}

.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 5px;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
}

.nav-left {
  background: #D2D2D2;
}

.nav-right {
  background: #122A54;
}

.nav-btn img {
  width: 14px;
  height: 16px;
}

/* Framework responsive */
@media (max-width: 1024px) {
  .framework-section {
    padding: 60px 40px;
  }
  .framework-title {
    font-size: 42px;
  }
  .framework-cards {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .framework-cards {
    flex-wrap: nowrap;
  }
  .framework-card {
    min-width: 260px;
  }
  .framework-title {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .framework-title {
    font-size: 32px;
  }
  .framework-subtitle {
    font-size: 15px;
  }
  .framework-card {
    min-width: 240px;
    height: auto;
  }
  .card-content h3 {
    font-size: 24px;
  }
}


/* ================================================
   g) CTA Section
   ================================================ */

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 120px;
  gap: 24px;
  width: 100%;
  background: #ffffff;
  box-sizing: border-box;
  position: relative;
}

.cta-frame211 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 60px;
  gap: 24px;
  isolation: isolate;
  width: 1200px;
  height: 423px;
  background: linear-gradient(90deg, #3ca128 0%, #8bcd28 92.31%);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.cta-frame89 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  z-index: 0;
  max-width: 578px;
}

.cta-frame184 {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 10px;
  width: 145px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}

.cta-demo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.6;
}

.cta-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 120%;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin: 0;
}

.cta-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  color: #ffffff;
  opacity: 0.7;
  margin: 0;
}

.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 10px;
  background: #ffffff;
  border-radius: 74px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.cta-button span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000319;
}

.cta-button:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.cta-rocket {
  position: absolute;
  right: 60px;
  top: -120px;
  width: 575px;
  height: 549px;
  z-index: 1;
}

.cta-rocket-img {
  width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.cta-assistant-text {
  position: absolute;
  top: 60px;
  right: 120px;
  transform: rotate(-38deg);
  transform-origin: top right;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #122A54;
  letter-spacing: 0.2em;
}

/* CTA responsive */
@media (max-width: 1024px) {
  .cta-frame211 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    width: 100%;
    height: auto;
  }

  .cta-frame89 {
    align-items: center;
    max-width: 100%;
  }

  .cta-title {
    font-size: 48px;
  }

  .cta-rocket {
    position: relative;
    width: 400px;
    height: auto;
    top: 0;
    right: 0;
    margin-top: 40px;
  }

  .cta-assistant-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-subtext {
    font-size: 15px;
  }

  .cta-rocket {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .cta-subtext {
    font-size: 14px;
  }

  .cta-button {
    width: 100%;
  }

  .cta-rocket {
    width: 220px;
    margin-top: 20px;
  }
}


/* ================================================
   h) Footer
   ================================================ */

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 120px;
  gap: 48px;
  background: linear-gradient(156.49deg, #285DBA -21.52%, #122A54 116.38%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Top container */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 1200px;
}

/* Left column */
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 373px;
  text-align: left;
}

/* Logo icon */
.footer-logo-icon {
  width: 80px;
  height: 92px;
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-logo-icon img {
  width: 60%;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-about p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #FFFFFF;
  opacity: 0.7;
  max-width: 373px;
}

/* Middle link columns */
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 48px;
  width: auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 170px;
}

.footer-column h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.footer-column a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #FFFFFF;
}

/* Social icons */
.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 24px;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-policies {
  display: flex;
  gap: 24px;
}

.footer-policies a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policies a:hover {
  color: #FFFFFF;
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}


/* ================================================
   i) Responsive Adjustments
   ================================================ */

/* ================================================
   i) Responsive Adjustments (Updated for Hero)
   ================================================ */

@media (max-width: 992px) {

  /* Padding adjustments (unchanged) */
  .hero, .howto-1, .howto-2, .howto-3, .howto-4, .cta, .footer {
    padding: 60px 40px;
  }

  .features-grid, .howto-steps, .benefits, .frameworks-grid {
    flex-direction: column;
    align-items: center;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  /* === HERO TEXT (Tablet) === */
  .hero h1 {
    font-size: 48px;
    line-height: 120%;
    max-width: 90%;        /* ensures good wrapping */
  }

  .hero p {
    font-size: 16px;
    max-width: 90%;
  }
}

@media (max-width: 600px) {

  /* === HERO TEXT (Mobile) === */
  .hero h1 {
    font-size: 36px;
    line-height: 120%;
    max-width: 90%;
  }

  .hero p {
    font-size: 15px;
    max-width: 90%;
  }

  /* Section titles (unchanged) */
  .howto-1 h2, .howto-2 h2, .howto-3 h2, .howto-4 h2 {
    font-size: 32px;
  }
}


