/* ============================================================
   Clarivize — Unified Responsive Stylesheet
   Breakpoints: Mobile (<768px), Tablet (768-1439px), Desktop (>=1440px)
   ============================================================ */

/* --- Reset & Fonts --- */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Roboto:800,500,400,600");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  height: 100%;
}
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a { text-decoration: none; }

/* --- CSS Custom Properties --- */
:root {
  --m3-elevation-light-4: 0px 2px 3px 0px rgba(0,0,0,0.3), 0px 6px 10px 4px rgba(0,0,0,0.15);
  --m3-elevation-light-3: 0px 1px 3px 0px rgba(0,0,0,0.3), 0px 4px 8px 3px rgba(0,0,0,0.15);
  --color-primary-button: rgba(2,119,189,1);
  --color-white: rgba(255,255,255,1);
  --color-gray-bg: rgba(243,246,248,1);
  --color-box-outline: rgba(192,196,203,1);
  --color-dark-text: rgba(9,9,9,1);
  --color-error: rgba(216,27,96,1);
  --color-cyan: #02adee;
  --color-blue-accent: #4171ff;
  --color-purple-accent: #aa66be;
  --color-pink-accent: #d84279;
  --color-with: #00b0f0;
  --card-shadow: 0px 1.26px 3.78px 1.26px #00000026, 0px 0.63px 1.26px #0000004c;
}

/* --- Inline text helpers --- */
.text-regular { font-weight: 400; }
.text-semibold { font-weight: 600; }
.text-bold { font-weight: 700; }
.text-extrabold { font-weight: 800; color: #090909; }
.text-extrabold-italic { font-weight: 800; font-style: italic; color: #000; }

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.page-overview {
  width: 100%;
  min-width: 375px;
  display: flex;
  flex-direction: column;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 1;
  position: relative;
}

/* ============================================================
   SITE HEADER  (Mobile: centered 2-row, Tablet+: horizontal bar)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  height: 113px;
  box-shadow: var(--m3-elevation-light-3);
  background: #ffffff;
}

.site-header-logo {
  margin-top: 15px;
  width: 179.28px;
  height: 29.96px;
  object-fit: cover;
}

.site-nav {
  display: inline-flex;
  height: 32px;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 45px;
}

.nav-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  text-decoration: none;
  color: inherit;
}

.nav-tab-label {
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: #000;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
}

.nav-tab-underline {
  background-color: #2196f3;
  opacity: 0;
  width: 100%;
  height: 3px;
  border-radius: 7px;
}
.nav-tab-underline--active {
  background-color: var(--color-primary-button);
  opacity: 1;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 140px 30px 30px;
  width: 100%;
  background-image: url(img/section-banner-2.jpg),
    linear-gradient(135deg, rgba(2,173,237,1) 0%, rgba(2,173,237,1) 30%, rgba(231,85,157,1) 60%, rgba(231,85,157,1) 100%);
  background-size: cover;
  background-position: 50% 50%;
}

.hero-inner {
  width: 315px;
  gap: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.hero-title {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.hero-subtitle {
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.contact-button-small {
  width: 263px;
  height: 32px;
  object-fit: cover;
}

.hero-media-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero-media-logo {
  width: 100%;
  aspect-ratio: 1.94;
  object-fit: cover;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 30px;
  width: 100%;
  background-color: #f8f9fb;
}

.features-heading {
  width: 315px;
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: var(--color-dark-text);
  font-size: 20px;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.feature-card-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px 24px;
  width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  width: 314px;
  height: 200px;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 6.3px;
  border: 0.63px solid var(--color-box-outline);
  box-shadow: var(--card-shadow);
}

.feature-card-icon {
  width: 40px;
  height: 36px;
  object-fit: contain;
}

.feature-card-title {
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: normal;
  width: 100%;
  margin: 0;
}

.feature-card-description {
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: #000;
  font-size: 10px;
  text-align: center;
  line-height: 16px;
  width: 100%;
  margin: 0;
}

/* ============================================================
   WORKFLOW SECTION
   ============================================================ */
.workflow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  width: 100%;
  background-color: #fff;
  gap: 20px;
}

.workflow-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.workflow-heading {
  width: 315px;
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: var(--color-dark-text);
  font-size: 20px;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.workflow-description {
  width: 307px;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--color-dark-text);
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  margin: 0;
}

.workflow-diagram {
  width: 315px;
  height: auto;
}

/* ============================================================
   COST COMPARISON SECTION
   ============================================================ */
.cost-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 30px;
  width: 100%;
  background-color: #f8f9fb;
}

