/* =========================================================================
   Flutis Theme — design system + landing page styles
   Tokens mirror src/styles/_rb_variables.scss from flutis-web-app.
   ========================================================================= */

/* ----- 0. Outfit variable font (self-hosted, wght 100–900) -------------- */
/*
 * Bundled locally so weights 100–300 render correctly in WordPress Studio /
 * offline environments where fonts.googleapis.com may be blocked.
 * Same file served by Google Fonts for Outfit:wght@100..900 (latin).
 */

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ----- 1. Design tokens ------------------------------------------------- */

:root {
  /* Colors */
  --flutis-primary: #FFD600;
  --flutis-secondary: #121215;
  --flutis-tertiary: #DFDCE3;
  --flutis-black: #0C0C0C;
  --flutis-surface: #201F1E;
  --flutis-muted: #8B929C;
  --flutis-white: #FFFFFF;
  --flutis-navy: #1C355E;
  --flutis-accent-light: #e9f8fa;
  --flutis-accent-pale: #eaf8fb;
  --flutis-petrol: #2C333D;
  --flutis-btn-text: #323130;

  /* Typography */
  --flutis-font: 'Outfit', sans-serif;
  --flutis-fw-light: 300;
  --flutis-fw-regular: 400;
  --flutis-fw-medium: 500;
  --flutis-fw-semibold: 600;

  --flutis-text-display: 3rem;
  --flutis-text-xl: 2.5rem;
  --flutis-text-lg: 2.25rem;
  --flutis-text-md: 1.75rem;
  --flutis-text-lead: 1.25rem;
  --flutis-text-base: 1rem;
  --flutis-text-sm: 0.875rem;

  /* Line heights — explicit values from flutis-web-app landing SCSS only */
  --flutis-lh-button: 20px;
  --flutis-lh-button-search: 22px;
  --flutis-lh-bml-subtitle: 2.5rem;
  --flutis-lh-bml-subtitle-md: 2rem;
  --flutis-lh-bml-subtitle-sm: 1.75rem;
  --flutis-lh-pricing-title: 2.8rem;
  --flutis-lh-pricing-title-sm: 2.2rem;
  --flutis-lh-cta-mobile: 1.5rem;
  --flutis-lh-support-title: 3rem;
  --flutis-lh-support-item: 1.75rem;
  --flutis-lh-support-title-sm: 2rem;
  --flutis-lh-support-item-sm: 1.5rem;

  /* Spacing */
  --flutis-section-y: 10rem;
  --flutis-section-y-md: 5rem;
  --flutis-section-y-sm: 4rem;
  --flutis-gap-lg: 5rem;
  --flutis-gap-md: 2rem;
  --flutis-gap-sm: 1rem;

  /* Shape */
  --flutis-radius: 6px;
  --flutis-radius-pill: 25px;
  --flutis-radius-card: 12px;

  /* Buttons */
  --flutis-btn-height: 38px;
}

/* ----- 2. Reset / base -------------------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
  font-family: var(--flutis-font);
  font-optical-sizing: auto;
  font-style: normal;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--flutis-font);
  font-weight: var(--flutis-fw-regular);
  line-height: inherit;
  font-synthesis: none;
  background-color: var(--flutis-black);
  color: var(--flutis-white);
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
iframe { border: 0; }

/* ----- 3. Layout utilities ---------------------------------------------- */

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ----- 4. Typography ---------------------------------------------------- */

.flutis-display {
  font-size: var(--flutis-text-display);
  margin: 0;
}
.flutis-heading-1 {
  font-size: var(--flutis-text-xl);
  margin: 0;
}
.flutis-heading-2 {
  font-size: var(--flutis-text-lg);
  margin: 0;
}
.flutis-heading-3 {
  font-size: var(--flutis-text-md);
  margin: 0;
}
.flutis-lead {
  font-size: var(--flutis-text-lead);
  margin: 0;
}
.flutis-body {
  font-size: var(--flutis-text-base);
  margin: 0;
}
.flutis-body-regular {
  font-size: var(--flutis-text-base);
  margin: 0;
}
.flutis-caption {
  font-size: var(--flutis-text-sm);
  margin: 0;
}

