*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Lestori-Satoshi";
  src: url(../font/Satoshi-Medium.woff) format("woff"),
    url(../font/Satoshi-Medium.otf) format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Lestori-Satoshi";
  src: url(../font/Satoshi-Bold.woff) format("woff"),
    url(../font/Satoshi-Bold.otf) format("opentype");
  font-weight: 600;

}

:root {
  --cream: #FBEFDE;
  --dark: #242424;
  --orange: #E8572A;
  --orange-light: #F4D5C8;
  --green-dark: #00886F;
  --green-mid: #3D6B5A;
  --gold: #D4A82A;
  --text-body: #3A3A3A;
  --text-muted: #6B6B6B;
  --border: #E0DAD0;
  --white: #FBFBFB;
  --whitesub: rgba(255, 255, 255, 0.55);
  --radius-lg: 44px;
  --radius: 30px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lestori-Satoshi', sans-serif;
  background: white;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.4;
}

h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
}

h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
}

.subtitle20 {
  font-size: 20px;
  line-height: 1.6;
}

.subtitle {
  font-size: 18px;
  line-height: 1.6;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3{
    font-size: 20px;
    line-height: 1.6;
  }

  .subtitle20 {
    font-size: 16px;
    line-height: 1.6;
  }

  .subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  p{
    font-size: 12px;
    line-height: 1.6;
  }
}

img {
  max-width: 100%;
  display: block;
}

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

/* NAV */
nav {
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-radius: 0 0 var(--radius) var(--radius);
  filter: drop-shadow(.20em .20em 4px rgba(0, 0, 0, 0.20));
}

.nav-buttons {
  display: flex;
  gap: 32px;
}
.nav-logo img {
  width: 120px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: var(--text-body);
}

.nav-links a:hover {
  color: var(--orange);
}


/* HERO */
.hero {
  position: relative;
  color: white;
  overflow: hidden;
  margin-top: -44px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  filter: brightness(0.5);
}

.hero-source {
  text-align: center;
  font-size: 13px;
  color: var(--whitesub);
  margin-top: 24px;
}