.cost-heading {
  width: 315px;
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: transparent;
  font-size: 20px;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.cost-comparison {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.cost-enterprise {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
}

.cost-enterprise-icon {
  width: 79px;
  height: 71px;
  object-fit: cover;
}

.cost-enterprise-label {
  display: flex;
  flex-direction: column;
  width: 149px;
  height: 59px;
  align-items: center;
  gap: 10px;
}

.cost-enterprise-type {
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: #000;
  font-size: 14px;
  text-align: center;
  width: 100%;
}

.cost-enterprise-name {
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: #000;
  font-size: 20px;
  text-align: center;
  width: 100%;
}

.cost-divider {
  width: 315px;
  height: 1px;
  background-color: var(--color-box-outline);
}

.cost-card {
  display: flex;
  flex-direction: column;
  width: 240px;
  align-items: center;
  gap: 20px;
}

.cost-card-label {
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  width: 100%;
}
.cost-card-label--without { color: var(--color-error); }
.cost-card-label--with { color: var(--color-with); }

.cost-card-amount {
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  width: 100%;
  margin: 0;
}
.cost-card-amount--without { color: var(--color-error); }
.cost-card-amount--with { color: var(--color-with); }

.cost-amount-value--without { color: #d81b60; font-size: 20px; font-weight: 600; }
.cost-amount-value--with { color: #00b0f0; font-size: 20px; font-weight: 600; }
.cost-amount-period { font-size: 14px; }

.cost-card-data {
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: #000;
  font-size: 20px;
  text-align: center;
  width: 100%;
  margin: 0;
}
.cost-data-value { font-weight: 600; color: #000; font-size: 20px; }

/* ============================================================
   GET STARTED SECTION
   ============================================================ */
.get-started-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
  width: 100%;
  background-color: #fff;
}

.get-started-heading {
  width: 315px;
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: var(--color-dark-text);
  font-size: 20px;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.tier-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.tier-card {
  display: flex;
  flex-direction: column;
  width: 269px;
  align-items: center;
  gap: 10px;
}

.tier-card-name {
  color: var(--color-cyan);
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  width: 100%;
}

.tier-card-bullets {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 9px 0 12px;
  width: 100%;
}

.tier-bullet-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.tier-bullet-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-cyan);
  flex-shrink: 0;
  margin-top: 8px;
}

.tier-bullet-text {
  flex: 1;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--color-dark-text);
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.tier-divider {
  width: 315px;
  height: 1px;
  background-color: var(--color-box-outline);
}

/* ============================================================
   CTA BETA / PARTNER SECTION
   ============================================================ */
.cta-beta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
  width: 100%;
  background-color: #f8f9fb;
}

.cta-beta-intro {
  width: 277px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.cta-beta-heading {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: var(--color-dark-text);
  font-size: 20px;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.cta-beta-description {
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--color-dark-text);
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  margin: 0;
}

.partner-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.partner-card {
  display: flex;
  flex-direction: column;
  width: 315px;
  align-items: center;
  gap: 20px;
}

.partner-card-icon {
  object-fit: cover;
}
.partner-card-icon--advisors { width: 195px; height: 61px; }
.partner-card-icon--testers { width: 120px; height: 84px; }
.partner-card-icon--beta { width: 88px; height: 84px; }

.partner-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.partner-card-name {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  width: 100%;
}
.partner-card-name--blue { color: var(--color-blue-accent); }
.partner-card-name--purple { color: var(--color-purple-accent); }
.partner-card-name--pink { color: var(--color-pink-accent); }

.partner-card-bullets {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 0 30px;
  width: 100%;
}

.partner-bullet-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.partner-bullet-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 14px;
}
.partner-bullet-dot--blue { background-color: var(--color-blue-accent); }
.partner-bullet-dot--purple { background-color: var(--color-purple-accent); }
.partner-bullet-dot--pink { background-color: var(--color-pink-accent); }

.partner-bullet-text {
  flex: 1;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--color-dark-text);
  font-size: 16px;
  line-height: 32px;
  margin: 0;
}

.partner-divider {
  width: 315px;
  height: 1px;
  background-color: var(--color-box-outline);
}

/* ============================================================
   SAVE BIG / CTA BOTTOM SECTION
   ============================================================ */
.save-big-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
  width: 100%;
  background: linear-gradient(45deg, rgba(216,66,121,1) 0%, rgba(2,119,189,1) 100%);
}