/* Weight modifiers */
.flutis-fw-light { font-weight: var(--flutis-fw-light); }
.flutis-fw-regular { font-weight: var(--flutis-fw-regular); }
.flutis-fw-medium { font-weight: var(--flutis-fw-medium); }
.flutis-fw-semibold { font-weight: var(--flutis-fw-semibold); }

/* Color modifiers */
.flutis-text-primary { color: var(--flutis-primary); }
.flutis-text-white { color: var(--flutis-white); }
.flutis-text-dark { color: var(--flutis-btn-text); }
.flutis-text-navy { color: var(--flutis-navy); }
.flutis-text-muted { color: var(--flutis-muted); }

/* Common section copy patterns */
.flutis-section-title { margin-bottom: var(--flutis-gap-sm); }
.flutis-section-subtitle { margin-bottom: var(--flutis-gap-md); }
.flutis-section-lead { margin-bottom: var(--flutis-gap-md); }

/* Narrow centered copy blocks */
.flutis-prose-narrow { width: 35%; text-align: center; }
.flutis-prose-medium { width: 60%; }

@media (max-width: 1200px) {
  .flutis-prose-narrow { width: 60%; }
}
@media (max-width: 768px) {
  .flutis-display { font-size: 2rem; }
  .flutis-heading-1 { font-size: 1.75rem; }
  .flutis-heading-2 { font-size: 1.5rem; }
  .flutis-heading-3 { font-size: 1.25rem; }
  .flutis-lead { font-size: var(--flutis-text-base); }
  .flutis-prose-narrow,
  .flutis-prose-medium { width: 100%; }
}

/* ----- 5. Buttons ------------------------------------------------------- */
/*
 * Usage:  .button + variant + optional shape/size
 *   <button class="button button--primary button--pill button--md">Login</button>
 *   <button class="button button--accent-light button--pill button--md">Book a Demo</button>
 *
 * Variants:  --primary  --accent-light  --secondary  --primary-inverse  --tertiary  --disabled
 * Shape:     --pill (rounded, used on all marketing CTAs)
 * Size:      --sm  --md  --lg  --search
 */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 16px;
  height: var(--flutis-btn-height);
  min-height: var(--flutis-btn-height);
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--flutis-fw-medium);
  line-height: var(--flutis-lh-button);
  border: 1px solid transparent;
  border-radius: var(--flutis-radius);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
a.button { display: inline-flex; }

.button--primary {
  color: var(--flutis-btn-text);
  background-color: var(--flutis-primary);
  border-color: var(--flutis-primary);
}
.button--primary:hover {
  color: rgba(50, 49, 48, 0.8);
  background-color: rgba(255, 214, 0, 0.8);
  border-color: rgba(255, 214, 0, 0.8);
}

.button--accent-light {
  color: var(--flutis-navy);
  background-color: var(--flutis-accent-light);
  border-color: var(--flutis-navy);
}
.button--accent-light:hover {
  color: var(--flutis-navy);
  background-color: var(--flutis-white);
  border-color: var(--flutis-navy);
}

.button--secondary {
  color: var(--flutis-white);
  background-color: var(--flutis-secondary);
  border-color: var(--flutis-secondary);
}
.button--secondary:hover {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(18, 18, 21, 0.8);
  border-color: rgba(18, 18, 21, 0.8);
}

.button--primary-inverse {
  color: var(--flutis-primary);
  background-color: transparent;
  border-color: var(--flutis-primary);
}
.button--primary-inverse:hover {
  color: rgba(255, 214, 0, 0.8);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 214, 0, 0.8);
}