.hero-left {
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  z-index: 2;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

@media screen and (min-width: 1180px) {
  .hero-left {
    max-width: 1080px;
    padding-left: 0;
    padding-right: 0;
  }
}

.hero-left h1 {
  padding-right: 0px;
  max-width: 380px;
}

.hero-left p {
  max-width: 491px;
}

.hero-btn,
.nav-cta {
  display: inline-block;
  color: white;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.2s;
  background-color: var(--orange);
  background-image: url(../images/button_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-btn:hover,
.nav-cta:hover {
  background: #c9461e;
}

.hero-tags {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

@media screen and (min-width: 1180px) {
  .hero-tags {
    margin-left: 40px;
    margin-right: 40px;
  }
}

.hero-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-tag>.hero-tag-title {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}
.hero-tag>.hero-tag-sub {
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero-tag>.hero-tag-title {
    font-size: 20px;
  }
  .hero-tag>.hero-tag-sub {
    font-size: 16px;
  }
}



/* SECTION COMMONS */
section {
  padding: 80px 72px;
}

section.hero {
  padding: 0;
  padding-top: 80px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.section-heading {
  font-size: 36px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  text-align: center;
}

.section-subheading {
  font-size: 20px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  margin-bottom: 48px;
  text-align: center;
  text-wrap: balance;
}

@media screen and (max-width: 900px) {

  .section-heading {
    font-size: 28px;
  }

  .section-subheading {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 32px;
  }
}


/* STEPS */
.steps-section {
  background: white;
  text-align: center;
  border-radius: var(--radius-lg);
  margin-top: calc(-1 * var(--radius-lg));
  margin-bottom: calc(-1 * var(--radius-lg));
  position: relative;
  z-index: 1 ;
}

.steps-section .section-subheading {
  margin: 0 auto 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .steps-grid{
    gap: 52px;
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.step-visual {
  position: relative;
  width: 100%;
}

.step-illustration {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.step-badge {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  z-index: 1;
  pointer-events: none;
}


.step-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #E8E0D5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text-box {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* BRIDGING SECTION */
.bridging-section {
  background: var(--cream);
  text-align: center;
  padding: 120px 72px;
}

.bridging-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  /*background: white;
    border-radius: var(--radius);*/
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
@media screen and (max-width: 900px) {
  .feature-card {
    padding: 0px;
    gap: 32px;
    h3 {
      font-size: 18px;
    }
  }

  .bridging-section{
    padding: 88px 24px;
  }
}

.feature-text-box {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card h3 {
  margin-bottom: 28px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.7;
}



/* DIFFERENCE SECTION */
.difference-section {
  background: var(--green-dark);
  text-align: center;
  padding: 120px 0px;
}

@media screen and (max-width: 900px) {
  .difference-section {
    padding: 88px 24px;
  }
}

.difference-wrapper {
  overflow-x: scroll;
  padding-left: 24px;
  padding-right: 24px;
}

.difference-section .section-heading {
  color: white;
}

.difference-section .section-subheading {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 48px;
}

.difference-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  margin: 0 auto;
}


@media screen and (min-width: 1180px) {
  .difference-wrapper {
    padding-left: 72px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 900px) {
  .difference-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.diff-card {
  flex-shrink: 0;
  width: 702px;
  background: white;
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: var(--radius);
  padding: 20px 20px;
  text-align: left;
  gap: 20px;
}

.quote-mark-size {
  width: 40px;
  height: auto;
}

.diff-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 16px;
  line-height: 1.7;
}

.difference-section .diff-card>img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 20px;
  object-fit: cover;
}

.difference-text-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

figure.diff-card {
  margin: 0;
}

.difference-text-box blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

.difference-text-box footer {
  margin: 0;
}

.difference-text-box footer cite {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  display: block;
}

/* TRUSTED */
.trusted-section {
  background: white;
  text-align: center;
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-radius: var(--radius-lg);
  margin-top: calc(-1 * var(--radius-lg));
  margin-bottom: calc(-1 * var(--radius-lg));
  position: relative;
}

.trusted-section img {
  width: 200px;
  height: auto;
  object-fit: contain;

}

.logos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 200px;
  row-gap: 40px;
  justify-items: center;
  place-items: center;

}
@media screen and (max-width: 900px) {
  .logos-row {
    column-gap: 100px;
  }
  .trusted-section{
    padding: 56px 24px;
  }
  
}

/* CONTACT */
.contact-section {
  background: var(--cream);
  padding: 120px 72px;
}

@media screen and (max-width: 900px) {
  .contact-section {
    padding: 88px 24px;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  max-width: 836px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.contact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;

}

@media screen and (max-width: 900px) {
  .contact-header{
    margin-bottom: 32px;
  }

  .contact-card {
    padding: 12px 16px;
  }
}

.contact-card-label {
  font-weight: 600;
}

/* BUILT FOR EVERYONE */
.built-section {
  background: white;
  text-align: center;
}

.steps-section .section-subheading {
  margin: 0 auto 48px;
}

.full-feature {
  background: white;
  padding: 80px 72px;
  border-radius: var(--radius-lg);
  margin-top: calc(-1 * var(--radius-lg));
  margin-bottom: calc(-1 * var(--radius-lg));
  position: relative;
}

.full-feature-content {
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 0 72px;
}

.full-feature-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.full-feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.building-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #C8D5D0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.building-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #B0C4BC 0%, #7A9E94 50%, #4A7268 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.building-svg-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark);
  margin-top: 7px;
  flex-shrink: 0;
}

/* FOOTER */
.footer {
  background-color: #1A1A1A;
  border-top-right-radius: var(--radius-lg);
  border-top-left-radius: var(--radius-lg);
  margin-top: calc(-1 * var(--radius-lg));
}

.footer-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-logo-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--border);
  display: grid;
  justify-content: space-between;
}

.footer-logo-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.footer-logo-name sup {
  font-size: 10px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.footer-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  section {
    padding: 56px 24px;
  }

  nav {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .bridging-grid {
    grid-template-columns: 1fr;
  }

  .full-feature {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 32px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-logos {
    grid-template-columns: 1fr;
  }

  .logos-row {
    gap: 28px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .difference-cards {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
  }

  .diff-card {
    flex-shrink: 1;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 425px) {

  /* steps */
  .step-text-box {
    text-align: center;
    align-items: center;
  }

  /* bridging */
  .feature-card {
    display: flex;
    flex-direction: column;
  }

  .feature-card:nth-child(even) {
    flex-direction: column-reverse;
  }

  .full-feature-content {
    display: flex;
    flex-direction: column;
    padding:0px;
    gap:24px;
  }


}

.trademarks {
  font-weight:bold;
  margin-top:0.5rem;
  margin-bottom:0.5rem;
}