.save-big-inner {
  width: 315px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.save-big-title {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.save-big-subtitle {
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  margin: 0;
}

.contact-button-large {
  width: 255px;
  height: 27px;
  object-fit: cover;
}


/* ============================================================
   TABLET BREAKPOINT  (768px — 1439px)
   ============================================================ */
@media (min-width: 768px) {

  /* --- Header: horizontal bar --- */
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    gap: 0;
  }
  .site-header-logo {
    margin-left: 15px;
    margin-top: 0;
  }
  .site-nav {
    width: 305px;
    gap: 69px;
    margin-right: 60px;
    padding-top: 10px;
  }

  /* --- Hero --- */
  .hero-banner {
    padding: 100px 60px 60px;
  }
  .hero-inner {
    width: 100%;
    gap: 40px;
  }
  .hero-text-group {
    gap: 30px;
  }
  .hero-title {
    font-size: 32px;
    max-width: 648px;
    align-self: center;
  }
  .hero-subtitle {
    font-size: 20px;
    max-width: 648px;
    align-self: center;
  }
  .hero-media-container {
    width: 430px;
    height: 222px;
    align-self: center;
    box-shadow: var(--m3-elevation-light-3);
  }

  /* --- Features --- */
  .features-section {
    padding: 60px;
  }
  .features-heading {
    width: 648px;
    font-size: 32px;
  }
  .feature-card {
    width: 29%;
    max-width: 305px;
    height: 325px;
    padding: 30px 24px;
  }
  .feature-card-description {
    font-size: 12px;
    line-height: 23px;
  }

  /* --- Workflow --- */
  .workflow-section {
    padding: 60px;
    gap: 40px;
  }
  .workflow-heading {
    width: 639px;
    font-size: 32px;
  }
  .workflow-description {
    width: 652px;
    font-size: 14px;
    line-height: 30px;
  }
  .workflow-diagram {
    width: 648px;
  }

  /* --- Cost --- */
  .cost-section {
    padding: 60px;
  }
  .cost-heading {
    width: 648px;
    font-size: 32px;
  }
  .cost-comparison {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
  .cost-enterprise {
    width: 199px;
    gap: 7px;
  }
  .cost-enterprise-icon {
    width: 78px;
    height: 70px;
  }
  .cost-enterprise-label {
    width: 113px;
    height: 109px;
    gap: 16px;
  }
  .cost-divider {
    width: 1px;
    height: 100px;
  }
  .cost-card {
    width: 180px;
  }
  .cost-card--with {
    width: 170px;
  }

  /* --- Get Started --- */
  .get-started-section {
    padding: 60px;
  }
  .get-started-heading {
    width: 648px;
    font-size: 36px;
  }
  .tier-grid {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
  }
  .tier-card {
    width: 183px;
  }
  .tier-divider {
    width: 1px;
    height: 231px;
  }

  /* --- CTA Beta --- */
  .cta-beta-section {
    padding: 60px;
    gap: 40px;
  }
  .cta-beta-intro {
    width: 100%;
    gap: 19px;
  }
  .cta-beta-heading {
    font-size: 32px;
  }
  .cta-beta-description {
    width: 576px;
    font-size: 14px;
    align-self: center;
  }
  .partner-grid {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .partner-card {
    width: 161px;
    gap: 20px;
  }
  .partner-card-icon--advisors { width: 100%; height: auto; }
  .partner-card-icon--testers { width: 85px; height: 60px; }
  .partner-card-icon--beta { width: 59px; height: 56px; }
  .partner-card-bullets {
    padding: 0 0 0 18px;
  }
  .partner-bullet-text {
    font-size: 14px;
    line-height: 20px;
  }
  .partner-bullet-dot {
    margin-top: 8px;
  }
  .partner-divider {
    width: 1px;
    height: 299px;
  }

  /* --- Save Big --- */
  .save-big-section {
    padding: 60px;
  }
  .save-big-inner {
    width: 100%;
    align-items: center;
    gap: 20px;
  }
  .save-big-title {
    font-size: 32px;
    max-width: 537px;
  }
  .save-big-subtitle {
    font-size: 16px;
    max-width: 605px;
  }
  .contact-button-large {
    width: 531px;
    height: 57px;
  }
}


/* ============================================================
   DESKTOP BREAKPOINT  (>=1440px)
   ============================================================ */
@media (min-width: 1440px) {

  .site-nav {
    width: 295px;
    margin-right: 61px;
  }

  /* --- Hero: side-by-side layout --- */
  .hero-inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 79px;
    width: 100%;
  }
  .hero-text-group {
    width: 813px;
    align-items: flex-start;
  }
  .hero-title {
    font-size: 40px;
    text-align: left;
    max-width: none;
    align-self: stretch;
  }
  .hero-subtitle {
    text-align: left;
    max-width: 696px;
    align-self: flex-start;
  }
  .hero-media-container {
    width: 428px;
    height: 220px;
  }

  /* --- Features --- */
  .features-heading {
    width: 100%;
    font-size: 40px;
  }
  .feature-card {
    width: 423px;
    height: 265px;
    padding: 24px;
  }
  .feature-card-description {
    line-height: 26px;
  }

  /* --- Workflow --- */
  .workflow-heading {
    width: 100%;
    font-size: 40px;
  }
  .workflow-description {
    width: 904px;
  }
  .workflow-diagram {
    width: 1113px;
  }

  /* --- Cost --- */
  .cost-heading {
    width: 1320px;
    font-size: 40px;
  }
  .cost-comparison {
    gap: 75px;
  }
  .cost-enterprise {
    gap: 17px;
  }
  .cost-enterprise-icon {
    width: 121px;
    height: 109px;
  }
  .cost-enterprise-label {
    width: 210px;
    height: 162px;
    gap: 25px;
  }
  .cost-enterprise-type {
    font-size: 24px;
  }
  .cost-enterprise-name {
    font-size: 36px;
  }
  .cost-divider {
    height: 172px;
  }
  .cost-card {
    width: 240px;
    gap: 25px;
  }
  .cost-card--with {
    width: 220px;
  }
  .cost-card-label {
    font-size: 24px;
  }
  .cost-card-amount {
    font-size: 36px;
  }
  .cost-amount-value--without { font-size: 30px; }
  .cost-amount-value--with { font-size: 30px; }
  .cost-amount-period { font-size: 24px; }
  .cost-card-data {
    font-size: 24px;
  }
  .cost-data-value { font-size: 24px; }

  /* --- Get Started --- */
  .get-started-heading {
    width: 100%;
    font-size: 40px;
  }
  .tier-grid {
    gap: 39px;
    padding-left: 35px;
  }
  .tier-card {
    width: 330px;
    gap: 20px;
  }
  .tier-card-name {
    font-size: 24px;
  }
  .tier-bullet-text {
    font-size: 20px;
    line-height: 24px;
  }
  .tier-divider {
    height: 197px;
  }

  /* --- CTA Beta --- */
  .cta-beta-heading {
    font-size: 40px;
  }
  .cta-beta-description {
    width: 1048px;
    font-size: 20px;
  }
  .partner-card {
    width: 354px;
    gap: 30px;
    padding: 13px 0;
  }
  .partner-card-icon--advisors { width: 222px; height: 70px; }
  .partner-card-icon--testers { width: 120px; height: 84px; }
  .partner-card-icon--beta { width: 88px; height: 84px; }
  .partner-card-content {
    gap: 14px;
  }
  .partner-card-name {
    font-size: 24px;
  }
  .partner-card-bullets {
    padding: 0 0 0 30px;
    gap: 14px;
  }
  .partner-bullet-text {
    font-size: 20px;
    line-height: 20px;
  }
  .partner-bullet-dot {
    margin-top: 8px;
  }
  .partner-divider {
    height: 277px;
  }

  /* --- Save Big --- */
  .save-big-title {
    font-size: 40px;
    max-width: 100%;
    line-height: 40px;
  }
  .save-big-subtitle {
    font-size: 20px;
    max-width: 100%;
    line-height: 56px;
  }
}


/* ============================================================
   FAQ PAGE
   Breakpoints: Mobile (<768px), Tablet (768-1439px), Desktop (>=1440px)
   ============================================================ */

.page-faq {
  width: 100%;
  min-width: 375px;
  display: flex;
  flex-direction: column;
}

/* --- FAQ Banner --- */
.faq-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 143px 30px 60px;
  width: 100%;
  background-image: url(img/section-faq-banner-2.jpg),
    linear-gradient(135deg, rgba(2,173,237,1) 0%, rgba(2,173,237,1) 30%, rgba(231,85,157,1) 60%, rgba(231,85,157,1) 100%);
  background-size: cover;
  background-position: 50% 50%;
}

.faq-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.faq-banner-title {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #fff;
  font-size: 24px;
  text-align: start;
  line-height: normal;
  margin: 0;
  width: 100%;
}

.faq-banner-description {
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  margin: 0;
  width: 312px;
}

/* --- FAQ Content --- */
.faq-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  width: 100%;
  background-color: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 315px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.faq-question {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #000;
  font-size: 20px;
  line-height: normal;
  margin: 0;
}

.faq-answer {
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: #090909;
  font-size: 12px;
  line-height: 22px;
  margin: 0;
  max-width: 303px;
}

.faq-answer em {
  font-style: italic;
}

/* --- FAQ CTA Section --- */
.faq-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: linear-gradient(45deg, rgba(216,66,121,1) 0%, rgba(2,119,189,1) 100%);
}