.button--tertiary {
  color: var(--flutis-secondary);
  background-color: var(--flutis-white);
  border-color: var(--flutis-secondary);
}
.button--tertiary:hover {
  color: rgba(18, 18, 21, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(18, 18, 21, 0.8);
}

.button--disabled,
.button--disabled:hover {
  color: var(--flutis-white);
  background-color: #605E5C;
  border-color: #605E5C;
  cursor: not-allowed;
}

.button--pill { border-radius: var(--flutis-radius-pill); }
.button--sm { width: 63px; padding: 0 12px; }
.button--md { width: 160px; }
.button--lg { width: 100%; }
.button--search {
  padding: 0 20px;
  font-size: 16px;
  line-height: var(--flutis-lh-button-search);
  width: 145px;
}

/* Panels (yellow / dark blocks) */
.flutis-panel--primary {
  background-color: var(--flutis-primary);
  color: var(--flutis-btn-text);
}
.flutis-panel--dark {
  background-color: var(--flutis-black);
  color: var(--flutis-white);
}

/* ----- IFrame modal (from IFrameModal.scss) ---------------------------- */

.myModalOverlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.myModalOverlay[hidden] { display: none; }
.myModal {
  position: relative;
  max-width: 600px;
  background-color: var(--flutis-primary);
  border-radius: 0.25rem;
}
.myModal iframe { width: 560px; height: 656px; }
.myModalContent {
  border-radius: 0.25rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.myModalClose {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}
.myModalClose:focus { outline: none; }
@media (max-width: 768px) {
  .myModal iframe { width: 95vw; }
}

/* ----- Site header / hero / mobile menu (from LandingPage.scss) -------- */

.landing-page-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background-color: var(--flutis-black);
}

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: transparent;
}
.site-header.is-static {
  position: relative;
  background-color: var(--flutis-black);
}

.header-logo { width: 120px; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-nav .login-link {
  background: none;
  border: none;
  color: var(--flutis-white);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}
.header-nav .hamburger-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.header-nav .hamburger-toggle .hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--flutis-white);
  margin: 4px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../images/flutis-hero-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-content {
  text-align: center;
  color: var(--flutis-white);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-family: var(--flutis-font);
  font-weight: var(--flutis-fw-light);
  margin: 0 0 1.5rem;
}
.hero-content h1 .highlight {
  color: var(--flutis-primary);
  font-weight: var(--flutis-fw-semibold);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 51, 61, 0.95);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.mobile-menu-overlay[hidden] { display: none; }
.mobile-menu-overlay .mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--flutis-white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  text-align: center;
}
.mobile-menu-overlay .mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--flutis-gap-md);
}
.mobile-menu-overlay .mobile-link,
.mobile-menu-overlay .mobile-link-login {
  min-width: 160px;
  font-weight: var(--flutis-fw-medium);
}

@media (max-width: 768px) {
  .site-header .header-nav .login-link,
  .site-header .header-nav .nav-links { display: none; }
  .site-header .header-nav .hamburger-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}
@media (min-width: 769px) {
  .mobile-menu-overlay { display: none !important; }
}

/* ----- StatementsWithIcons ---------------------------------------------- */

.statements-with-icons-wrapper {
  background: var(--flutis-black);
  padding: var(--flutis-section-y) 0;
}
.statements-with-icons-wrapper h1 {
  color: var(--flutis-white);
  text-align: center;
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-light);
  margin: 0 0 0;
}
.statements-with-icons-wrapper h1.highlight,
.statements-with-icons-wrapper h1.statements-with-icons-section-title {
  margin-bottom: var(--flutis-gap-lg);
  font-weight: var(--flutis-fw-semibold);
}
.statements-with-icons-wrapper h1.highlight {
  color: var(--flutis-primary);
}

.statements-with-icons-wrapper .statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}
.statements-with-icons-wrapper .statement .statement-icon { width: 6rem; }
.statements-with-icons-wrapper .statement .statement-description { width: 35%; }
.statements-with-icons-wrapper .statement .statement-description-title {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  font-weight: var(--flutis-fw-medium);
  color: var(--flutis-primary);
}
.statements-with-icons-wrapper .statement .statement-description-text {
  font-size: 1.25rem;
  font-weight: var(--flutis-fw-light);
  color: var(--flutis-white);
}

