/* ============================================================
   The Loud Clan — Native HTML + CSS
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Outfit-fallback';
  src: local('Arial');
}

/* ---------- Design tokens ---------- */
:root {
  --brand-navy: #00153d;
  --brand-navy-soft: #0a2153;
  --white: #ffffff;
  --ink: #0f1a2e;
  --muted-ink: #55627a;
  --radius-card: 20px;
  --container: 1260px;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', 'Outfit-fallback', ui-sans-serif, system-ui, -apple-system,
    'Segoe UI', Roboto, sans-serif;
  background-color: #fff;
  color: #0f1a2e;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

svg {
  display: block;
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Layout helpers ---------- */
.container ,.inner {
  width: 100%;
  max-width: 1290px;    
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}
@media (max-width: 500px) {
  .section {
    padding: 40px 0;
  }
}

.section--white {
  background-color: #fff;
}
.section--navy {
  background-color: #00153d;
}

.text-balance {
  text-wrap: balance;
}
.text-pretty {
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  border-radius: 9999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  transition: color 0.35s ease, box-shadow 0.35s ease;
}
.btn .icon {
  width: 20px;
  height: 20px;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}
.btn:hover::before {
  transform: scaleX(1);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-red {
  background-color: #eb3036;
  color: #fff;
}
.btn-red::before {
  background-color: #c31f25;
}

.btn-navy {
  background-color: #00153d;
  color: #fff;
  flex: none;
}
.btn-navy::before {
  background-color: #000c24;
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background-color: transparent;
}
.btn-outline-light::before {
  background-color: #eb3036;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
a {
    text-decoration: none;
    outline-style: none;
    pointer-events: auto; 
}
  /* ============================================================
    Page Banner
    ============================================================ */
  .banner {position: relative;padding: 232px 0 149px;overflow: hidden;display: flex;align-items: center;background: url(/wp-content/themes/theloudclan_wp/images/TLChome_TLC_banner_bgimg.webp) center center no-repeat;background-size: cover;}
  .banner .inner {max-width: 1290px;width: 100%;margin: 0 auto;}
  .banner .inner .text_box {max-width: 673px;}
  .banner .inner .text_box h1 {text-wrap: balance;font-size: 60px;font-weight: 700;line-height: 1.17;color: #fff;}
  .banner .inner .text_box h1 span {color: #eb3036;}
  .banner .inner .text_box p {margin-top: 22px;font-size: 18px;line-height: 1.7;color: rgba(255, 255, 255, 0.75);}
  .banner .inner .text_box .content_bottom {margin-top: 36px;display: flex;flex-wrap: wrap;gap: 16px;}
  @media (max-width: 1200px) {
    .banner {background-position-x: 90% !important;padding: 200px 0 150px;}
    .banner .inner .text_box {max-width: 580px;}
    .banner .inner .text_box p {margin-top: 16px;}
    .banner .inner .text_box h1 {font-size: 48px;}
    .banner .inner .text_box .content_bottom {margin-top: 30px;}
    .banner::before {content: "";position: absolute;inset: 0;left: 0;top: 0;background: rgba(0, 0, 0, 0.5);}
  }
  @media (max-width: 1200px) {
  }
  @media (max-width: 1024px) {
    .banner .inner .text_box h1 {font-size: 42px;}
    .banner .inner .btn {font-size: 14px;padding: 14px 24px;}
    .banner .inner .text_box p {    line-height: 1.4;}
    .banner .inner .text_box .content_bottom {margin-top: 20px;gap: 12px;}
  }
    @media (max-width: 1200px) {
  }
  @media (max-width: 768px) {
    .banner {padding: 180px 0 120px;}
    .banner .inner .btn {padding: 12px 20px;}
    .banner .inner .text_box h1 {font-size: 36px;}
    .banner .inner .text_box p {font-size: 15px;line-height: 1.3;}
    .banner .inner .text_box {max-width: 440px;}
  }
  @media (max-width: 600px) {
    .banner .inner .text_box {max-width: max-content;}
    .banner {background-position-x: 80% !important;}
  }
  @media (max-width: 450px) {
    .banner .inner .text_box h1 {font-size: 32px;}
  }

  /* ============================================================
    Section headings
    ============================================================ */


  /* WhoWeAre */

  .WhoWeAre {padding: 123px 0 113px; background: url(/wp-content/themes/theloudclan_wp/images/TLChome_WhoWeAre_bgimg.webp) center center no-repeat;background-size: cover;}
  .WhoWeAre .inner {display: flex;}
  .WhoWeAre .inner .text_box { max-width: 627px;}
  .WhoWeAre .inner .text_box h2 {font-weight: 700;line-height: 1.15;color: #0f1a2e;font-size: 36px;}
  .WhoWeAre .inner .text_box p {margin-top: 24px;line-height: 1.7;color: rgba(85, 98, 122, 1);font-size: 18px;}
  .WhoWeAre .inner .img_box {max-width: 624px;width: 100%;border-radius: 32px;}
  .WhoWeAre .inner .img_box img {width: 100%;}

  @media (max-width: 1080px) {
    .WhoWeAre .inner .text_box h2 {font-size: 34px;}
    .WhoWeAre .inner .text_box p {margin-top: 20px;font-size: 16px;}
    .WhoWeAre .inner .text_box {max-width: 520px;}
  }
  @media (max-width: 1024px) {
    .WhoWeAre {padding: 80px 0;}
    .WhoWeAre .inner {gap: 40px;justify-items: center;flex-direction: column;width: 100%;text-align: center;}
    .WhoWeAre .inner .text_box {max-width: 100%;}
    
  }

  @media (max-width: 768px) {
    .WhoWeAre {padding: 60px 0;}
    .WhoWeAre .inner {gap: 30px;}
    .WhoWeAre .inner .text_box p {margin-top: 20px;font-size: 16px;}
  }

  @media (max-width: 450px) {
    .WhoWeAre {padding: 40px 0;}
    .WhoWeAre .inner .text_box p {margin-top: 16px;font-size: 14px;}
    .WhoWeAre .inner .text_box h2 {font-size: 24px;}
  }

/* WhoWeAre */
  

/* Our Services */

  .OurServices {padding: 122px 0 112px; background: url(/wp-content/themes/theloudclan_wp/images/TLChome_OurServices_bgimg.webp) center center no-repeat;background-size: cover;}
  .OurServices .inner {max-width: 1290px;}
  .OurServices .inner h2 {text-align: center;color: rgba(255, 255, 255, 0.9); font-size: 36px;font-weight: 700;line-height: 1.15;}
  .OurServices .inner>p {text-align: center;color: rgba(255, 255, 255, 0.7); font-size: 18px;line-height: 1.7;margin-top: 16px;}
  .OurServices .inner .content p {margin-bottom: 24px;flex: 1;font-size: 14px;line-height: 1.6;color: rgba(255, 255, 255, 0.65);}
  @media (max-width: 1200px) {
    .OurServices {padding: 100px 0;}
  }
  @media (max-width: 980px) {
    .OurServices {padding: 80px 0;}
    .grid,
    .OurServices .inner .content {margin-top: 40px;}
  }
  @media (max-width: 768px) {
    .OurServices {padding: 60px 0;}
    .OurServices .inner h2 {font-size: 32px;}
    .OurServices .inner>p br {display: none;}
  }
  
  @media (max-width: 450px) {
    .OurServices .inner h2 {font-size: 26px;}
    .OurServices .inner>p {font-size: 14px;}
    .OurServices {padding: 40px 0;}
    .grid,
    .OurServices .inner .content {margin-top: 30px;}
  }
/* Our Services */

/* Why Choose */
  .WhyChoose {padding: 149px 0 96px; background: url(/wp-content/themes/theloudclan_wp/images/TLChome_WhyChoose_bgimg.webp) center center no-repeat;background-size: cover;}
  .WhyChoose .inner { max-width: 1290px;}
  .WhyChoose .inner h2 { text-align: center; color: rgba(15, 26, 46, 1); font-size: 36px; font-weight: 700;line-height: 1.15;}
  @media (max-width: 1200px) {
    .WhyChoose {padding: 100px 0;}
  }
  @media (max-width: 980px) {
    .WhyChoose {padding: 80px 0;}
    .grid,
    .WhyChoose .inner .content {margin-top: 40px;}
  }
  @media (max-width: 768px) {
    .WhyChoose {padding: 60px 0;}
    .WhyChoose .inner h2 {font-size: 32px;}
    .WhyChoose .inner>p br {display: none;}
  }
  @media (max-width: 450px) {
    .WhyChoose .inner h2 {font-size: 26px;}
    .WhyChoose .inner>p {font-size: 14px;}
    .WhyChoose {padding: 40px 0;}
    .grid,
    .WhyChoose .inner .content {margin-top: 30px;}
  }
/* Why Choose */

/* CTA band */
  .ctaBand {padding: 96px 0; background: url(/wp-content/themes/theloudclan_wp/images/TLChome_BrandsHear_bgimg.webp) center center no-repeat;background-size: cover;}
  .ctaBand .inner .cta-card {position: relative;overflow: hidden;border-radius: 32px;background-color: #eb3036;padding: 65px 60px 65px 64px;}
  .ctaBand .inner .cta-card .deco1 {position: absolute;pointer-events: none;right: -64px;top: -64px;height: 224px;width: 224px;border-radius: 40px;background-color: rgba(255, 255, 255, 0.1);transform: rotate(20deg);}
  .ctaBand .inner .cta-card .deco2 {position: absolute;pointer-events: none;bottom: -80px;left: -40px;height: 192px;width: 192px;border-radius: 9999px;background-color: rgba(0, 0, 0, 0.1);}
  .ctaBand .inner .card_inner {position: relative;z-index: 10;display: flex;align-items: center;justify-content: space-between;gap: 32px;}
  .ctaBand .inner .card_inner h2 {text-wrap: balance;font-size: 36px;font-weight: 700;line-height: 1.15;color: #fff;max-width: 672px;}
  .ctaBand .inner .card_inner p {margin-top: 16px;font-size: 18px;line-height: 1.7;color:rgba(255, 255, 255, 0.85);}
  .ctaBand .inner .cta-card.btn {flex-shrink: 0;}

  @media (max-width: 1200px) {
      .ctaBand .inner .card_inner p {margin-top: 12px;font-size: 16px;}
      .ctaBand .inner .card_inner h2 {text-wrap: balance;font-size: 32px;}
      .ctaBand .inner .cta-card {padding: 50px;}
  }
  @media (max-width: 1024px) {
      .ctaBand .inner .cta-card {border-radius: 20px;padding: 40px 30px;}
      .ctaBand .inner .card_inner h2 {font-size: 26px;}
      .ctaBand .inner .card_inner {flex-direction: row;align-items: center;}
  }
  @media (max-width: 980px) {
      .ctaBand .inner .cta-card {padding: 30px 24px;}
      .ctaBand {padding: 80px 0;}
      .ctaBand .inner .card_inner p {max-width: 440px;margin-top: 12px;font-size: 16px;line-height: 1.3;}
      .btn-navy {font-size: 14px;padding: 14px 24px;}
      .btn .icon {width: 16px;height: 16px;}
  }
  @media (max-width: 768px) {
      .ctaBand {padding: 60px 0;}
      .ctaBand .inner .card_inner {flex-direction: column;}
      .ctaBand .inner .cta-card {max-width: 500px;text-align: center;margin: 0 auto;}
  }
  @media (max-width: 450px) {
      .ctaBand {padding: 40px 0;}
      .ctaBand .inner .card_inner h2 {font-size: 24px;}
      .ctaBand .inner .card_inner p {font-size: 14px;}
  
  }
/* CTA band */

.heading {
  max-width: 672px;
}
.heading.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #eb3036;
}
.eyebrow .line {
  height: 1px;
  width: 24px;
  background-color: #eb3036;
}
.heading__title {
  text-wrap: balance;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0f1a2e;
}
@media (min-width: 768px) {
  .heading__title {
    font-size: 36px;
  }
}
.heading.dark .heading__title {
  color: #fff;
}
.heading__desc {
  margin-top: 16px;
  text-wrap: pretty;
  font-size: 16px;
  line-height: 1.7;
  color: #55627a;
}
@media (min-width: 768px) {
  .heading__desc {
    font-size: 18px;
  }
}
.heading.dark .heading__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   Split section (Who We Are)
   ============================================================ */
.split {
  display: grid;
  align-items: center;
  gap: 56px;
}
@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}
.split__text {
  margin-top: 24px;
  text-wrap: pretty;
  font-size: 16px;
  line-height: 1.7;
  color: #55627a;
}
@media (min-width: 768px) {
  .split__text {
    font-size: 18px;
  }
}


/* About "One connected team" panel */
.deco-num {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.deco-sub {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.deco-note {
  max-width: 288px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   Grids
   ============================================================ */
.grid {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}
.grid--2 {
  grid-template-columns: 1fr;
}
.grid--3 {
  grid-template-columns: 1fr;
}
.grid--4 {
  grid-template-columns: 1fr;
}
@media (max-width: 980px) { 
  .grid {
    margin-top: 40px;
  }
}
@media (min-width: 640px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) { 
  .grid {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 450px) { 
  .grid {
    margin-top: 24px;
  }
}

.grid-actions {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ============================================================
   Service cards
   ============================================================ */
/* Compact (navy, 2x4) */
.card-compact {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a2153;
  padding: 28px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.card-compact:hover {
  transform: translateY(-6px);
  border-color: rgba(235, 48, 54, 0.6);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.card-compact__icon {
  margin-bottom: 20px;
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: rgba(235, 48, 54, 0.12);
  color: #eb3036;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.card-compact__icon .icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}
.card-compact:hover .card-compact__icon {
  background-color: #eb3036;
  color: #fff;
}
.card-compact__title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.card-compact__desc {
  margin-bottom: 24px;
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #eb3036;
  transition: gap 0.3s ease;
}
.learn-more .icon {
  width: 16px;
  height: 16px;
}
.card-compact:hover .learn-more,
.card-detailed:hover .learn-more {
  gap: 12px;
}

/* Detailed (white, 4x2) */
.card-detailed {
  display: flex;
  height: 100%;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 21, 61, 0.08);
  background-color: #fff;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 21, 61, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card-detailed:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 21, 61, 0.14);
}
.card-detailed__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-detailed__icon {
  display: flex;
  height: 64px;
  width: 64px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: #00153d;
  color: #fff;
  transition: background-color 0.4s ease;
}
.card-detailed__icon .icon {
  width: 32px;
  height: 32px;
  stroke-width: 1.7;
}
.card-detailed:hover .card-detailed__icon {
  background-color: #eb3036;
}
.card-detailed__num {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #eb3036;
}
.card-detailed__body {
  display: flex;
  flex-direction: column;
}
.card-detailed__title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #0f1a2e;
}
.card-detailed__desc {
  margin-bottom: 20px;
  flex: 1;
  font-size: 15.2px;
  line-height: 1.7;
  color: #55627a;
}

/* ============================================================
   Why-choose / value cards (white)
   ============================================================ */
.card-feature {
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0, 21, 61, 0.08);
  background-color: #fff;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 21, 61, 0.05);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.card-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(235, 48, 54, 0.4);
  box-shadow: 0 22px 50px rgba(0, 21, 61, 0.12);
}
.card-feature__icon {
  margin-bottom: 24px;
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: #00153d;
  color: #fff;
  transition: background-color 0.4s ease;
}
.card-feature__icon .icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.7;
}
.card-feature:hover .card-feature__icon {
  background-color: #eb3036;
}
.card-feature__title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #0f1a2e;
}
.card-feature__body {
  font-size: 15.2px;
  line-height: 1.5;
  color: #55627a;
}

/* value cards on navy */
.card-value {
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a2153;
  padding: 32px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.card-value:hover {
  transform: translateY(-6px);
  border-color: rgba(235, 48, 54, 0.6);
}
.card-value__icon {
  margin-bottom: 24px;
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: rgba(235, 48, 54, 0.12);
  color: #eb3036;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.card-value__icon .icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}
.card-value:hover .card-value__icon {
  background-color: #eb3036;
  color: #fff;
}
.card-value__title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.card-value__body {
  font-size: 15.2px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   Process step cards (navy)
   ============================================================ */
.card-step {
  position: relative;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a2153;
  padding: 32px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.card-step:hover {
  transform: translateY(-6px);
  border-color: rgba(235, 48, 54, 0.6);
}
.card-step__num {
  margin-bottom: 24px;
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: #eb3036;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.card-step__title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.card-step__body {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   Checklist (About — What We Help You Do)
   ============================================================ */
.check-grid {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.check-item {
  display: flex;
  height: 100%;
  align-items: flex-start;
  gap: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a2153;
  padding: 24px;
}
.check-item .icon {
  margin-top: 2px;
  color: #eb3036;
  stroke-width: 1.9;
}
.check-item p {
  font-size: 15.2px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   Mission statement
   ============================================================ */
.mission {
  margin-inline: auto;
  max-width: 896px;
  text-align: center;
}
.mission .eyebrow {
  justify-content: center;
}
.mission__text {
  text-wrap: balance;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #0f1a2e;
}
@media (min-width: 768px) {
  .mission__text {
    font-size: 30px;
  }
}

/* ============================================================
   CTA band
   ============================================================ */


/* ============================================================
   Compact CTA (Not Sure Where to Start / Want to Work With Us)
   ============================================================ */
.cta-soft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  border-radius: 32px;
  border: 1px solid rgba(0, 21, 61, 0.1);
  background-color: rgba(0, 21, 61, 0.03);
  padding: 48px 32px;
}
@media (min-width: 768px) {
  .cta-soft {
    padding: 48px 56px;
  }
}
@media (min-width: 1024px) {
  .cta-soft {
    flex-direction: row;
    align-items: center;
  }
}
.cta-soft__title {
  text-wrap: balance;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0f1a2e;
  max-width: 672px;
}
@media (min-width: 768px) {
  .cta-soft__title {
    font-size: 36px;
  }
}
.cta-soft__desc {
  margin-top: 16px;
  text-wrap: pretty;
  font-size: 16px;
  line-height: 1.7;
  color: #55627a;
}
@media (min-width: 768px) {
  .cta-soft__desc {
    font-size: 18px;
  }
}
.cta-soft .btn {
  flex-shrink: 0;
}
.section--pad-sm {
  padding-block: 80px;
}
@media (min-width: 768px) {
  .section--pad-sm {
    padding-block: 96px;
  }
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
.detail-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 20px;
  border: 1px solid rgba(0, 21, 61, 0.08);
  background-color: rgba(0, 21, 61, 0.03);
  padding: 24px;
}
.detail-item__icon {
  display: flex;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #00153d;
  color: #fff;
}
.detail-item__icon .icon {
  stroke-width: 1.8;
}
.detail-item__label {
  font-size: 14px;
  font-weight: 600;
  color: #0f1a2e;
}
.detail-item__value {
  margin-top: 4px;
  font-size: 15.2px;
  line-height: 1.7;
  color: #55627a;
}

/* Form */
.form-wrap {
  margin-top: 40px;
}
.form {
  border-radius: 20px;
  border: 1px solid rgba(0, 21, 61, 0.1);
  background-color: #fff;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 21, 61, 0.08);
}
@media (min-width: 768px) {
  .form {
    padding: 40px;
  }
}
.form-row {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.field {
  margin-top: 20px;
}
.field:first-child,
.form-row .field {
  margin-top: 0;
}
.form-row + .field,
.field + .field {
  margin-top: 20px;
}
.label {
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f1a2e;
}
.req {
  color: #eb3036;
}
.control {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 21, 61, 0.12);
  background-color: #fff;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15.2px;
  color: #0f1a2e;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.control::placeholder {
  color: rgba(85, 98, 122, 0.6);
}
.control:focus {
  border-color: #eb3036;
  box-shadow: 0 0 0 3px rgba(235, 48, 54, 0.15);
}
textarea.control {
  resize: none;
}
.select-wrap {
  position: relative;
}
select.control {
  appearance: none;
  padding-right: 44px;
}
.select-wrap .icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #55627a;
  width: 20px;
  height: 20px;
}
.form .btn {
  margin-top: 28px;
  width: 100%;
}
@media (min-width: 640px) {
  .form .btn {
    width: auto;
  }
}
.form .btn .icon {
  width: 16px;
  height: 16px;
}
.form-note {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #55627a;
}
.form-note .underline {
  font-weight: 500;
  color: #0f1a2e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Form success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #fff;
  padding: 48px;
  text-align: center;
}
.form-success__icon {
  margin-bottom: 20px;
  display: flex;
  height: 64px;
  width: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(235, 48, 54, 0.12);
  color: #eb3036;
}
.form-success__icon .icon {
  width: 32px;
  height: 32px;
}
.form-success h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #0f1a2e;
}
.form-success p {
  max-width: max-content;
  font-size: 15.2px;
  line-height: 1.7;
  color: #55627a;
}
.hidden {
  display: none !important;
}

/* ============================================================
   Footer
   ============================================================ */

