* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0A4B8C;
  --primary-dark: #062F5A;
  --secondary: #071321;
  --text: #344054;
  --light-text: #667085;
  --background: #FFFFFF;
  --light-background: #F6F8FB;
  --border: #DCE1E7;
  --accent: #A8B0B8;
  --success: #12B76A;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  opacity: 0;
  animation: pageFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--secondary);
  background: var(--background);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: auto;
}

/* ---------------- NAVBAR ---------------- */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 250px;
    height: auto;
    display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-button {
  padding: 11px 20px;
  border-radius: 8px;
  background: var(--primary);
  color: white !important;
}

.nav-button:hover {
  background: var(--primary-dark);
}

/* ---------------- HERO ---------------- */

.hero {
  padding: 110px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, #eeeeff 0%, transparent 30%),
    radial-gradient(circle at 15% 80%, #f2f4ff 0%, transparent 25%);
}

.hero-grid {
  display: grid;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eeeeff;
  color: var(--primary);
  border-radius: 30px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -3px;
  max-width: 680px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-description {
  color: var(--text);
  font-size: 18px;
  max-width: 590px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 25px rgba(91, 92, 240, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: white;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--light-text);
  font-size: 14px;
}

.hero-points span::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
  margin-right: 7px;
}

/* ---------------- LOGOS ---------------- */

.trusted {
  padding: 45px 0;
  border-bottom: 1px solid var(--border);
}

.trusted p {
  text-align: center;
  color: var(--light-text);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  color: #98a2b3;
  font-size: 19px;
  font-weight: 800;
}

/* ---------------- GENERAL SECTIONS ---------------- */

section {
  padding: 100px 0;
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading h2 {
  font-size: 40px;
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin: 10px 0 16px;
}

.section-heading p {
  color: var(--text);
}

/* ---------------- SERVICES ---------------- */

.services {
  background: var(--light-background);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(16, 24, 40, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #eeeeff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text);
  font-size: 14px;
}

/* ---------------- PROCESS ---------------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-card {
  position: relative;
}

.step {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 9px;
}

.process-card p {
  color: var(--text);
  font-size: 14px;
}

/* ---------------- RESULTS ---------------- */

.results {
  background: var(--secondary);
  color: white;
}

.results .section-heading p {
  color: #98a2b3;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.result h3 {
  font-size: 45px;
  color: #a9aaff;
  letter-spacing: -2px;
}

.result p {
  color: #98a2b3;
  font-size: 14px;
}


/* ==============================
FOUNDERS
============================== */

.founders-section {
background: var(--white);
}

.founders-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.founder-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 16px;
overflow: hidden;

transition:
transform 0.25s ease,
box-shadow 0.25s ease;
}

.founder-card:hover {
transform: translateY(-5px);
box-shadow: 0 18px 40px rgba(20, 20, 60, 0.08);
}

.founder-image {
width: 100%;
height: 310px;
overflow: hidden;
background: var(--light);
}

.founder-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}

.founder-info {
padding: 25px;
}

.founder-info h3 {
font-size: 1.2rem;
margin-bottom: 3px;
}

.founder-role {
display: block;

color: var(--primary);

font-size: 0.82rem;
font-weight: 700;

margin-bottom: 14px;
}

.founder-info p {
color: var(--text);
font-size: 0.88rem;
line-height: 1.7;

margin-bottom: 18px;
}


.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #667085;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.linkedin-icon svg {
  width: 24px;
  height: 24px;

  fill: currentColor;
}

/* Hover */
.linkedin-icon:hover {
  color: #0A66C2;
  transform: translateY(-2px);
}

/* ==============================
   FAQ
============================== */

.faq-section {
  background: var(--light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);

  border: 1px solid var(--border);
  border-radius: 10px;

  margin-bottom: 12px;

  overflow: hidden;
}

