* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1e1600;
  background: #0f0f0f;
  overflow-x: hidden;
  max-width: 100%;
}

#page-root {
  overflow-x: hidden;
  max-width: 100%;
}

/* Keep hero at 100%; shrink following sections slightly (like ~90% zoom) */
@media (min-width: 1024px) {
  .section_2_bg_gradient,
  .section_how_apix,
  .section_3_heading_section,
  .section_4_discover,
  .section_5_team,
  .section_6_cta {
    zoom: 0.9;
  }
}

/* ===== Global Scroll Animation Utilities Start ===== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-team-title {
  opacity: 0.1;
  transform: translateY(-100px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.reveal-team-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-team-card {
  opacity: 0.1;
  transform: scale(0.5);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.reveal-team-card.is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-team-title,
  .reveal-team-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ===== Global Scroll Animation Utilities End ===== */

/* ===== Section 1 Start: Hero Area (Header + Banner + Mobile Hero) ===== */
.hero-section {
 position: relative;
 min-height: 108vh;
 height: auto;
 width: 100%;
 overflow: hidden;
 background: #f4f8ff;
 /* reserve space for fixed .hero-header (84px bar) */
 padding-top: 84px;
}

/* Hero background layer 1: skewed yellow panel */
.hero-skew-wrap {
 position: absolute;
 top: 0;
 left: 0;
 width: 87%;
 margin-left: -240px;
 height: 100%;
 transform: skewX(-12deg);
 background: linear-gradient(231deg, #ffeaab 0.59%, #ffeebc 0.59%, #ffd967 65.32%);
 z-index: 1;
}
/* Hero background layer 2: patterned texture over gradient */
.hero-skew-inner {
 width: 100%;
 height: 100%;
 background: url("../assets/section_1.svg") center/cover no-repeat;
 opacity: 0.95;
}

/* Hero content layer: text, actions, and hero visual */
.hero-content {
 position: relative;
 z-index: 2;
 max-width: 760px;
}

.hero-content h1,
.hero-rotator__slide h1 {
color: #1E1600;
font-family: "Plus Jakarta Sans";
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.hero-content p,
.hero-rotator__slide p {
 color: var(--Dark-Gray, #454545);
font-family: "Plus Jakarta Sans";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 160% */
margin: 0;
}

.hero-rotator {
 position: relative;
 min-height: 340px;
 margin-bottom: 24px;
}

.hero-rotator__slide {
 opacity: 1;
 transition: opacity 0.35s ease;
}

.hero-rotator__copy {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 width: fit-content;
 max-width: min(100%, 480px);
}

.hero-rotator__copy p {
 flex: 1 1 auto;
 min-width: 0;
}

.hero-rotator__link {
 display: flex;
 flex-shrink: 0;
 align-items: center;
 justify-content: center;
 padding: 6px;
 margin-top: 4px;
 border-radius: 999px;
 border: 3px solid #ffebae;
 background: #ffc000;
 line-height: 0;
 transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-rotator__link:hover {
 transform: translateY(-1px);
 background: #ffcb2d;
}

.hero-rotator__link img {
 display: block;
 width: 17px;
 height: 17px;
}

.hero-rotator__slide.is-switching {
 opacity: 0;
}

.hero-rotator__list {
 margin: 0;
 padding: 0;
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 8px;
}

.hero-rotator__list li {
 position: relative;
 padding-left: 18px;
 color: #1e1600;
 font-size: 15px;
 line-height: 1.45;
 font-weight: 500;
}

.hero-rotator__list li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0.55em;
 width: 6px;
 height: 6px;
 border-radius: 50%;
 background: #3c2115;
}

.hero-rotator__dots {
 display: flex;
 align-items: center;
 gap: 8px;
 margin-top: 20px;
}

.hero-rotator__dot {
 width: 8px;
 height: 8px;
 border-radius: 999px;
 background: rgba(30, 22, 0, 0.28);
 transition: width 0.25s ease, background-color 0.25s ease;
}

.hero-rotator__dot.is-active {
 width: 28px;
 background: #ffcb2d;
}

.hero-header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 width: 100%;
 max-width: none;
 margin: 0;
 z-index: 90;
 height: 84px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 20px clamp(20px, 5vw, 80px);
 transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
 backdrop-filter 0.25s ease;
 background: transparent;
 border-radius: 0;
 border: none;
 box-shadow: none;
}

/* Full-width top bar (edge-to-edge), not a floating pill */
.hero-header.hero-header--scrolled {
 top: 0;
 left: 0;
 right: 0;
 width: 100%;
 max-width: none;
 margin: 0;
 background: #fdfcf0;
 border-radius: 0;
 box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
 backdrop-filter: blur(8px);
 -webkit-backdrop-filter: blur(8px);
 border: none;
 border-bottom: 1px solid rgba(30, 22, 0, 0.06);
}

.hero-logo {
 width: 180px;
 height: auto;
}

.hero-nav {
 display: flex;
 align-items: center;
 gap: 36px;
}

.hero-menu-btn {
 display: none;
 border: 0;
 background: transparent;
 width: 42px;
 height: 42px;
 padding: 8px;
 border-radius: 10px;
 cursor: pointer;
}

.hero-menu-btn__icon {
 display: block;
 width: 100%;
 height: 100%;
}

.hero-menu {
 position: absolute;
 top: 68px;
 right: 20px;
 width: 230px;
 background: #fff;
 border-radius: 12px;
 box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
 border: 1px solid rgba(30, 22, 0, 0.08);
 padding: 12px;
 display: none;
 z-index: 100;
}

.hero-header.is-menu-open .hero-menu {
 display: block;
}

.hero-menu__close {
 position: absolute;
 top: 8px;
 right: 8px;
 border: 0;
 background: transparent;
 cursor: pointer;
 font-size: 20px;
 line-height: 1;
 color: #1e1600;
}

.hero-menu a {
 display: block;
 padding: 10px 10px;
 border-radius: 10px;
 color: #1e1600;
 text-decoration: none;
 font-weight: 600;
 font-size: 14px;
}

.hero-menu a:hover {
 background: rgba(30, 22, 0, 0.06);
}

.hero-menu__demo {
 margin-top: 6px;
 /* background: rgba(60, 33, 21, 0.06); */
}

.hero-nav a {
 color: #1e1600;
 text-decoration: none;
 font-weight: 600;
 padding: 10px 18px;
 border-radius: 999px;
 border: 1px solid transparent;
 transition: background-color 0.2s ease, border-color 0.2s ease;

 color: #1E1600;
text-align: center;
font-family: "Plus Jakarta Sans";
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

.hero-nav a:hover {
 background: rgba(255, 255, 255, 0.22);
 border-color: rgba(255, 255, 255, 0.35);
}

.hero-nav a:focus-visible {
 outline: none;
 background: rgba(255, 255, 255, 0.22);
 border-color: rgba(255, 255, 255, 0.35);
}
/* Hero main container with desktop background artwork */
.hero-main {
 position: relative;
 z-index: 2;
 min-height: calc(100vh - 84px);
 display: grid;
 grid-template-columns: minmax(500px, 46%) minmax(620px, 54%);
 align-items: center;
 gap: 20px;
 padding: 24px 24px 44px 72px;
}

.hero-actions {
 display: flex;
 flex-direction: column;
 gap: 12px;
}

.hero-btn {
 border: 0;
 border-radius: 36px;
 background: #3c2115;
 color: #fff;
 padding: 13px 27px;
 font-weight: 600;
 font-size: 14px;
 cursor: pointer;
 line-height: 1;
 transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
 text-decoration: none;
 display: inline-flex;
 align-items: center;
 justify-content: center;
}

.hero-btn:hover {
 background: #2f3f68;
 color: #fff;
}

.hero-btn:active {
 transform: translateY(1px);
}

.hero-btn:focus-visible {
 outline: 2px solid #2f3f68;
 outline-offset: 2px;
}

.hero-btn-nav {
 padding: 14px 30px;
 min-width: 152px;
}

.hero-actions .hero-btn {
 width: 236px;
 min-height: 58px;
 font-size: 14px;
}

.hero-dashboard-wrap {
 position: relative;
 min-height: auto;
 display: flex;
 align-items: flex-start;
 justify-content: flex-end;
 overflow: visible;
}

.hero-dashboard {
 width: min(1400px, 126%);
 height: 620px;
 /* height: auto; */
 display: block;
 transform: translateX(16%) scale(1);
 transform-origin: top right;
 border-radius: 16px;
 animation: hero-dashboard-in 900ms ease-out both;
}

@keyframes hero-dashboard-in {
 0% {
 opacity: 0;
 transform: translateX(26%) scale(0.92);
 }
 100% {
 opacity: 1;
 transform: translateX(16%) scale(1);
 }
}

@media (max-width: 768px) {
 .hero-section {
 min-height: auto;
 height: auto;
 padding-bottom: 60px;
 padding-top: 96px;
 }

 .hero-skew-wrap {
 left: 0;
 width: 100%;
 margin-left: -80px;
 transform: skewX(-8deg);
 height: 100%;
 }

 .hero-header {
 padding: 16px 20px;
 flex-wrap: wrap;
 gap: 10px;
 height: auto;
 }

 .hero-nav {
 display: none;
 }

 .hero-btn-nav {
 display: none;
 }

 .hero-main {
 min-height: auto;
 padding: 16px 24px 20px;
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: 20px;
 }

 .hero-content {
 max-width: 100%;
 }

 .hero-menu-btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 }

 .hero-content h1,
 .hero-rotator__slide h1 {
 font-size: 28px;
 line-height: 34px;
 margin: 0 0 10px;
 padding: 0;
 }

 .hero-rotator {
 min-height: 0;
 margin-bottom: 16px;
 }

 .hero-rotator__copy {
 margin-inline: auto;
 max-width: 100%;
 text-align: left;
 }

 .hero-rotator__list {
 align-items: center;
 }

 .hero-rotator__list li {
 text-align: left;
 font-size: 14px;
 }

 .hero-rotator__dots {
 justify-content: center;
 }

 .hero-actions .hero-btn {
 width: 160px;
 min-height: 40px;
 font-size: 12px;
 border-radius: 999px;
 }

 .hero-actions {
 width: 100%;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 12px;
 margin-inline: auto;
 }

 .hero-dashboard-wrap {
 min-height: auto;
 width: 100%;
 justify-content: center;
 margin-top: 6px;
 }

 .hero-dashboard {
 width: min(382px, 100%);
 max-width: 382px;
 height: 210px;
 max-height: 210px;
 object-fit: cover;
 object-position: center center;
 border-radius: 8px;
 border: 1px solid #f6f6f3;
 box-shadow: 0 10px 24px 12px rgba(255, 200, 45, 0.05);
 background: #fff;
 transform: none;
 animation: none;
 margin-inline: auto;
 }
}

/* ===== Section 1 End: Hero Area (Header + Banner + Mobile Hero) ===== */

/* ===== Section 2 Start: What We Solve (Threat Stats + Cards) ===== */
.section_2_bg_gradient {
 position: relative;
 z-index: 1;
 background: linear-gradient(
 0deg,
 rgba(0, 0, 0, 0.8) 0%,
 rgba(0, 0, 0, 0.8) 100%
 ),
 url("../assets/hacker.svg") lightgray 50% / cover no-repeat;
 background-attachment: scroll;
 padding: 100px 20px;
 color: #fff;
 min-height: 100vh;
 height: auto;
 overflow: hidden;
 scroll-margin-top: 84px;
}

.section_2_container {
 max-width: 1320px;
 margin: 0 auto;
}

.section_2_intro {
 text-align: center;
 max-width: 900px;
 margin: 0 auto 56px;
}

.section_2_intro h2 {
 margin: 0 0 16px;
 font-size: clamp(1.5rem, 2vw, 2rem);
 font-weight: 700;
 color: #fff;
}

.section_2_intro p {
 margin: 0;
 font-size: clamp(0.95rem, 2vw, 1.15rem);
 line-height: 1.65;
 color: #c8c8c8;
}

.section_2_row {
 display: flex;
 flex-wrap: nowrap;
 align-items: flex-start;
 justify-content: flex-start;
 gap: 40px;
}

.section_2_col_left {
 flex: 1 1 410px;
 min-height: 190px;
 max-width: 410px;
 padding-top: 170px;
}

.stat-panel {
 width: 100%;
 max-width: 410px;
 color: #fff;
 display: flex;
 flex-direction: column;
 gap: 30px;
 transition: opacity 260ms ease, transform 260ms ease;
}

.stat-panel.is-switching {
 opacity: 0;
 transform: translateY(8px);
}

.stat-panel__top {
 display: flex;
 flex-direction: column;
 gap: 10px;
}

.stat-panel__year {
 font-size: 14px;
 font-weight: 400;
 line-height: 1;
 color: #fff;
}

.stat-panel__value-wrap {
 display: flex;
 align-items: flex-end;
 gap: 6px;
 flex-wrap: wrap;
}

.stat-panel__value-wrap--lead {
 align-items: flex-start;
}

.stat-panel__value-wrap--second {
 margin-top: -4px;
}

.stat-panel__value {
 font-size: 40px;
 font-weight: 700;
 line-height: 1;
}

.stat-panel__percent {
 font-size: 40px;
 font-weight: 600;
 line-height: 1;
 margin-right: 0;
}

.stat-panel__suffix {
 font-size: 14px;
 font-weight: 400;
 line-height: 1.35;
 color: #fff;
}

.stat-panel__source {
 display: flex;
 flex-direction: column;
 gap: 8px;
 font-size: 12px;
 line-height: 1.35;
 color: #fff;
}

.stat-panel__source a {
 color: #fff;
 font-size: 12px;
 font-weight: 400;
 text-decoration: underline;
 text-underline-offset: 2px;
}

.stat-panel__identities {
 font-size: 14px;
 font-weight: 600;
 line-height: 1;
 padding-bottom: 6px;
 color: #fff;
}

.stat-indicators {
 display: flex;
 gap: 6px;
 align-items: center;
}

.stat-indicators__dot {
 width: 6px;
 height: 6px;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.35);
 transition: all 220ms ease;
}

.stat-indicators__dot--active {
 width: 22px;
 border-radius: 999px;
 background: #ffcb2d;
}

.section_2_col_cards {
 flex: 0 1 560px;
 width: 100%;
 max-width: 560px;
 margin-left: auto;
 display: flex;
 flex-direction: column;
 gap: 18px;
}

/* What We Solve stats card specs from Figma */
.threat-card {
 position: relative;
 width: 100%;
 max-width: 560px;
 padding: 30px;
 background: #ffffff;
 border-radius: 16px;
 border-left: 12px solid #ffcb2d;
 box-shadow: 0 4px 45.8px 0 rgba(0, 0, 0, 0.04);
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 10px;
 min-height: 160px;
 overflow: hidden;
 animation: threat-card-in 700ms ease both;
}

.threat-card::before {
 content: "";
 position: absolute;
 top: 0;
 left: -45%;
 width: 45%;
 height: 4px;
 background: linear-gradient(90deg, transparent 0%, #ffcb2d 45%, #fff5cd 100%);
 animation: top-sweep 3.2s linear infinite;
}

.threat-card:nth-child(2) {
 animation-delay: 120ms;
}

.threat-card:nth-child(3) {
 animation-delay: 240ms;
}

.threat-card__num {
 position: absolute;
 top: -10px;
 right: 30px;
 font-size: 40px;
 font-weight: 800;
 line-height: 110px;
 color: #1e1600;
 opacity: 0.08;
 user-select: none;
 pointer-events: none;
}

.threat-card__title {
 margin: 0;
 padding-right: 56px;
 font-size: clamp(16px, 2vw, 20px);
 font-weight: 500;
 color: #1e1600;
 line-height: 1.25;
 width: 95%;
}

.threat-card__desc {
 margin: 0;
 font-size: 13px;
 font-weight: 400;
 line-height: 1.55;
 color: #808080;
}

@keyframes top-sweep {
 0% {
 left: -45%;
 }
 100% {
 left: 100%;
 }
}

@keyframes threat-card-in {
 0% {
 opacity: 0;
 transform: translateX(24px);
 }
 100% {
 opacity: 1;
 transform: translateX(0);
 }
}

@media (max-width: 991px) {
 .section_2_row {
 flex-direction: column;
 align-items: center;
 gap: 24px;
 }

 .section_2_col_left {
 display: block;
 width: 100%;
 max-width: 430px;
 min-height: auto;
 padding-top: 0;
 }

 .section_2_col_cards {
 max-width: 100%;
 margin-left: 0;
 }

 .threat-card__title {
 font-size: 20px;
 }

 .threat-card__desc {
 font-size: 12px;
 }

 .stat-panel {
 max-width: 100%;
 gap: 20px;
 }

 .stat-panel__value {
 font-size: 44px;
 }

 .stat-panel__percent {
 font-size: 44px;
 }
}

/* ===== Section 2 End: What We Solve (Threat Stats + Cards) ===== */

/* ===== Section 3 Start: Why Choose Us (Feature Cards Carousel) ===== */
.section_3_heading_section {
 position: relative;
 z-index: 2;
 background: #f8f8f8;
 min-height: 100vh;
 padding: 64px 20px 56px;
 margin-top: 0;
 scroll-margin-top: 84px;
}

.section_3_heading_wrap {
 max-width: 1280px;
 margin: 0 auto;
 text-align: center;
}

.section_3_heading_wrap h2 {
 margin: 0;
 color: #1e1600;
 font-size: 20px;
 font-weight: 700;
 line-height: 1.3;
}

.section_3_cards {
 margin-top: 28px;
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 column-gap: 10px;
 row-gap: 14px;
 align-items: start;
}

.why-card {
 position: relative;
 width: 100%;
 max-width: 100%;
 min-height: 305px;
 padding: 40px;
 border-radius: 16px;
 background: #fff;
 box-shadow: 0 4px 30px 0 rgba(10, 10, 10, 0.1);
 overflow: hidden;
 text-align: left;
}

.why-card::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0;
 width: 10px;
 height: 305px;
 background: #ffcb2d;
 z-index: 1;
}

.why-card__content {
 position: relative;
 z-index: 2;
 width: 60%;
}

.why-card__content h3 {
 margin: 0 0 10px;
 color: #1e1600;
 font-size: 20px;
 font-weight: 700;
 line-height: 1.1;
}

.why-card__content ul {
 margin: 0;
 padding-left: 18px;
 display: flex;
 flex-direction: column;
 gap: 7px;
}

.why-card__content li {
 color: #1e1600;
 font-size: 12px;
 font-weight: 400;
 line-height: 1.55;
}

.why-card__image {
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 370px;
  height: auto;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

.why-card__image--second {
  right: -86px;
  bottom: -92px;
  width: 410px;
  transform: rotate(15deg);
}

.why-card--third {
  grid-column: 1 / -1;
  min-height: 305px;
  overflow: visible;
}

.why-card__content--third {
  width: 58%;
}

.why-card__image--third {
  right: 22px;
  bottom: -40px;
  width: 370px;
  transform: none;
  z-index: 10;
}

@media (max-width: 767px) {
 .section_3_cards {
 display: flex;
 gap: 20px;
 overflow-x: auto;
 overflow-y: hidden;
 scroll-snap-type: x mandatory;
 -webkit-overflow-scrolling: touch;
 padding: 0 20px 6px;
 margin: 24px -20px 0;
 }

 .section_3_cards::-webkit-scrollbar {
 display: none;
 }

 .why-card {
 flex: 0 0 calc(100% - 40px);
 max-width: calc(100% - 40px);
 min-height: 476px;
 padding: 24px;
 scroll-snap-align: start;
 }

 .why-card::before {
 width: 8px;
 height: 100%;
 }

 .why-card__content {
 width: 100%;
 }

 .why-card__content h3 {
 font-size: 20px;
 }

 .why-card__content li {
 font-size: 13px;
 line-height: 1.5;
 }

 .why-card__image {
 position: static;
 width: 100%;
 transform: none;
 margin-top: 12px;
 }

 .why-card--third {
 grid-column: auto;
 }
}
/* ===== Section 3 End: Why Choose Us (Feature Cards Carousel) ===== */

/* ===== How APIx Works (section4) ===== */
.section_how_apix {
 position: relative;
 z-index: 2;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 justify-content: flex-start;
 background: #fff2ce;
 padding: 28px 80px 64px;
 overflow: hidden;
 scroll-margin-top: 84px;
 box-sizing: border-box;
}

/* Bottom half: honeycomb background image */
.section_how_apix::after {
 content: "";
 position: absolute;
 left: 0;
 right: 0;
 bottom: 0;
 height: 48%;
 z-index: 0;
 pointer-events: none;
 background: url("../assets/apix-Work-bimg.png") center bottom / cover no-repeat;
 -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 100%);
 mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 100%);
}