@media (max-width: 768px) {
  .statements-with-icons-wrapper { padding: 0 3rem; }
  .statements-with-icons-wrapper h1 { font-size: 1.5rem; }
  .statements-with-icons-wrapper h1.highlight { margin-bottom: 10rem; }
  .statements-with-icons-wrapper .statement {
    flex-direction: column;
    gap: var(--flutis-gap-sm);
    margin-bottom: var(--flutis-gap-md);
    text-align: center;
  }
  .statements-with-icons-wrapper .statement .statement-icon { margin-bottom: var(--flutis-gap-sm); }
  .statements-with-icons-wrapper .statement .statement-description { width: 100%; }
  .statements-with-icons-wrapper .statement .statement-description-title { font-size: 1.25rem; }
  .statements-with-icons-wrapper .statement .statement-description-text {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
}

/* ----- BusinessMeetsLeisure -------------------------------------------- */

.business-meets-leisure-wrapper {
  display: grid;
  grid-template-columns: 4fr 3fr;
  background-color: var(--flutis-accent-light);
  padding: var(--flutis-section-y) 0 var(--flutis-section-y) 10rem;
  overflow: hidden;
}
.business-meets-leisure-wrapper .business-meets-leisure-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.business-meets-leisure-title {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-semibold);
  color: var(--flutis-navy);
  margin: 0 0 1rem;
}
.business-meets-leisure-subtitle {
  font-size: 2.25rem;
  font-weight: var(--flutis-fw-light);
  color: var(--flutis-navy);
  width: 60%;
  line-height: var(--flutis-lh-bml-subtitle);
  margin: 0 0 2rem;
}
.business-meets-leisure-description {
  font-size: 1.25rem;
  font-weight: var(--flutis-fw-medium);
  color: var(--flutis-navy);
  width: 45%;
  margin: 0 0 2rem;
}
.business-meets-leisure-wrapper .business-meets-leisure-right {
  position: relative;
  width: 100%;
  height: 30rem;
  overflow: hidden;
}
.business-meets-leisure-wrapper .business-meets-leisure-right img {
  position: absolute;
  top: 0;
  right: -5rem;
  width: auto;
  aspect-ratio: 1.5;
}

@media (max-width: 1200px) {
  .business-meets-leisure-wrapper {
    padding: 6rem 0;
    grid-template-columns: 4fr 3fr;
  }
  .business-meets-leisure-wrapper .business-meets-leisure-left {
    order: 1;
    padding-left: 3rem;
  }
  .business-meets-leisure-title { font-size: 2rem; }
  .business-meets-leisure-subtitle {
    font-size: 1.5rem;
    width: 60%;
    line-height: var(--flutis-lh-bml-subtitle-md);
  }
  .business-meets-leisure-description {
    font-size: 1rem;
    width: 70%;
  }
  .business-meets-leisure-wrapper .business-meets-leisure-right { order: 2; }
  .business-meets-leisure-wrapper .business-meets-leisure-right img {
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .business-meets-leisure-wrapper {
    padding: 3rem 0 3.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .business-meets-leisure-wrapper .business-meets-leisure-right {
    order: 1;
    width: 100%;
    height: 20rem;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
  }
  .business-meets-leisure-wrapper .business-meets-leisure-right img {
    position: absolute;
    top: 0;
    right: -3rem;
    width: auto;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1.5;
  }
  .business-meets-leisure-wrapper .business-meets-leisure-left {
    order: 2;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
  }
  .business-meets-leisure-title {
    font-size: 1.5rem;
    font-weight: var(--flutis-fw-semibold);
    margin-bottom: 1rem;
  }
  .business-meets-leisure-subtitle {
    font-size: 1.25rem;
    font-weight: var(--flutis-fw-light);
    width: 80%;
    line-height: var(--flutis-lh-bml-subtitle-sm);
    margin-bottom: 1rem;
  }
  .business-meets-leisure-description {
    font-size: 0.9rem;
    font-weight: var(--flutis-fw-medium);
    width: 100%;
  }
  .business-meets-leisure-wrapper .business-meets-leisure-left button { place-self: center; }
}

/* ----- CompetitivePricing ---------------------------------------------- */

.competitive-pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 6rem 2rem;
}
.competitive-pricing-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 8rem;
}
.competitive-pricing-left h1 {
  max-width: 28rem;
  font-size: 2.2rem;
  line-height: var(--flutis-lh-pricing-title);
  font-weight: var(--flutis-fw-semibold);
  color: var(--flutis-primary);
}
.competitive-pricing-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding-right: 10rem;
}
.competitive-pricing-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
}
.competitive-pricing-item-icon { width: 1rem; height: 1rem; }
.competitive-pricing-item-text {
  font-size: 1.1rem;
  font-weight: var(--flutis-fw-medium);
  color: var(--flutis-white);
  margin: 0;
}
.competitive-pricing-carousel {
  grid-column: 1 / -1;
  margin-top: 4rem;
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.competitive-pricing-carousel::-webkit-scrollbar { display: none; }
.competitive-pricing-carousel .carousel-image {
  flex-shrink: 0;
  object-fit: contain;
  scroll-snap-align: start;
  user-select: none;
  pointer-events: none;
  background: var(--flutis-black);
  margin-right: 1rem;
  width: calc(100% / 5 - 1rem);
  aspect-ratio: 2 / 1;
}
.competitive-pricing-carousel .carousel-image:last-child { margin-right: 0; }

@media (max-width: 768px) {
  .competitive-pricing-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 4rem 1.25rem;
  }
  .competitive-pricing-left { padding: 0; }
  .competitive-pricing-left h1 { font-size: 1.8rem; line-height: var(--flutis-lh-pricing-title-sm); }
  .competitive-pricing-right {
    align-items: center;
    padding: 0;
  }
  .competitive-pricing-item-text { text-align: left; }
  .competitive-pricing-carousel .carousel-image { width: 110px; }
}