.faq-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 255px;
}

.faq-cta-title {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.faq-cta-description {
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  margin: 0;
}

.faq-cta-button {
  width: 255px;
  height: 27px;
  object-fit: cover;
}


/* --- FAQ TABLET (768px — 1439px) --- */
@media (min-width: 768px) {
  .faq-banner {
    padding: 100px 60px 60px;
  }
  .faq-banner-inner {
    width: 648px;
    gap: 30px;
    align-self: center;
  }
  .faq-banner-title {
    font-size: 32px;
    text-align: left;
  }
  .faq-banner-description {
    font-size: 16px;
    line-height: 30px;
    width: 100%;
  }

  .faq-content {
    padding: 60px;
  }
  .faq-list {
    width: 648px;
    gap: 60px;
  }
  .faq-question {
    font-size: 24px;
  }
  .faq-answer {
    font-size: 16px;
    line-height: 30px;
    max-width: 624px;
  }

  .faq-cta-section {
    padding: 60px;
  }
  .faq-cta-inner {
    width: 100%;
  }
  .faq-cta-title {
    font-size: 32px;
    max-width: 648px;
  }
  .faq-cta-description {
    font-size: 16px;
    line-height: 30px;
    max-width: 648px;
  }
  .faq-cta-button {
    width: 531px;
    height: 57px;
  }
}


/* --- FAQ DESKTOP (>=1440px) --- */
@media (min-width: 1440px) {

  .faq-banner {
    padding: 100px 60px 43px;
  }
  .faq-banner-inner {
    width: 1316px;
  }
  .faq-banner-title {
    font-size: 40px;
    width: 682px;
  }
  .faq-banner-description {
    width: 687px;
  }

  .faq-list {
    width: 1320px;
  }
  .faq-answer {
    max-width: 903px;
  }

  .faq-cta-title {
    font-size: 40px;
    max-width: 100%;
  }
  .faq-cta-description {
    font-size: 20px;
    max-width: 797px;
  }
}


/* ============================================================
   ABOUT PAGE
   Breakpoints: Mobile (<768px), Tablet (768-1439px), Desktop (>=1440px)
   ============================================================ */

.page-about {
  width: 100%;
  min-width: 375px;
  display: flex;
  flex-direction: column;
}

/* --- About Story Banner --- */
.about-story-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 0 30px;
  width: 100%;
  background-image: url(img/section-banner-2.jpg),
    linear-gradient(135deg, rgba(2,173,237,1) 0%, rgba(2,173,237,1) 30%, rgba(231,85,157,1) 60%, rgba(231,85,157,1) 100%);
  background-size: cover;
  background-position: 50% 50%;
}