.section_how_apix__inner {
 position: relative;
 z-index: 1;
 width: 100%;
 max-width: 1119px;
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 40px;
}

.section_how_apix__intro {
 width: 100%;
 max-width: 940px;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 16px;
 text-align: center;
}

.section_how_apix__intro h2 {
 margin: 0;
 color: #131313;
 font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 24px;
 font-weight: 700;
 line-height: 1.3;
 text-align: center;
}

.section_how_apix__intro p {
 margin: 0;
 color: #131313;
 font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 16px;
 font-weight: 400;
 line-height: 24px;
 text-align: center;
 align-self: stretch;
}

.section_how_apix__grid {
 width: 100%;
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 40px;
 align-self: stretch;
 padding-top: 16px;
}

.how-card {
 position: relative;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 width: 100%;
 padding: 30px;
 gap: 14px;
 border-radius: 16px;
 border-top: 4px solid #fdda75;
 background: #fffefb;
 box-shadow: 0 4px 45.8px 0 rgba(0, 0, 0, 0.1);
 overflow: visible;
}

.how-card__icon {
 position: absolute;
 left: -20px;
 top: -20px;
 z-index: 2;
 box-sizing: border-box;
 width: 40px;
 height: 40px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 46px;
 background: #fdda75;
 border: 5.333px solid #fff2ce;
}