/* ----- CtaBox ----------------------------------------------------------- */

.cta-box-wrapper {
  background-image: url('../images/Flutis_Sunset_Plane.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 848px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--flutis-gap-sm);
  background-color: var(--flutis-black);
}
.cta-box-title {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-light);
  color: var(--flutis-white);
  text-align: center;
  margin: 0;
}
.cta-box-subtitle {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-semibold);
  color: var(--flutis-primary);
  margin: 0 0 3rem;
  text-align: center;
}
@media (max-width: 1200px) {
  .cta-box-wrapper { height: 500px; padding: var(--flutis-section-y-md); }
  .cta-box-title,
  .cta-box-subtitle { font-size: 1.75rem; }
}
@media (max-width: 768px) {
  .cta-box-wrapper {
    height: auto;
    min-height: 24rem;
    padding: var(--flutis-gap-md);
  }
  .cta-box-title {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: var(--flutis-lh-cta-mobile);
  }
  .cta-box-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: var(--flutis-gap-md);
    width: 80%;
    line-height: var(--flutis-lh-cta-mobile);
  }
}

/* ----- TravelAndExpense ------------------------------------------------- */

.travel-and-expense-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.travel-and-expense-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 10rem;
}
.travel-and-expense-left-title {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-semibold);
  color: var(--flutis-primary);
  margin: 0 0 var(--flutis-gap-md);
}
.travel-and-expense-left-item-text {
  font-size: 1.25rem;
  font-weight: var(--flutis-fw-medium);
  color: var(--flutis-white);
  margin: 0;
}
.travel-and-expense-left-item {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: var(--flutis-gap-sm);
  align-items: center;
}
.travel-and-expense-left-item-icon { margin-right: var(--flutis-gap-sm); }
.travel-and-expense-right img { width: 100%; }
@media (max-width: 1200px) {
  .travel-and-expense-wrapper {
    grid-template-columns: 1fr;
    padding: 5rem 3rem;
  }
  .travel-and-expense-left { padding: 0; }
  .travel-and-expense-right { display: none; }
}
@media (max-width: 768px) {
  .travel-and-expense-wrapper {
    grid-template-columns: 1fr;
    padding: 4rem 1.25rem;
  }
  .travel-and-expense-left-title { font-size: 1.5rem; width: 100%; }
  .travel-and-expense-left-item-text { font-size: 1rem; }
}

/* ----- Genie ------------------------------------------------------------ */

.genie-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--flutis-primary);
  padding: var(--flutis-gap-md);
}
.genie-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.genie-left img { height: 80%; }
.genie-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.genie-title {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-semibold);
  color: var(--flutis-black);
  margin: 0 0 1rem;
}
.genie-subtitle {
  font-size: 2.25rem;
  font-weight: var(--flutis-fw-light);
  color: var(--flutis-black);
  margin: 0 0 1rem;
}
.genie-description {
  font-size: 1.25rem;
  font-weight: var(--flutis-fw-medium);
  color: var(--flutis-black);
  width: 70%;
  margin: 0;
}
@media (max-width: 768px) {
  .genie-wrapper {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
    gap: 3rem;
  }
  .genie-left img { height: 25rem; width: auto; }
  .genie-title { font-size: 1.75rem; }
  .genie-subtitle { font-size: 1.5rem; }
  .genie-description {
    font-size: 1rem;
    font-weight: var(--flutis-fw-light);
    width: 100%;
  }
}

/* ----- FlutisCash ------------------------------------------------------- */