.faq-question {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 20px 22px;

  border: none;
  background: transparent;

  color: var(--dark);

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 650;

  text-align: left;

  cursor: pointer;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #efecff;
  color: var(--primary);

  font-size: 1.2rem;

  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 22px 22px;

  color: var(--text);

  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active {
  border-color: #d9d4ff;
}

/* ==============================
INQUIRY SECTION
============================== */

.inquiry-section {
padding: 100px 0;
background:
radial-gradient(circle at 5% 10%, #ece9ff 0, transparent 28%),
radial-gradient(circle at 95% 90%, #e1fafa 0, transparent 25%),
var(--light);
}

.inquiry-wrapper {
display: grid;
grid-template-columns: 0.85fr 1.15fr;
gap: 80px;
align-items: center;
}


/* LEFT CONTENT */

.inquiry-label {
display: inline-block;
color: var(--primary);
font-size: 0.8rem;
font-weight: 800;
letter-spacing: 1.5px;
margin-bottom: 18px;
}

.inquiry-content h2 {
font-size: 2.8rem;
line-height: 1.15;
letter-spacing: -2px;
margin-bottom: 20px;
}

.inquiry-content > p {
color: var(--text);
font-size: 1rem;
line-height: 1.8;
margin-bottom: 35px;
}


/* BENEFITS */

.inquiry-benefits {
display: flex;
flex-direction: column;
gap: 22px;
}

.benefit-item {
display: flex;
align-items: flex-start;
gap: 15px;
}

.benefit-icon {
flex-shrink: 0;

width: 36px;
height: 36px;

display: grid;
place-items: center;

border-radius: 50%;

background: #e8e5ff;
color: var(--primary);

font-weight: 800;
}

.benefit-item strong {
display: block;
font-size: 0.95rem;
margin-bottom: 3px;
}

.benefit-item span {
color: var(--text);
font-size: 0.86rem;
}


/* FORM CARD */

.inquiry-form-card {
background: var(--white);

padding: 42px;

border: 1px solid var(--border);
border-radius: 18px;

box-shadow:
0 20px 60px rgba(35, 30, 80, 0.09);
}

.inquiry-form-card h3 {
font-size: 1.5rem;
margin-bottom: 5px;
}

.form-intro {
color: var(--text);
font-size: 0.9rem;
margin-bottom: 28px;
}


/* FORM */

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}

.form-group {
margin-bottom: 18px;
}

.form-group label {
display: block;

font-size: 0.82rem;
font-weight: 600;

margin-bottom: 7px;

color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;

padding: 13px 14px;

font-family: inherit;
font-size: 0.9rem;

color: var(--dark);

background: var(--white);

border: 1px solid #dfe2eb;
border-radius: 8px;

outline: none;

transition:
border-color 0.2s ease,
box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
color: #a0a5b3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(--primary);

box-shadow:
0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.service-options {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}

.service-checkbox {
display: flex !important;
align-items: center;
gap: 10px;

padding: 12px 14px;
margin: 0 !important;

border: 1px solid #dfe2eb;
border-radius: 8px;

background: var(--white);
cursor: pointer;

font-size: 0.85rem !important;
font-weight: 500 !important;

transition: 0.2s ease;
}

.service-checkbox:hover {
border-color: var(--primary);
background: #faf9ff;
}

.service-checkbox input {
width: 16px !important;
height: 16px;
margin: 0;

accent-color: var(--primary);
cursor: pointer;
}

.service-checkbox:has(input:checked) {
border-color: var(--primary);
background: #f4f2ff;
color: var(--primary);
}

.form-group:has(input:required) label::after {
  content: " *";
  color: red;
  font-weight: bold;
}

/* SUBMIT BUTTON */

.form-submit {
width: 100%;

display: flex;
align-items: center;
justify-content: center;
gap: 10px;

padding: 14px 20px;

border: none;
border-radius: 8px;

background: var(--primary);
color: var(--white);

font-family: inherit;
font-size: 0.95rem;
font-weight: 700;

cursor: pointer;

transition:
background 0.2s ease,
transform 0.2s ease,
box-shadow 0.2s ease;
}

.form-submit:hover {
background: var(--primary-dark);

transform: translateY(-1px);

box-shadow:
0 8px 20px rgba(108, 92, 231, 0.25);
}

.form-submit span {
font-size: 1.2rem;
transition: transform 0.2s ease;
}

.form-submit:hover span {
transform: translateX(4px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 55px;
  height: 55px;

  display: grid;
  place-items: center;

  margin: 0 auto 18px;

  border-radius: 50%;

  background: #e8f8ef;
  color: #20bf6b;

  font-size: 1.5rem;
  font-weight: 800;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text);
  font-size: 0.9rem;
}


/* PRIVACY */

.form-privacy {
text-align: center;

margin-top: 14px;

color: #9297a5;

font-size: 0.72rem;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */


/* ---------------- ABOUT HERO ---------------- */

.about-hero {
  padding: 110px 0 100px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 20%,
      #eeeeff 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 10% 80%,
      #f2f4ff 0%,
      transparent 28%
    );
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.08;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.about-hero h1 span {
  color: var(--primary);
}

.about-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}


/* ---------------- OUR STORY ---------------- */

.about-story {
  background: var(--light-background);
}

.about-two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.about-section-label span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section-label h2 {
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -1.8px;
  margin-top: 12px;
}

.about-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
}

.about-text p {
  margin-bottom: 22px;
}

.story-highlight {
  color: var(--secondary);
  font-size: 24px;
  font-weight: 800;
  margin-top: 30px;
}


/* ---------------- APPROACH ---------------- */

.about-approach {
  background: white;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-card {
  position: relative;

  padding: 34px;

  background: white;

  border: 1px solid var(--border);
  border-radius: 16px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.about-card:hover {
  transform: translateY(-6px);

  border-color: #d9d4ff;

  box-shadow:
    0 18px 45px rgba(16, 24, 40, 0.08);
}

.about-card-number {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}


/* ---------------- MISSION ---------------- */

.about-mission {
  padding: 100px 0;
  background: var(--secondary);
}

.mission-box {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.mission-box > span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.mission-box h2 {
  color: white;

  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: -2px;

  margin: 18px 0 20px;
}

.mission-box p {
  color: #98a2b3;
  font-size: 18px;
}


/* ---------------- FUTURE ---------------- */

.about-future {
  background: white;
}

.about-future .about-text {
  max-width: 650px;
}

.about-cta {
  margin-top: 12px;
}


/* ---------------- FINAL CTA ---------------- */

.about-cta-section {
  padding: 90px 0;
  background: var(--light-background);
}

.about-cta-box {
  padding: 65px 40px;

  text-align: center;

  background: white;

  border: 1px solid var(--border);
  border-radius: 18px;

  box-shadow:
    0 15px 50px rgba(16, 24, 40, 0.06);
}

.about-cta-box > span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.about-cta-box h2 {
  font-size: 42px;
  letter-spacing: -1.5px;
  margin: 12px 0;
}

.about-cta-box p {
  color: var(--text);
  margin-bottom: 25px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: var(--secondary);
    color: #ffffff;
    margin-top: 0;
}


/* Main footer */

.footer-main {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 60px;
    padding: 75px 0 65px;
}


/* Brand */

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 185px;
    height: auto;
    display: block;
}

.footer-brand p {
    color: #aeb8c4;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 22px;
}

.footer-email {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: #6fa8dc;
}


/* Footer columns */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 5px 0 20px;
    letter-spacing: 0.3px;
}

.footer-column a {
    color: #aeb8c4;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 13px;
    transition: all 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(3px);
}


/* Contact */

.footer-contact p {
    color: #aeb8c4;
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0 20px;
    max-width: 220px;
}

.footer-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;

    background: #ffffff;
    color: var(--secondary) !important;

    padding: 11px 16px;
    border-radius: 7px;

    font-weight: 600;
    margin-bottom: 0 !important;

    transition: all 0.25s ease !important;
}

.footer-cta:hover {
    background: #e9eef3;
    transform: translateY(-2px) !important;
}

.footer-cta span {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.footer-cta:hover span {
    transform: translateX(3px);
}


/* Divider */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 0;
}

.footer-bottom p {
    color: #8793a1;
    font-size: 13px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #8793a1;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}


/* =========================================================
   HAMBURGER MENU
   ========================================================= */

.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 500px) {

    .logo img {
        width: 145px;
    }

}

@media (max-width: 900px) {

    .navbar {
        position: relative;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Mobile menu */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background: var(--background);

        flex-direction: column;
        align-items: stretch;

        padding: 15px 20px 20px;

        margin: 0;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

        z-index: 1000;
    }

    /* When menu is open */
    .nav-links.active {
        display: flex;
    }

    /* Show all links */
    .nav-links li {
        display: block !important;
    }

    .nav-links li a {
        display: block;
        padding: 14px 10px;
    }

    /* Contact button */
    .nav-links .nav-button {
        text-align: center;
        margin-top: 8px;
    }

.hero {
padding-top: 80px;
}

.hero-grid {
grid-template-columns: 1fr;
}

.hero h1 {
letter-spacing: -2px;
}

.service-grid {
grid-template-columns: 1fr 1fr;
}

.inquiry-wrapper {
grid-template-columns: 1fr;
gap: 45px;
}

.inquiry-content {
max-width: 650px;
}

.inquiry-content h2 {
font-size: 2.3rem;
}

.inquiry-form-card {
padding: 32px;
}

}

@media (max-width: 600px) {
.hero-buttons {
flex-direction: column;
align-items: stretch;
}

.hero-buttons .btn {
text-align: center;
}

.service-grid,
.process-grid,
.results-grid {
grid-template-columns: 1fr;
}

.section-heading h2,
.cta-box h2 {
font-size: 32px;
}


.inquiry-section {
padding: 70px 0;
}

.form-row {
grid-template-columns: 1fr;
gap: 0;
}

.inquiry-form-card {
padding: 25px 20px;
}

.inquiry-content h2 {
font-size: 2rem;
letter-spacing: -1px;
}

.service-options {
    grid-template-columns: 1fr;
}

.founders-grid {
    display: flex;
    flex-wrap: nowrap;

    gap: 16px;

    overflow-x: auto;
    overflow-y: hidden;

    /* Smooth touch scrolling */
    -webkit-overflow-scrolling: touch;

    /* Snap cards while scrolling */
    scroll-snap-type: x mandatory;

    /* Allow card shadow to remain visible */
    padding: 5px 20px 25px 5px;

    max-width: none;
    margin: 0;
  }


  /* Individual founder card */
  .founder-card {
    flex: 0 0 85%;

    scroll-snap-align: start;

    /* Prevent cards from shrinking */
    min-width: 0;
  }


  /* Founder image */
  .founder-image {
    height: 300px;
  }


  /* Hide scrollbar - Chrome, Safari, Edge */
  .founders-grid::-webkit-scrollbar {
    display: none;
  }


  /* Hide scrollbar - Firefox */
  .founders-grid {
    scrollbar-width: none;
  }

}

/* =========================================================
   Footer - Responsive
   ========================================================= */


@media (max-width: 600px) {

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: start;
    row-gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo img {
    width: 155px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-column{
    align-items: first start;
    text-align: left;
  }

  .footer-column h4 {
    margin-bottom: 15px;
  }

  .footer-column a {
    font-size: 13px;

    margin-bottom: 11px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact p {
    max-width: 300px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 15px;

    padding: 22px 0;
  }

  .footer-legal {
    gap: 20px;

    flex-wrap: wrap;
  }

}

/* =========================================================
   ABOUT PAGE - RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .about-hero {
    padding: 85px 0 80px;
  }

  .about-two-column {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-section-label h2 {
    font-size: 36px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 600px) {

  .about-hero {
    padding: 70px 0;
  }

  .about-hero h1 {
    font-size: 40px;
    letter-spacing: -1.8px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-section-label h2 {
    font-size: 32px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-card {
    padding: 28px;
  }

  .about-mission {
    padding: 75px 0;
  }

  .mission-box h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .mission-box p {
    font-size: 16px;
  }

  .about-cta-section {
    padding: 70px 0;
  }

  .about-cta-box {
    padding: 45px 25px;
  }

  .about-cta-box h2 {
    font-size: 32px;
  }

}