.how-card__icon img {
 width: 18px;
 height: 18px;
 display: block;
 object-fit: contain;
}

.how-card__body {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 14px;
 align-self: stretch;
 width: 100%;
}

.how-card__body h3 {
 margin: 0;
 color: #131313;
 font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 18px;
 font-weight: 700;
 line-height: 1.3;
}

.how-card__body > p {
 margin: 0;
 color: #454545;
 font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 14px;
 font-weight: 400;
 line-height: 1.5;
}

.how-card__body ul {
 margin: 0;
 padding: 0;
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 6px;
 align-self: stretch;
}

.how-card__body li {
 position: relative;
 padding-left: 14px;
 color: #454545;
 font-family: "Plus Jakarta Sans", sans-serif;
 font-size: 13px;
 font-weight: 400;
 line-height: 22px;
 align-self: stretch;
}

.how-card__body li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 8px;
 width: 4px;
 height: 4px;
 border-radius: 1px;
 background: #454545;
}

@media (max-width: 1100px) {
 .section_how_apix {
 padding: 24px 40px 48px;
 }

 .section_how_apix__grid {
 gap: 28px 24px;
 }
}

@media (max-width: 900px) {
 .section_how_apix__grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }
}

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

 .section_how_apix__inner {
 gap: 28px;
 }

 .section_how_apix__intro {
 gap: 12px;
 }

 .section_how_apix__intro h2 {
 font-size: 22px;
 }

 .section_how_apix__intro p {
 font-size: 14px;
 line-height: 22px;
 }

 .section_how_apix__grid {
 grid-template-columns: 1fr;
 gap: 28px;
 padding-top: 12px;
 }

 .how-card {
 padding: 24px 20px;
 }

 .how-card__icon {
 left: -12px;
 top: -16px;
 }
}