.about-story-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-story-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}

.about-story-title {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #fff;
  font-size: 24px;
  text-align: start;
  line-height: normal;
  margin: 0;
  width: 305px;
}

.about-story-description {
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  margin: 0;
  width: 305px;
}

.about-story-logo {
  width: 297px;
  height: 153px;
  object-fit: cover;
}

/* --- About Team Section --- */
.about-team-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  width: 100%;
  background-color: #f3f6f8;
}

.about-team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-bottom: 20px;
  width: 315px;
}

.about-team-title {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #000;
  font-size: 24px;
  text-align: center;
  line-height: normal;
  margin: 0;
  width: 100%;
}

.about-team-description {
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: #000;
  font-size: 12px;
  line-height: 20px;
  margin: 0;
  width: 100%;
}

.about-team-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about-team-card {
  display: flex;
  flex-direction: column;
  width: 301px;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--m3-elevation-light-4);
  position: relative;
}

.about-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 10px;
  background: linear-gradient(136deg, rgba(0,174,239,1) 0%, rgba(236,83,156,1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.about-team-photo {
  width: 121px;
  height: 121px;
  object-fit: cover;
}

.about-team-card-title {
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: #000;
  font-size: 20px;
  text-align: center;
  line-height: 20px;
  margin: 0;
  width: 100%;
}

.about-team-card-role {
  font-size: 12px;
}

.about-team-card-bio {
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: #000;
  font-size: 12px;
  line-height: 20px;
  margin: 0;
  width: 100%;
}

/* --- About CTA Section --- */
.about-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: linear-gradient(45deg, rgba(216,66,121,1) 0%, rgba(2,119,189,1) 100%);
}

.about-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 315px;
}