.flutis-cash-wrapper {
  display: flex;
  height: 50rem;
}
.flutis-cash-left {
  padding: 0 0 0 10rem;
  background-color: var(--flutis-accent-pale);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 70%;
  max-width: 70%;
}
.flutis-cash-left-row {
  display: flex;
  margin-bottom: 2rem;
}
.flutis-cash-left-row-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flutis-cash-image {
  width: 10rem;
  margin-right: 2rem;
}
.flutis-cash-title {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-semibold);
  color: var(--flutis-navy);
  margin: 0;
}
.flutis-cash-subtitle {
  font-size: 2.25rem;
  font-weight: var(--flutis-fw-light);
  color: var(--flutis-navy);
  width: 60%;
  margin: 0;
}
.flutis-cash-item {
  font-size: 1.25rem;
  font-weight: var(--flutis-fw-medium);
  color: var(--flutis-navy);
  margin: 0 0 0.75rem;
}
.flutis-cash-left button { margin-top: 1rem; }
.flutis-cash-right {
  flex: 0 0 30%;
  max-width: 30%;
  background-image: url('../images/Orange_Arrow_Pattern.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  min-width: 0;
}

@media (max-width: 1200px) {
  .flutis-cash-wrapper { height: 40rem; }
  .flutis-cash-left {
    padding-left: 3rem;
    max-width: 65%;
    flex-basis: 65%;
  }
  .flutis-cash-subtitle { width: 90%; }
  .flutis-cash-right { max-width: 35%; flex-basis: 35%; }
}

@media (max-width: 768px) {
  .flutis-cash-wrapper {
    flex-direction: column;
    height: auto;
  }
  .flutis-cash-right {
    order: 1;
    width: 100%;
    max-width: 100%;
    height: 10rem;
    min-height: 10rem;
  }
  .flutis-cash-left {
    order: 2;
    width: 100%;
    max-width: 100%;
    padding: 4rem 1.25rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flutis-cash-left-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .flutis-cash-image { width: 8rem; margin: 0 0 1rem 0; }
  .flutis-cash-title,
  .flutis-cash-subtitle {
    width: 100%;
    font-size: 1.5rem;
  }
  .flutis-cash-item { font-size: 1rem; }
}

/* ----- Support ---------------------------------------------------------- */

.support-wrapper {
  background-image: url('../images/Flutis_Airport_Man.jpg');
  background-size: cover;
  height: 58rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20rem 0 0;
}
.support-details-wrapper {
  background-color: var(--flutis-primary);
  width: 300px;
  height: 450px;
  border-radius: 10rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 1rem 0 3.5rem;
}
.support-details-title {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-semibold);
  color: var(--flutis-black);
  line-height: var(--flutis-lh-support-title);
  margin: 0 0 1.5rem;
}
.support-details-item {
  font-size: 1.25rem;
  font-weight: var(--flutis-fw-medium);
  color: var(--flutis-black);
  line-height: var(--flutis-lh-support-item);
  margin: 0 0 0.75rem;
}

@media (max-width: 768px) {
  .support-wrapper {
    padding: 0;
    height: auto;
    min-height: 34rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: 60%;
  }
  .support-details-wrapper {
    height: 400px;
    width: 275px;
    padding: 0 0 0 3rem;
  }
  .support-details-title {
    font-size: 1.5rem;
    line-height: var(--flutis-lh-support-title-sm);
    width: 80%;
  }
  .support-details-item {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: var(--flutis-lh-support-item-sm);
  }
}

/* ----- Insights --------------------------------------------------------- */

.insights-wrapper {
  background-color: var(--flutis-black);
  padding: var(--flutis-section-y) 0;
}
.insights-title {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-semibold);
  color: var(--flutis-white);
  margin: 0 0 var(--flutis-section-y);
  text-align: center;
}
.insights-title-highlight {
  color: var(--flutis-primary);
  font-weight: inherit;
}
.insights-item-description {
  color: var(--flutis-white);
  font-size: 1.25rem;
  font-weight: var(--flutis-fw-medium);
  text-align: center;
  width: 80%;
}
.insights-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 0 10rem;
}
.insights-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.insights-item-image {
  width: 4rem;
  height: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .insights-title { padding: 0 2rem; }
  .insights-items {
    grid-template-columns: 1fr 1fr;
    padding: 0 2rem;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .insights-wrapper { padding: 2rem 0; }
  .insights-title {
    font-size: 1.5rem;
    margin: var(--flutis-section-y-md) var(--flutis-gap-md);
    text-align: left;
    padding: 0;
  }
  .insights-items {
    grid-template-columns: 1fr 1fr;
    padding: 0 1.25rem 2rem;
    gap: 2rem;
  }
  .insights-item-image {
    width: 3.125rem;
    height: 3.125rem;
    margin-bottom: 1rem;
  }
  .insights-item-description { font-size: 1rem; width: 80%; }
}

/* ----- CtaBlock --------------------------------------------------------- */

.cta-block-wrapper {
  background-image: url('../images/Blue_Arrow_Pattern.png');
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58.125rem;
  background-size: cover;
}
.cta-block-box {
  background-color: var(--flutis-black);
  padding: var(--flutis-section-y-md);
  border-radius: 1rem;
  width: 50rem;
  text-align: center;
}
.cta-block-title {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-semibold);
  color: var(--flutis-primary);
  margin: 0 0 var(--flutis-gap-md);
}
.cta-block-description {
  font-size: 2.25rem;
  font-weight: var(--flutis-fw-light);
  color: var(--flutis-white);
  margin: 0 0 3rem;
}
@media (max-width: 1200px) {
  .cta-block-wrapper { background-size: cover; }
  .cta-block-box { width: 80%; }
}
@media (max-width: 768px) {
  .cta-block-wrapper { height: 650px; background-size: cover; padding: 0; }
  .cta-block-box { width: 80%; padding: 5rem 2rem; }
  .cta-block-title { font-size: 1.75rem; }
  .cta-block-description { font-size: 1.25rem; }
}