/* ===== Section 4 Start: Discover Integrations / Plugins ===== */
.section_4_discover {
  overflow: hidden;
  background: #f4f8ff;
  padding: 80px 20px;
  scroll-margin-top: 84px;
}

@media (min-width: 768px) {
  .section_4_discover {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (min-width: 1024px) {
  .section_4_discover {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (min-width: 1536px) {
  .section_4_discover {
    padding-left: 200px;
    padding-right: 200px;
  }
}

.section_4_discover__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section_4_discover__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

@media (min-width: 768px) {
  .section_4_discover__intro {
    padding: 0 5rem;
  }
}

@media (min-width: 1024px) {
  .section_4_discover__intro {
    padding: 0 11rem;
  }
}

.section_4_discover__intro h2 {
  margin: 0;
  color: #1e1600;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section_4_discover__intro h2 {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .section_4_discover__intro h2 {
    font-size: 30px;
  }
}

@media (min-width: 1536px) {
  .section_4_discover__intro h2 {
    font-size: 32px;
  }
}

.section_4_discover__intro p {
  margin: 0;
  color: #808080;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .section_4_discover__intro p {
    font-size: 18px;
  }
}

@media (min-width: 1536px) {
  .section_4_discover__intro p {
    font-size: 22px;
  }
}

.section_4_discover__scroll {
  position: relative;
  width: 100%;
  height: 100%;
}

.section_4_discover__scroll-inner {
  padding-top: 80px;
  width: 100%;
  position: relative;
  perspective: 1000px;
}

.section_4_discover__card {
  margin: -48px auto 0;
  width: 100%;
  max-width: 100%;
  border: 4px solid #fff;
  border-radius: 12px;
  padding: 8px;
  box-shadow:
    0 0 #0000004d,
    0 9px 20px #0000004a,
    0 37px 37px #00000042,
    0 84px 50px #00000026,
    0 149px 60px #0000000a,
    0 233px 65px #00000003;
}

@media (min-width: 768px) {
  .section_4_discover__card {
    padding: 16px;
  }
}

.section_4_discover__card-inner {
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section_4_discover__iframe {
  width: min(100%, 400px);
  height: 250px;
  border: 0;
  background: transparent;
  display: block;
}

@media (min-width: 640px) {
  .section_4_discover__iframe {
    width: min(100%, 700px);
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .section_4_discover__iframe {
    width: min(100%, 1000px);
    height: 550px;
  }
}

@media (min-width: 1536px) {
  .section_4_discover__iframe {
    width: min(100%, 1200px);
    height: 600px;
  }
}

@media (max-width: 767px) {
  .section_4_discover {
    padding: 64px 16px 72px;
  }

  .section_4_discover__scroll-inner {
    padding-top: 48px;
  }
}

/* ===== Section 4 End: Discover Integrations / Plugins ===== */

/* ===== Section 5 Start: Team Section ===== */
.section_5_team {
  height: auto;
  min-height: 90vh;
  padding: 108px 80px;
  /* Figma: semi-transparent conic — needs a light base or dark body bleeds through */
  background:
    conic-gradient(from 201deg at 88.88% 0%, rgba(255, 214, 86, 0.61) 0deg, rgba(253, 130, 22, 0.62) 360deg),
    #fff9f4;
}

.section_5_team__wrap {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.section_5_team__wrap h2 {
  margin: 4 0 8px;
  color: #1e1600;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}

.section_5_team__wrap p {
  margin: 0 auto 32px;
  width: min(100%, 599px);
  max-width: 866px;
  color: #454545;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.team-card {
  position: relative;
  width: 250px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  background: #5a4238;
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(0deg, #141414 26.84%, rgba(0, 0, 0, 0) 94.74%);
}

.team-card__info h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-align: left;
}

.team-card__info span {
  display: block;
  margin-top: 2px;
  color: #d9d9d9;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.team-card__info a img {
  width: 30px;
  height: 30px;
}

@media (max-width: 991px) {
  .section_5_team {
    padding: 80px 20px;
    min-height: auto;
  }

  .team-grid {
    gap: 14px;
  }

  .team-card {
    width: calc(50% - 7px);
    max-width: 180px;
    height: 252px;
  }

  .team-card__info h3 {
    font-size: 14px;
  }

  .team-card__info span {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .section_5_team {
    padding: 60px 16px;
  }
}

/* ===== Section 5 End: Team Section ===== */

/* ===== Section 6 Start: Call To Action ===== */
.section_6_cta {
  background-color: #1e1600;
  padding: 100px 20px;
  position: relative;
}

.section_6_cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.28;
  pointer-events: none;
}

.section_6_cta__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.section_6_cta__wrap h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.section_6_cta__wrap p {
  margin: 0 auto 28px;
  max-width: 860px;
  color: #808080;
  font-size: clamp(12px, 1.8vw, 22px);
  line-height: 1.75;
}

.section_6_cta__btn {
  border: 0;
  border-radius: 40px;
  background: #fff;
  color: #1e1600;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 40px;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section_6_cta__btn:hover {
  transform: translateY(-1px);
}

/* ===== Section 6 End: Call To Action ===== */

/* ===== Section 7 Start: Site Footer ===== */
.site-footer {
  background: #0f0f0f;
  padding: 22px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__wrap {
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__left,
.site-footer__right {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7d7d7d;
  font-size: 16px;
  line-height: 1;
}

.site-footer__logo {
  width: 180px;
  height: auto;
}

.site-footer__meta {
  display: flex;
  align-items: center;
}

.site-footer__left a {
  color: #7d7d7d;
  text-decoration: none;
}

.site-footer__left a::before {
  content: "|";
  margin-right: 12px;
  color: #7d7d7d;
}

.site-footer__credit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__credit--dev {
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(125, 125, 125, 0.65);
}

.site-footer__design-by {
  height: 18px;
  width: auto;
}

.site-footer__developed-by {
  height: 50px;
  width: auto;
}

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

  .section_6_cta__btn {
    font-size: 16px;
    padding: 11px 22px;
    min-height: 44px;
  }

  .site-footer {
    padding: 18px 16px 22px;
  }

  .site-footer__wrap {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .site-footer__left,
  .site-footer__right {
    font-size: 13px;
    line-height: 1.45;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .site-footer__left {
    width: 100%;
    flex-direction: column;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    gap: 10px;
  }

  .site-footer__meta {
    font-size: 12px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .site-footer__left a::before {
    margin-right: 10px;
  }

  .site-footer__logo {
    width: 132px;
  }

  .site-footer__right {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .site-footer__credit {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    gap: 7px;
  }

  .site-footer__credit--dev {
    margin-left: 0;
    padding-left: 14px;
    border-left: 1px solid rgba(125, 125, 125, 0.65);
  }

  .site-footer__design-by {
    height: 15px;
  }

  .site-footer__developed-by {
    height: 36px;
  }
}

/* ===== Section 7 End: Site Footer ===== */

/* ===== Section 8 Start: Privacy Policy Page ===== */
.privacy-page {
  min-height: 100vh;
  background: #fff;
}

.privacy-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.privacy-header__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-logo {
  width: 150px;
  height: auto;
  display: block;
}

.privacy-back-btn {
  border-radius: 999px;
  background: #3c2115;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
}

.privacy-content {
  padding: 120px 20px 100px;
  background: #fff;
}

.privacy-content__wrap {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-title {
  text-align: center;
  margin-bottom: 48px;
}

.privacy-title h1 {
  margin: -98px 0 10px;
  font-size: clamp(28px, 3vw, 46px);
  color: #1e1600;
}

.privacy-title p {
  margin: 0;
  color: #808080;
  font-size: 14px;
  font-style: italic;
}

.privacy-block {
  margin-bottom: 34px;
}

.privacy-block h2 {
  margin: 0 0 14px;
  color: #1e1600;
  font-size: 20px;
}

.privacy-block p,
.privacy-block li {
  color: #808080;
  font-size: 14px;
  line-height: 1.65;
}

.privacy-block ul {
  margin: 0;
  padding-left: 24px;
}

.privacy-block code {
  background: #f3f4f6;
  border-radius: 6px;
  padding: 2px 8px;
  color: #1e1600;
  font-size: 14px;
}

.privacy-contact-box {
  background: #f9fafb;
  border-radius: 12px;
  padding: 22px;
}

.privacy-contact-box p {
  margin: 0;
  color: #1e1600;
}

.privacy-contact-box a {
  color: #2563eb;
  text-decoration: none;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 96px 20px 72px;
  }

  .privacy-title {
    margin-bottom: 34px;
  }

  .privacy-title p {
    font-size: 15px;
  }

  .privacy-block h2 {
    font-size: 24px;
  }

  .privacy-block p,
  .privacy-block li {
    font-size: 16px;
  }
}

/* ===== Section 8 End: Privacy Policy Page ===== */

/* ===== Section 9 Start: Demo Request Page + Modal ===== */
.demo-page {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #f4f8ff;
}

.demo-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f4f8ff;
  pointer-events: none;
  overflow: hidden;
}

.demo-page__bg .hero-skew-wrap {
  top: 0;
  left: 0;
  width: 100%;
  margin-left: -120px;
  height: 100%;
  min-height: 100%;
}

.demo-page__frost {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.demo-page__main {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px 28px;
  box-sizing: border-box;
}

.demo-page__home {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 20;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: #3c2115;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(60, 33, 21, 0.18);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-page__home:hover {
  background: #2f3f68;
  color: #fff;
  box-shadow: 0 6px 18px rgba(47, 63, 104, 0.22);
}

.demo-page__home:active {
  transform: translateY(1px);
}

.demo-page__home:focus-visible {
  outline: 2px solid #2f3f68;
  outline-offset: 2px;
}

/* Standalone page form — original proportions, no scrollbar */
.demo-modal.demo-modal--page,
.demo-modal.demo-modal--page.is-open {
  width: 100%;
  max-width: 532px;
  transform-origin: center center;
}

.demo-modal--page .demo-modal__dialog {
  width: 100%;
  max-width: 532px;
  margin: 0;
  padding: 36px 40px;
}

.demo-modal--page .demo-modal__brand {
  padding-right: 0;
}

.demo-modal--page .demo-modal__title {
  margin: 14px 0 20px;
  padding-bottom: 12px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.demo-modal--page .demo-form {
  gap: 14px;
}

.demo-modal--page .demo-form__field {
  gap: 6px;
}

.demo-modal--page .demo-form__field > span,
.demo-modal--page .demo-form__know-about-label {
  font-size: 14px;
  line-height: 1.4;
}

.demo-modal--page .demo-form input:not([type="checkbox"]),
.demo-modal--page .demo-form select,
.demo-modal--page .demo-form textarea {
  padding: 11px 12px;
  font-size: 14px;
}

.demo-modal--page .demo-form__know-about {
  gap: 8px;
}

.demo-modal--page .demo-form__checkbox-text {
  font-size: 14px;
  line-height: 18px;
}

.demo-modal--page .demo-form__submit {
  padding: 12px 16px;
  font-size: 16px;
}

.demo-modal--page.is-success .demo-modal__dialog {
  max-width: 494px;
  padding: 60px 30px;
}

/* Keep original look; scale whole card on shorter screens so it still fits */
@media (max-height: 900px) {
  .demo-page__main {
    padding: 64px 20px 20px;
  }

  .demo-modal.demo-modal--page:not(.is-success) {
    transform: scale(0.94);
  }
}

@media (max-height: 820px) {
  .demo-modal.demo-modal--page:not(.is-success) {
    transform: scale(0.88);
  }
}

@media (max-height: 740px) {
  .demo-page__home {
    top: 14px;
    left: 14px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .demo-page__main {
    padding: 56px 16px 16px;
  }

  .demo-modal.demo-modal--page:not(.is-success) {
    transform: scale(0.8);
  }
}

@media (max-width: 640px) {
  .demo-page__main {
    padding: 72px 16px 20px;
    justify-content: flex-start;
  }

  .demo-page__home {
    top: 14px;
    left: 14px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .demo-modal.demo-modal--page:not(.is-success) {
    transform: none;
  }

  .demo-modal--page .demo-modal__dialog {
    max-width: none;
    padding: 28px 20px;
  }

  .demo-modal--page .demo-form {
    gap: 12px;
  }

  .demo-modal--page .demo-form input:not([type="checkbox"]),
  .demo-modal--page .demo-form select {
    padding: 10px 12px;
  }
}

.demo-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.demo-modal.is-open {
  display: block;
}

/* Standalone page: do not cover the viewport (keeps Back link clickable) */
.demo-modal.demo-modal--page,
.demo-modal.demo-modal--page.is-open {
  position: relative;
  inset: auto;
  display: block;
  z-index: 1;
  pointer-events: auto;
}

.demo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.demo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(532px, calc(100vw - 32px));
  margin: 40px auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 70px rgba(111, 111, 111, 0.25);
  padding: 40px;
}

.demo-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  color: #1c1b1f;
  cursor: pointer;
}

.demo-modal__close:hover {
  opacity: 0.7;
}

.demo-modal__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding-right: 32px;
}

.demo-modal__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-modal__logo img {
  width: 27px;
  height: 28px;
  display: block;
}

.demo-modal__logo span {
  color: #1e1600;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.demo-modal__tagline {
  margin: 0;
  color: #4b4436;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.demo-modal__title {
  margin: 16px 0 24px;
  color: #1e1600;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
}

.demo-modal__form-view {
  display: block;
}

.demo-modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  text-align: center;
}

.demo-modal__success-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 999px;
  background: #25cd25;
  color: #fff;
  font-size: 28px;
  line-height: 56px;
  font-weight: 700;
}

.demo-modal__success-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.demo-modal__success h2,
.demo-modal__success h3 {
  margin: 0;
  color: #1e1600;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
}

.demo-modal__success p {
  margin: 0;
  color: #1e1600;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
}

.demo-modal.is-success .demo-modal__dialog {
  width: min(494px, calc(100vw - 32px));
  padding: 60px 30px;
  overflow: hidden;
}

.demo-modal.is-success .demo-modal__dialog::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: #25cd25;
  border-radius: 0 0 24px 24px;
}

.demo-modal.is-success .demo-modal__form-view {
  display: none;
}

.demo-modal.is-success .demo-modal__success {
  display: flex;
}

.demo-modal--page:not(.is-success) .demo-modal__close {
  display: none;
}

.demo-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 18px;
  width: 100%;
}

.demo-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.demo-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.demo-form__field > span {
  color: #111928;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.demo-form__field em,
.demo-form__know-about-label em {
  color: #f00;
  font-style: normal;
}

.demo-form input:not([type="checkbox"]),
.demo-form select,
.demo-form textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #f9f9f9;
  color: #1e1600;
  font-family: inherit;
  font-size: 14px;
  padding: 12px;
  outline: none;
}

.demo-form textarea {
  min-height: 80px;
  resize: vertical;
}

.demo-form__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.demo-form__phone select {
  flex: 0 0 100px;
  width: auto;
  padding-right: 10px;
}

.demo-form__phone input {
  flex: 1;
  width: auto;
}

/* Know about — Figma: Frame 1410085029 */
.demo-form__know-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.demo-form__know-about-label {
  color: #111928;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  padding: 0;
}

.demo-form__checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.demo-form__checkbox input {
  position: absolute;
  opacity: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  inset: 0 auto 0 0;
  cursor: pointer;
}

.demo-form__checkbox-box {
  display: flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  border: 1px solid #4d8be8;
  background: #fff;
  box-sizing: border-box;
}

.demo-form__checkbox input:focus-visible + .demo-form__checkbox-box {
  outline: 2px solid #4d8be8;
  outline-offset: 2px;
}

.demo-form__checkbox input:checked + .demo-form__checkbox-box {
  background: #4d8be8;
}

.demo-form__checkbox input:checked + .demo-form__checkbox-box::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

.demo-form__checkbox-text {
  color: #161615;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
}

.demo-form__submit {
  width: 100%;
  margin-top: 0;
  border: 0;
  border-radius: 41.4px;
  background: #3c2115;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 11.5px 34.5px;
  cursor: pointer;
}

.demo-form__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.demo-form__error {
  /* min-height: 20px; */
  margin: 4px 0 0;
  color: #c62828;
  font-size: 13px;
}

@media (max-width: 640px) {
  .demo-modal__dialog {
    margin: 20px auto;
    padding: 24px;
    border-radius: 18px;
  }

  .demo-modal__title {
    font-size: 15px;
  }

  .demo-form__row--2 {
    grid-template-columns: 1fr;
  }

  .demo-modal.is-success .demo-modal__dialog {
    padding: 48px 24px;
  }

  .demo-modal.is-success .demo-modal__dialog::after {
    border-radius: 0 0 18px 18px;
  }

  .demo-modal__success {
    gap: 24px;
  }

  .demo-modal__success h2,
  .demo-modal__success h3 {
    font-size: 18px;
    line-height: 20px;
  }

  .demo-modal__success p {
    font-size: 16px;
    line-height: 20px;
  }
}

/* ===== Section 9 End: Demo Request Modal ===== */