.about-cta-title {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: normal;
  margin: 0;
  width: 100%;
}

.about-cta-description {
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  margin: 0;
  width: 294px;
}

.about-cta-button {
  width: 255px;
  height: 27px;
  object-fit: cover;
}


/* --- About TABLET (768px — 1439px) --- */
@media (min-width: 768px) {

  .about-story-banner {
    padding: 100px 60px 60px;
    overflow: hidden;
  }
  .about-story-inner {
    width: 648px;
    gap: 30px;
  }
  .about-story-text {
    gap: 30px;
  }
  .about-story-title {
    font-size: 32px;
    width: 100%;
  }
  .about-story-description {
    font-size: 16px;
    line-height: 30px;
    width: 100%;
  }
  .about-story-logo {
    width: 269px;
    height: 138px;
  }

  .about-team-section {
    padding: 60px;
  }
  .about-team-header {
    width: 100%;
    gap: 20px;
    padding-bottom: 30px;
  }
  .about-team-title {
    font-size: 40px;
  }
  .about-team-description {
    font-size: 16px;
    line-height: 30px;
    max-width: 586px;
  }
  .about-team-cards {
    gap: 60px;
    width: 100%;
  }
  .about-team-card {
    width: 423px;
    height: 495px;
  }
  .about-team-card-title {
    text-align: left;
  }

  .about-cta-section {
    padding: 60px 60px 38px;
  }
  .about-cta-text {
    width: 100%;
  }
  .about-cta-title {
    font-size: 32px;
    max-width: 592px;
  }
  .about-cta-description {
    font-size: 16px;
    line-height: 30px;
    width: 592px;
  }
  .about-cta-button {
    width: 531px;
    height: 57px;
  }
}