/* ----- Values ----------------------------------------------------------- */

.values-wrapper {
  background-color: var(--flutis-primary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: var(--flutis-section-y) 0;
}
.values-left {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.values-left img {
  position: relative;
  left: -15rem;
  width: calc(100% + 15rem);
  max-width: none;
  height: auto;
  display: block;
}
.values-right {
  margin-left: 10rem;
  display: flex;
  align-items: center;
}
.values-right-title {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-semibold);
  color: var(--flutis-black);
  margin: 0 0 0.75rem;
}
.values-right-subtitle {
  font-size: 2.25rem;
  font-weight: var(--flutis-fw-light);
  color: var(--flutis-black);
  margin: 0 0 0.75rem;
}
.values-right-item {
  font-size: 1.25rem;
  font-weight: var(--flutis-fw-medium);
  color: var(--flutis-black);
  margin: 0 0 0.5rem;
}

@media (max-width: 1200px) {
  .values-right { margin: 0 1rem 0 5rem; }
  .values-right-title { font-size: 2.25rem; }
  .values-right-subtitle { font-size: 2rem; }
}
@media (max-width: 768px) {
  .values-wrapper {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
  }
  .values-left { height: 300px; overflow: hidden; }
  .values-left img {
    left: -3rem;
    height: 100%;
    object-fit: cover;
    width: calc(100% + 8rem);
  }
  .values-right { text-align: left; margin: 5rem 0 0 0; }
  .values-right-title { font-size: 1.75rem; }
  .values-right-subtitle { font-size: 1.5rem; }
  .values-right-item { margin: 0 0 0.25rem; font-size: 1.25rem; }
}
@media (max-width: 480px) {
  .hero-content { padding: 0 1rem; }
  .business-meets-leisure-wrapper .business-meets-leisure-right {
    height: 15rem;
    margin-bottom: 1.25rem;
  }
  .support-details-wrapper {
    width: min(100%, 18.5rem);
    height: auto;
    min-height: 22rem;
    border-radius: 2.5rem;
    padding: var(--flutis-gap-md) 1.25rem;
  }
  .insights-items { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-block-description { margin-bottom: var(--flutis-gap-md); }
  .values-wrapper { grid-template-columns: 1fr; padding: var(--flutis-section-y-sm) 1.25rem; }
  .values-left { height: 200px; overflow: hidden; }
  .values-left img {
    left: -3rem;
    height: 100%;
    object-fit: cover;
    width: calc(100% + 8rem);
  }
  .values-right { text-align: left; margin: var(--flutis-section-y-md) 0 0 0; }
  .values-right-item { margin: 0 0 0.5rem 0; }
}

/* ----- About Us (ported from flutis-web-app AboutUs.scss) ---------------- */

.about-us-page { background-color: var(--flutis-black); flex: 1; }

.about-us-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--flutis-black);
}

.about-us-wrapper .about-us-title {
  font-size: 2.5rem;
  font-weight: var(--flutis-fw-semibold);
  margin: 0 0 1rem;
  color: var(--flutis-primary);
  padding-top: 10rem;
}

.about-us-wrapper .about-us-subtitle {
  font-size: 1.5rem;
  font-weight: var(--flutis-fw-light);
  margin: 0 0 2rem;
  color: var(--flutis-white);
}

.about-us-wrapper .about-us-description {
  font-size: 1rem;
  font-weight: var(--flutis-fw-light);
  color: var(--flutis-white);
  width: 35%;
  text-align: center;
  margin: 0;
  padding-bottom: 10rem;
}

.about-us-wrapper .about-us-team-wrapper {
  background-color: var(--flutis-primary);
  padding: 10rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 100%;
}

.about-us-wrapper .about-us-team-member {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
}

.about-us-wrapper .about-us-team-member-name {
  font-size: 2rem;
  font-weight: var(--flutis-fw-semibold);
  margin: 0;
  color: var(--flutis-btn-text);
}

.about-us-wrapper .about-us-team-member-position {
  font-size: 1.5rem;
  font-weight: var(--flutis-fw-light);
  margin: 0 0 1rem;
  color: var(--flutis-btn-text);
}

.about-us-wrapper .about-us-team-member-description {
  font-size: 1rem;
  margin: 0;
  color: var(--flutis-btn-text);
}

@media (max-width: 1200px) {
  .about-us-wrapper .about-us-description { width: 60%; }
  .about-us-wrapper .about-us-team-wrapper { padding: 5rem; }
}

@media (max-width: 768px) {
  .about-us-wrapper .about-us-title { font-size: 1.75rem; }
  .about-us-wrapper .about-us-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  .about-us-wrapper .about-us-description {
    width: 100%;
    padding: 2rem 2rem 10rem;
  }
  .about-us-wrapper .about-us-team-wrapper { padding: 5rem 2rem; }
  .about-us-wrapper .about-us-team-member {
    justify-content: center;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 0;
  }
  .about-us-wrapper .about-us-team-member-name {
    text-align: center;
    font-size: 1.5rem;
  }
  .about-us-wrapper .about-us-team-member-position {
    text-align: center;
    font-weight: var(--flutis-fw-light);
    font-size: 1.25rem;
  }
  .about-us-wrapper .about-us-team-member-image {
    display: block;
    margin: 0 auto;
  }
}

/* ----- Site footer (from Footer.scss) ---------------------------------- */

.site-footer {
  background-color: var(--flutis-black);
  color: var(--flutis-white);
  padding: var(--flutis-gap-md) 1rem;
  width: 100%;
}
.footer-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left .footer-logo { width: 80px; height: auto; }

:not(.footer-landing-wrapper):not(.footer-homepage-wrapper) > .site-footer {
  margin-top: 20px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-right .social-icons {
  display: flex;
  gap: 1rem;
}
.footer-right .social-icon {
  background-color: var(--flutis-white);
  border-radius: 50%;
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: transform 0.15s ease-in-out;
}
.footer-right .social-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
}
.footer-right .social-icon:hover { transform: scale(1.05); }
.footer-right .copyright {
  font-size: var(--flutis-text-sm);
  margin: 0.75rem 0 0.5rem;
  color: var(--flutis-white);
}
.footer-right .legal-links {
  display: flex;
  align-items: center;
  font-size: var(--flutis-text-sm);
}
.footer-right .legal-link {
  color: var(--flutis-white);
  text-decoration: none;
  margin: 0 0.25rem;
}
.footer-right .legal-separator {
  color: var(--flutis-white);
  margin: 0 0.25rem;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 0 1.25rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-logo { width: 80px; height: auto; }
  .footer-right { align-items: center; }
  .footer-right .social-icons {
    justify-content: center;
    margin-bottom: 0.75rem;
  }
  .footer-right .copyright { margin: 0 0 0.5rem; }
  .footer-right .legal-links {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
}