/* --- About DESKTOP (>=1440px) --- */
@media (min-width: 1440px) {

  .about-story-inner {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 149px;
    width: 100%;
  }
  .about-story-text {
    gap: 20px;
    max-width: 810px;
  }
  .about-story-title {
    font-size: 40px;
    text-align: left;
    width:300px;
  }
  .about-story-description {
    width: 809px;
  }
  .about-story-logo {
    width: 331px;
    height: 170px;
    margin-top: 68px;
  }

  .about-team-section {
    gap: 60px;
  }
  .about-team-title {
    font-size: 40px;
  }
  .about-team-description {
    max-width: 903px;
    text-align: center;
  }
  .about-team-cards {
    flex-direction: row;
    justify-content: center;
  }
  .about-team-card {
    width: 423px;
    height: 495px;
  }

  .about-cta-section {
    gap: 30px;
    padding: 60px;
  }
  .about-cta-title {
    font-size: 40px;
    max-width: 100%;
  }
  .about-cta-description {
    font-size: 20px;
    width: 917px;
  }
}

/* ===== Privacy Footer Link ===== */
.site-footer-link {
  display: block;
  margin-top: 24px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-align: center;
}
.site-footer-link:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.7);
}


/* ============================================================
   PRIVACY PAGE
   Breakpoints: Mobile (<768px), Tablet (768-1439px), Desktop (>=1440px)
   ============================================================ */

.page-privacy {
  width: 100%;
  min-width: 375px;
  display: flex;
  flex-direction: column;
}

/* --- Privacy Banner --- */
.privacy-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 143px 30px 60px;
  width: 100%;
  background-image: url(img/section-faq-banner-2.jpg),
    linear-gradient(135deg, rgba(2,173,237,1) 0%, rgba(2,173,237,1) 30%, rgba(231,85,157,1) 60%, rgba(231,85,157,1) 100%);
  background-size: cover;
  background-position: 50% 50%;
}

.privacy-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.privacy-banner-title {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: normal;
  margin: 0;
  width: 100%;
}

.privacy-banner-description {
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  margin: 0;
  width: 312px;
  align-self: center;
}

/* --- Privacy Content --- */
.privacy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  width: 100%;
  background-color: #fff;
}

.privacy-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 315px;
}

.privacy-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.privacy-question {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #000;
  font-size: 20px;
  line-height: normal;
  margin: 0;
}

.privacy-answer {
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: #090909;
  font-size: 12px;
  line-height: 22px;
  margin: 0;
  max-width: 303px;
}

/* --- Privacy CTA Section --- */
.privacy-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
  width: 100%;
  background: linear-gradient(45deg, rgba(216,66,121,1) 0%, rgba(2,119,189,1) 100%);
}

.privacy-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 255px;
}

.privacy-cta-title {
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: normal;
  margin: 0;
}

.privacy-cta-description {
  font-family: "Roboto", Helvetica;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  margin: 0;
}


/* --- Privacy TABLET (768px — 1439px) --- */
@media (min-width: 768px) {

  .privacy-banner {
    padding: 100px 60px 60px;
  }
  .privacy-banner-inner {
    width: 648px;
    gap: 30px;
    align-self: center;
  }
  .privacy-banner-title {
    font-size: 32px;
    text-align: left;
  }
  .privacy-banner-description {
    font-size: 16px;
    line-height: 30px;
    width: 100%;
  }

  .privacy-content {
    padding: 60px;
  }
  .privacy-list {
    width: 648px;
    gap: 40px;
  }
  .privacy-question {
    font-size: 24px;
  }
  .privacy-answer {
    font-size: 16px;
    line-height: 30px;
    max-width: 624px;
  }

  .privacy-cta-section {
    padding: 60px;
  }
  .privacy-cta-inner {
    width: 100%;
  }
  .privacy-cta-title {
    font-size: 32px;
    max-width: 648px;
  }
  .privacy-cta-description {
    font-size: 16px;
    line-height: 30px;
    max-width: 648px;
  }
}


/* --- Privacy DESKTOP (>=1440px) --- */
@media (min-width: 1440px) {

  .privacy-banner {
    padding: 100px 60px 43px;
  }
  .privacy-banner-inner {
    width: 1316px;
  }
  .privacy-banner-title {
    font-size: 40px;
    width: 682px;
  }
  .privacy-banner-description {
    width: 687px;
  }

  .privacy-list {
    width: 1320px;
  }
  .privacy-answer {
    max-width: 903px;
  }

  .privacy-cta-title {
    font-size: 40px;
    max-width: 100%;
  }
  .privacy-cta-description {
    font-size: 20px;
    max-width: 797px;
  }
}
