
/* ===============================
   VARIABLES
   =============================== */
:root {
    /* Colors */
    --blue1: #3B82F6;
    --blue2: #2563EB;
    --ink: #0f172a;
    --muted: #6b7280;
    --ring: #e5e7eb;
    --tile: #f8fafc;
    --tile-2: #ffffff;

    --main-bg-color: #fff;
    --blue-bg: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
    --dark-blue-bg: linear-gradient(90deg, #172554 0%, #1E3A8A 100%);
    --main-btn-color: #828387;
    --dark-grey: #232323;
    --grey: rgba(255, 255, 255, 0.1);
    --light-grey: #cccccc;
    --white: #fff;
    --black: #000;
    --blue: #00a6fb;
    --green: #23ce6b;
    --red: #fd5749;
    --main-btn-color-transparent:rgb(130, 131, 135, .2);
    --swiper-theme-color: #23ce6b !important;
    --yellow: #fcd441;
    --light-black: #111111;
    --light-black-transparent: rgb(17, 17, 17, .8);
    --blue-hover: #0095E2;
    --green-hover: #20B960;

    --title-gradient: -webkit-linear-gradient(315deg,#23ce6b 25%,#00a6fb);

    /* Resume colors */
    --resume-blue: #4285f4;
    --resume-grey: #434343;
    --g-blue: #4285F4;
    --g-green: #0F9D58;
    --g-yellow: #F4B400;
    --g-red: #DB4437;
     /* Font families */
    --main-font: 'Arial', sans-serif;
    --code-font: 'Source Code Pro', monospace;
    --title-font: 'Arial', sans-serif;
    --g-font: 'Open Sans', sans-serif;
     /* Font sizes */
     --extra-small-font: 12px;
     --small-font: 14px;
     --medium-font: 17px;
     --large-font: 20px;
     --extra-large-font: 24px;
     --extra-extra-large-font: 40px;

      /* Font colors */
     --main-font-color: #111111;
     --grey-font-color: #9DA0B6;

     /* Box shadows */
     --deep-box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
     --inset-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}


/* ===============================
   IMPORTS
   =============================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


/* ===============================
   ELEMENTS
   =============================== */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-top: 80px;
    color: var(--main-font-color);
}

p {
    color: var(--main-font-color);
    font-size: var(--medium-font);
    line-height: 1.4;
}

img {
    height: 100%;
    width: 100%;
}

h1 {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  color: #111827;  
  margin: 0 0 1rem;
}

/* highlight line */
h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}


h2 {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 26px;
    text-align: center;
    line-height: 1.25;
}

h3 {
    font-size: var(--large-font);
    font-family: var(--main-font);
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.75;
}

a {
    font-family: var(--main-font);
    text-decoration: none;
    color: var(--grey-font-color);
}


/* ===============================
   UTILITIES
   =============================== */

   /* Buttons  */
  .btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, var(--blue1), var(--blue2));
    box-shadow: 0 6px 20px rgba(37, 99, 235, .20);
    transition: transform .15s ease, box-shadow .15s ease;
 }

 .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, .25);
    cursor: pointer;
 }

   /* Background Colors  */

   .bg-blue {
    background: linear-gradient(90deg, #172554 0%, #1E3A8A 100%);
   }

   .bg-grey {
    background-color:rgb(247, 247, 250);
   }

   /* Icons  */
   .large-icon {
    height: 30px;
    width: 30px;
   }

   /* Text Section */
   .text-section {
    max-width: 50%;
    margin: auto;
    padding: 2rem 4rem;
    margin: 4rem auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
   }

  .text-section h1 {
      font-size: 40px;
      margin-bottom: 2rem;
   }

   .text-section h2 {
      font-size: 24px;
      margin: 1rem auto;
      width: 100%;
      text-align: left;
   }

    .text-section h3 {
      font-size: 18px;
      margin: .5rem auto;
      width: 100%;
      text-align: left;
   }

     .text-section p {
      width: 100%;
      line-height: 1.7;
      margin: .5rem auto .15rem;
      text-align: left;
  }

   .text-section ul,
   .text-section ol {
      width: 100%;
    }

   .text-section li {
      width: 100%;
      line-height: 1.7;
      margin: .5rem auto .15rem 1rem;
      text-align: left;
  }

  .text-section a {
     color: rgb(37, 99, 235);
  }

  .text-section .notice {
    width: 100%;
    font-style: italic;
    font-size: 12px;
    text-align: center;
  }

  @media (max-width: 768px) {

    .text-section {
      max-width: 90%;
      margin: 2rem auto;
      padding: 1rem 2rem;
    }

    .text-section h1 {
      font-size: 32px;
      margin-bottom: 1rem;
   }
  }

/* Table */
.table {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.table-row {
  width: 50%;
  margin: auto;
  padding: 2rem 4rem;
  margin: 0rem auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: .5rem;
}

.table-row .title {
  width: 100%;
  border-radius: 12px;
  flex-shrink: 0;
}

.table-row .title p {
  width: 100%;
  color:  #2563EB 100%;
  font-size: 15px;
  font-weight: bold;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.table-row .information {
  width: 100%;
}

.table-row .information p {
  width: 100%;
  font-size: 14px;
}

@media (max-width: 768px) {

  .table-row {
    width: 90%;
    padding: 1.5rem;
  }

  .table-row .title {
    width: 100%;
    padding: 0;
    border-radius: 12px;
    flex-shrink: 0;
  }
}

/* Legal Section */
.legal-section h1 {
  font-size: 40px;
  margin-bottom: 2rem;
  width: 50%;
  margin: auto;
}

.legal-section .notice {
  width: 100%;
  font-style: italic;
  font-size: 12px;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 768px) {

    .legal-section h1 {
      font-size: 32px;
      margin-bottom: 1rem;
      width: 100%;
   }
  }


/* ===============================
   COOKIES
   =============================== */

  .cookie-notice {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #000;
      border-radius: 8px;
      z-index: 1000;
      width: 500px;
      padding: 10px 50px;
      border: 1px solid #fff;
      box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    .cookie-notice .cookie-notice-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 1rem;
      text-align: center;
      padding: 20px;
      margin: auto;
    }

    .cookie-notice .cookie-notice-container .cookie-notice-title {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 1rem;
      margin: auto;
      background-color: #000;
    }

    .cookie-notice .cookie-notice-container .cookie-notice-title img {
      height: 70px;
      width: 70px;
    }

    .cookie-notice .cookie-notice-container .cookie-notice-title h3 {
      font-size: 30px;
      font-family: 'Arial', sans-serif;
      color: #fff;
    }

    .cookie-notice .cookie-notice-container p {
      font-family: Arial, sans-serif;
      font-size: 14px;
      color: #fff;
      margin: auto;
    }

    .cookie-notice .cookie-cta-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      margin: auto;
      padding: .75rem 0;
    }

    .cookie-notice .cookie-cta-container .cookie-btn {
      width: 140px;
      border-radius: 8px;
      border: 1px solid #23ce6b;
      box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px 20px;
      border-radius: 8px;
    }

    .cookie-notice .cookie-cta-container .cookie-btn:hover {
      cursor: pointer;
    }

    .cookie-notice .cookie-cta-container .cookie-btn p {
      color: #fff;
      font-family: Arial, sans-serif
    }

    .cookie-notice .cookie-cta-container .cookie-btn.cookie-accept {
      background-color: #23ce6b;
      letter-spacing: 1px;
    }

    .cookie-notice .cookie-cta-container .cookie-btn.cookie-accept p {
      font-size: 20px;
      color: #000;
    }

    .cookie-notice .cookie-cta-container .cookie-btn.cookie-reject {
      border: 1px solid #828387;
    }

    .cookie-notice .cookie-cta-container .cookie-btn.cookie-reject p {
      font-size: 14px;
      color: #828387;
    }

    @media (max-width: 768px) {

      .cookie-notice {
        width: 100%;
        left: 0;
        transform: translate(0);
        padding: 5px;
        border-radius: 0;
      }
    }

/* ===============================
   NAVBAR
   =============================== */
nav {
    position: fixed;
    top: 0;
    z-index: 9999;
    height: 80px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .1);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #9DA0B6; 
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
}

nav .nav-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 0 1.5%;  
  margin: 0 auto;
}

nav a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.main-menu a:not(.nav-cta) { 
  color: #9DA0B6;  
}

.main-menu a:not(.nav-cta):hover { 
  /* color: #1F2937; */
  color: #2563EB; 
}


.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 80px;
  width: 200px;
}

.text-green {
  background: linear-gradient(90deg, #23ce6b 0%, #20b960 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand .brand-name p {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
  background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-rendering: optimizeLegibility;
}

.brand .brand-name p .text-green {
  background: linear-gradient(90deg, #23ce6b 0%, #20b960 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.brand .brand-name p:hover {
  filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.35));
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-menu .nav-cta {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
  padding: 10px 16px;
  padding: .75rem;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(37,99,235,.25);
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}

.main-menu .nav-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(90deg, #2563EB 0%, #1D4ED8 100%);
  box-shadow: 0 10px 22px rgba(37,99,235,.35);
}

.main-menu .nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(37,99,235,.25);
}


/* ===============================
   Mobile Menu Styles
   =============================== */

.hamburger {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 10001; 
}

.hamburger img {
  width: 100%;
  height: 100%;
  transition: opacity 0.25s ease;
}

.hamburger .close-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.hamburger.active .hamburger-icon {
  opacity: 0;
}

.hamburger.active .close-icon {
  opacity: 1;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  top: 80px;
  background: linear-gradient(90deg, #172554 0%, #1E3A8A 100%);
  backdrop-filter: blur(8px);
  z-index: 9997; 
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

/* Mobile links */
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  width: 80%;
  padding: 1rem;
  border-bottom: .5px solid #6b7280;
}

.mobile-menu a:hover {
  color: #2563eb;
}

/* Responsive layout */
@media (max-width: 768px) {

  nav {
    flex-direction: row;
    padding: 0 10%;
    width: 100%;
    background: #fff;
  }

  nav .brand .image-container {
    display: none;
  }

  nav .brand .brand-name p {
    font-size: 20px;
  }

  .main-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-inner {
    position: relative;
    z-index: 10000;
    background-color: #fff;
  }

  .nav-cta {
    display: block;
    margin-left: auto;
  }
}



/* ===============================
   UTILITIES
   =============================== */

h2 {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(32px, 3vw, 34px);
  letter-spacing: -0.015em;
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  width: 50%;
  margin: 0 auto 2rem;
}

.section-intro {
  margin: 0 auto;
  /* max-width: 720px; */
  color: var(--muted);
  font: 500 15px/1.6 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}


@media (max-width: 640px) {

   h2 {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-bottom: .5rem;
   }

   .section-header {
    width: 100%;
   }

   .section-header p {
    width: 100%;
    text-align: center;
   }

   .section-intro  {
    width: 100%;
    text-align: left;
  }

}



/* =========================
   FOOTER
   ========================= */
.tcv-footer {
  --footer-ink: #E8EEFF;                 
  --footer-ink-sub: #C7D2FE;             
  --footer-link: #E0E7FF;                
  --footer-link-hover: #FFFFFF;         
  --footer-rule: rgba(255, 255, 255, 0.14);
  --footer-border: rgba(255, 255, 255, 0.16);
  --cta-blue-a: #3B82F6;
  --cta-blue-b: #2563EB;
  background: linear-gradient(90deg, #172554 0%, #1E3A8A 100%);
  color: var(--footer-ink);
  border-top: 1px solid var(--footer-border);
}

.tcv-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 2.5% 28px;
}

/* Top row */
.tcv-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Wordmark */
.tcv-wordmark {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(90deg, var(--cta-blue-a) 0%, var(--cta-blue-b) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tcv-wordmark .text-green {
  background: linear-gradient(90deg, #23CE6B 0%, #20B960 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Social pills (stay white for contrast/pop on dark bg) */
.tcv-footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid var(--footer-border);     
  color: #1F2937;                             
  text-decoration: none;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.social-pill img { width: 18px; height: 18px; display: block; }
.social-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
}

/* Rules */
.tcv-footer__rule {
  height: 1px;
  border: 0;
  background: var(--footer-rule);
  margin: 18px 0;
}
.tcv-footer__rule.t--faint { opacity: .65; }

/* Grid */
.tcv-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px 28px;
  align-items: start;
}

.tcv-footer__heading {
  margin: 0 0 10px 0;
  width: 100%;
  font-weight: 800;
  font-size: 15px;
  text-align: left;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--footer-ink);
}

.tcv-footer__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 10px;
}
.tcv-footer__list a {
  color: var(--footer-link);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
}
.tcv-footer__list a:hover {
  color: var(--footer-link-hover);
  transform: translateX(2px);
}

/* Bottom row */
.tcv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
}

.tcv-footer__copy {
  margin: 0;
  font-size: 12.5px;
  color: var(--footer-ink-sub);
}

.tcv-footer__back {
  font-size: 12.5px;
  color: #0F172A;                   
  background: #FFFFFF;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--footer-border);
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}

.tcv-footer__back:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
  border-color: rgba(255,255,255,.22);
}

/* Responsive */
/* @media (max-width: 720px) {

  .tcv-footer__top { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 14px; 
  }

  .tcv-footer__bottom { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 8px; 
  }

} */

@media (max-width: 720px) {
  .tcv-footer {
    padding: 5%;
  }
  /* Keep brand and socials on one row */
  .tcv-footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* Ensure socials stay to the right */
  .tcv-footer__social {
    justify-content: flex-end;
    flex: 1;
  }

  /* Make link sections left-aligned for readability */
  .tcv-footer__grid {
    display: grid;
    grid-template-columns: 1fr; 
    row-gap: 0;     
    text-align: left;
    justify-items: start;
  }

  .tcv-footer__col {
    margin: 1.25rem 0;
  }

  .tcv-footer__heading,
  .tcv-footer__list {
    text-align: left;
  }

  .tcv-footer__list {
    width: 100%;
  }

  .tcv-footer__copy {
    width: 160px;
  }

  .tcv-footer__back {
    flex-shrink: 0;
  }
}




/* =========================================================
   SECTION
   ========================================================= */
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 2rem auto;
}

.section-intro {
  text-align: center;
}


/* MEDIA QUERIES */
@media (max-width: 768px) {
    /* DISPLAY */
    .mobile {
        display: flex;
    }

    .desktop {
        display: none;
    }

    .no-mobile {
        display: none;
    }

    h1 {
        font-size: 40px;
    }


    /* ELEMENTS */
    h2 {
        font-size: var(--medium-font);
        font-size: calc(8px + 2vh);
    }

    /* SECTIONS */
    section {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: .5rem;
        width: 100%;
        height: auto;
        margin: 2rem 0;
    }

    .section-title {
        width: 90%;
        padding: 0 5%;
    }

    .section-title p {
        font-size: var(--medium-font);
    }

    /* Footer */
    footer .footer-menus {
        width: 95%;
    }

    footer .footer-menus .footer-menu {
        flex-direction: column;
        gap: 3rem;
    }

    footer .footer-menus .footer-menu .footer-menu-category {
        width: 100%;
        height: auto;
    }

}


/* Older devices (small height) */
@media (max-height: 570px) { 
    section {
        height: calc( 100vh - 150px)
    }
}





/* ==============================
   FREE REVIEW  
   ============================== */

.tcv-free-review-split {
  background: linear-gradient(90deg, #172554 0%, #1E3A8A 100%);
  /* padding: clamp(64px, 8vw, 100px) 20px; */
  padding: 4rem;
}

/* Resume Guide exception */
.faq-page .tcv-free-review-split,
.resume-guide .tcv-free-review-split,
.blog-index-container .tcv-free-review-split {
  border-radius: 12px;
}

.tcv-free-review-split h2 {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

/* Inner wrapper */
.tcv-free-review-split .fr-inner {
  max-width: 1250px;  
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Headline centered at top */
.tcv-free-review-split .fr-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  color: #0f172a;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

/* Content container for copy + form */
.tcv-free-review-split .fr-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 4rem;
}


/* Copy block */
.tcv-free-review-split .fr-copy {
  flex: 1 1 62%;  
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  max-width: none;  
  color: #fff;
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  text-align: left;
  max-width: 540px;
  margin: auto;
}

.tcv-free-review-split .fr-copy p {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 10px;
  color: #fff;
}

.tcv-free-review-split .fr-copy strong {
  color: #fff;
}


/* Responsiveness */
@media (min-width: 900px) {

  .tcv-free-review-split .fr-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

}

@media (max-width: 640px) {

   .tcv-free-review-split {
    padding: 3rem 0;
  }

  .tcv-free-review-split .fr-inner {
    width: 90%;
    gap: 1rem;
  }

  .tcv-free-review-split .fr-content {
    gap: 2rem;
  }

  .tcv-free-review-split .fr-content .fr-copy {
    width: 90%;
  }

  .tcv-free-review-split .fr-title {
    font-size: 26px;
    text-align: left;
    width: 90%;
    margin: auto;
    margin-bottom: 1rem;
  }

  .faq-page .tcv-free-review-split,
.resume-guide .tcv-free-review-split,
.blog-index-container .tcv-free-review-split {
  border-radius: 0;
}
}



/* ===============================
   REVIEW COMPONENT 
   =============================== */  
  
.review-upload-wrap {
  width: 100%;
  margin: auto;
  max-width: 600px;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin-top: -1rem;  
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}


/* Card component */
.fr-card {
  flex: 1 1 38%;
  width: 500px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 28px 26px 32px;
  text-align: left;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.15s;
  max-width: 400px;
  box-shadow: 0 12px 40px rgba(37,99,235,.15);
}

/* Text inside card */
.fr-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
  width: 100%;
  padding: 0 0 .5rem;
  text-align: center;
}

.fr-sub {
  font-size: 13.5px;
  color: #6b7280;
  font-weight: 500;
  margin: 0 0 16px;
  width: 100%;
  text-align: center;
}

.fr-sub .text-underline {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #9999;
}

/* Input fields */
.fr-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: #374151;
  margin-bottom: 6px;
}

.fr-fields input[type="text"] {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 0 14px;
  font: 500 14.5px/1 'DM Sans', sans-serif;
  color: #111827;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fr-fields input[type="text"]::placeholder {
  color: #9ca3af;
}

.fr-fields input[type="text"]:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

/* Upload button */
.fr-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  background: linear-gradient(90deg, #3B82F6, #2563EB);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  padding: 13px 0;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.fr-upload:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.fr-note {
  font-size: 10px;
  width: 100%;
  text-align: center;
  margin-top: .75rem;
}

/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .review-upload-wrap {
    margin-top: 0;
  }

  .fr-card {
    padding: 22px 18px 26px;
    width: 100%;
  }

  .fr-card .fr-input-wrap{
    width: 100%;
  }
}


/* TEXTAREA  */
.fr-fields textarea {
  width: 100%;
  margin-top: 1rem;
  min-height: 110px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 12px 14px;
  font: 500 14.5px/1.5 'DM Sans', sans-serif;
  color: #111827;
  outline: none;
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fr-fields textarea::placeholder {
  color: #9ca3af;
}

.fr-fields textarea:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}


/* LAST STEP  */
.fr-inline-fields {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.fr-input-wrap {
  flex: 1 1 48%;
  position: relative;
  display: flex;
  align-items: center;
}

.fr-input-wrap .source-icon {
  position: absolute;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fr-input-wrap .option-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Input & Select styles */
.fr-input-wrap input[type="email"],
.fr-input-wrap select {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 0 14px 0 38px;
  font: 500 14.5px/1 'DM Sans', sans-serif;
  color: #111827;
  background-color: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  background-image: url('/images/svg/chevron-down.svg');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

.fr-input-wrap input[type="email"]::placeholder,
.fr-input-wrap select::placeholder {
  color: #9ca3af;
}

.fr-input-wrap input[type="email"]:focus,
.fr-input-wrap select:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

/* Hide dropdown arrow on email input */
.fr-input-wrap input[type="email"] {
  background-image: none;
}

/* Checkbox section */
.fr-checkbox {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #374151;
}

.fr-checkbox input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #3B82F6;
  transform: scale(1.15);
}

.source-select .text-small {
  font-size: 12px;
}

.fr-checkbox strong {
  color: #2563EB;
}

/* Hidden fields */
.hidden {
  display: none;
}

/* Mobile layout */
@media (max-width: 640px) {
  .fr-inline-fields {
    flex-direction: column;
    gap: 10px;
  }

  .fr-input-wrap {
    flex: 1 1 100%;
  }
}

/* Disclaimer */
.fr-card .text-underline {
  margin-top: 4px;
  font-size: 12px;
  color:#0F9D58;
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* ===============================
   TOOLTIP (for Japan checkbox)
   =============================== */
.fr-tooltip-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.fr-tooltip {
  position: absolute;
  left: 0;
  bottom: 120%;
  width: 320px;
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(6px);
}

.fr-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 24px;
  border-width: 8px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.fr-tooltip-wrap:hover .fr-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}

@media (max-width: 640px) {
  .fr-tooltip {
    width: 90vw;
    bottom: 105%;
    left: 0;
    font-size: 12.5px;
    line-height: 1.45;
  }
}

.fr-tooltip a {
  color: #2563EB;
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* Form Transition Animation */
.fr-form-fade {
  animation: frFormFade 0.55s ease-out both;
}

@keyframes frFormFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ===============================
   PACKAGES
   =============================== */

.pricing {
  width: 100%;
  margin: 72px auto;
  padding: 3rem 0;
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(90deg, #172554 0%, #1E3A8A 100%);
}

.pricing-head {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-head h2 {
    color: #fff;
    width: 100%;
  }

.pricing .section-intro,
.pricing .pricing-footnote {
     color: #fff;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 26px);
  position: relative;
  max-width: 1120px;
}

/* Badge on top  */
.badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.02em;
  z-index: 99;
}

/* Card */
.card {
  background: linear-gradient(180deg, var(--tile), var(--tile-2));
  border: 1px solid var(--ring);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 48px rgba(15, 23, 42, 0.12);
}

.card.featured {
  border: 1.5px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 14px 48px rgba(37, 99, 235, 0.12);
}

/* Head */
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.card-name {
  margin: 0;
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.price {
  font-weight: 900;
  color: var(--blue2);
  font-size: 22px;
}

/* Desc */
.card-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px;
}

/* Features */
.card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed transparent;
  background: linear-gradient(180deg, rgba(15,23,42,0.015), rgba(15,23,42,0.0));
}

/* Subtle highlight for added */
.card-features li.added {
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
  border-color: #cfe1ff;
}

/* Check icon */
.card-features li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue2);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2L4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z"/></svg>') center / 12px 12px no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2L4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z"/></svg>') center / 12px 12px no-repeat;
}

/* CTA */
.card-cta {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.card-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
}

/* Footnote */
.pricing-footnote {
  margin-top: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px) {

  .pricing {
    padding: 2rem;
  }

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

  .badge-top {
    display: none;
    transform: none;
    border-radius: 12px 12px 0 0;
  }

  .card {
    min-height: unset;
  }
}




/* ===============================
   TESTIMONIALS
   =============================== */
.tcv-reviews {
  width: 90%;
  margin: auto;
  margin: 72px auto 48px;
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --ink: #0f172a;
  --muted: #6b7280;
  --ring: #e5e7eb;
  --tile: #ffffff;
  --shadow: 0 6px 24px rgba(15, 23, 42, .06);
  --blue1: #3B82F6;
  --blue2: #2563EB;
  --green: #23CE6B;

}

.tcv-reviews__head {
  text-align: center;
  margin-bottom: 26px;
}

.tcv-rev-carousel {
  position: relative;
  width: 90%;
  margin: 0 auto;
  overflow: visible;
  max-width: none;
}


.tcv-rev-carousel .carousel-viewport {
  overflow: hidden;
  position: relative;
  height: calc(300px * 3 + 24px * 2);
  width:  calc(360px * 3 + 4px);
  margin: auto;
}

.tcv-revtrack {
  width: 100%;
  display: grid;
  width: max-content;

  grid-auto-flow: column;
  grid-auto-columns: 360px;
  grid-template-rows: repeat(3, 300px);

  column-gap: 0rem;  
  row-gap: 1rem;

  list-style: none;
  padding: 6px 2px;
  margin: 0;

  overflow-x: auto;
  /* overflow-x: visible; */
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2px;

  -webkit-overflow-scrolling: touch;
}

.tcv-revtrack::-webkit-scrollbar {
  display: none;
}

.tcv-revslide {
  scroll-snap-align: start;
  width: 100%;
  height: 100%;
}

.tcv-revslide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .tcv-revtrack {
    grid-auto-columns: 320px;
    grid-template-rows: repeat(3, 260px);
    column-gap: 20px;
    row-gap: 20px;
  }

  .tcv-rev-carousel .carousel-viewport {
    height: calc(260px * 3 + 20px * 2);
  }

}

@media (max-width: 640px) {
  .tcv-rev-carousel .carousel-viewport {
    width: 90vw !important;
    max-width: 90vw !important;
    height: 260px !important;
  }

  .tcv-revtrack {
    grid-auto-columns: 90vw !important;
    grid-template-rows: repeat(1, 260px) !important;
    column-gap: 16px !important;
    row-gap: 0 !important;
    position: relative;
    left: -22px; 
    overflow-x: hidden;
    /* overflow-x: visible; */
  }

}



.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  padding: 0;
  z-index: 99999;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.nav-btn:hover {
  background: rgba(37, 99, 235, 0.22);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.nav-btn:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
}

.nav-btn img {
  width: 22px;
  height: 22px;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(2058%) hue-rotate(214deg) brightness(95%) contrast(97%);
  opacity: 0.9;
}

.nav-btn.prev { left: 0.5rem; }
.nav-btn.next { right: 0.5rem; }

@media (max-width: 640px) {
  .carousel { padding: 1.5rem 2.75rem; }
  .nav-btn { width: 40px; height: 40px; }
  .nav-btn img { width: 20px; height: 20px; }
}






/* ===================================
   FAQ 
   =================================== */

#faq.tcv-faq {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #0f172a;
}


/* Groups */
#faq .tcv-faq__groups {
  display: flex;
  flex-direction: column;
}

#faq .tcv-faq__group {
  margin: 1.5rem auto;
  width: 100%;   
}


#faq .tcv-faq__group-title {
  font: 800 12.5px/1.2 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #374151;
  opacity: .75;
  margin: 0 0 8px;
  text-align: left;
}

/* Items — divider only (no boxes) */
#faq .tcv-faq__item {
  background: none;
  border-radius: 0 ;
  box-shadow: none;
  width: 100%;
  margin: 0;
  padding: 5px;   
  border-bottom: 1px solid #e5e7eb;   
  border-left: none;
  border-right: none;
  border-top: none;
}

/* Question row */
#faq .tcv-faq__q {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  cursor: pointer;
  padding: 16px 0;                
  font-weight: 600;
  font-size: 16px;
  color: #0f172a;
  transition: color .2s ease;
}

#faq .tcv-faq__q:hover { color: #1d4ed8; }
#faq .tcv-faq__q:focus-visible {
  outline: 2px solid rgba(37,99,235,.35);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Chevron (right) */
#faq .tcv-faq__chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: #1d4ed8;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 10l5 5 5-5H7z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 10l5 5 5-5H7z'/></svg>") center/contain no-repeat;
  transition: transform .25s ease;
}
#faq .tcv-faq__item[data-open="true"] .tcv-faq__chev { transform: rotate(180deg); }

/* Answer (collapsible) */
#faq .tcv-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .28s cubic-bezier(.45,0,.15,1), padding .18s ease;
  padding: 0 0;                       
}
#faq .tcv-faq__item[data-open="true"] .tcv-faq__a {
  grid-template-rows: 1fr;
  padding: 0 0 14px 0;               
}
#faq .tcv-faq__a > * { overflow: hidden; }
#faq .tcv-faq__a p {
  margin: 0 0 12px;
  color: #374151;
  font: 400 15px/1.7 'DM Sans', sans-serif;
}
#faq .tcv-faq__a a.text-blue {
  color: #2563EB;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

#faq .faq-note {
  margin-top: 2rem;
  font-size: 14px;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  #faq.tcv-faq { margin: 4.5rem auto; }
  #faq .tcv-faq__q { font-size: 15px; padding: 16px 0; }

  #faq .tcv-faq__group-title  {
    width: 98%;
    margin: auto;
    text-align: left;
    font-size: 15px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #faq .tcv-faq__a,
  #faq .tcv-faq__chev,
  #faq .tcv-faq__q { transition: none; }
}




/* ===============================
   LOADER
   =============================== */


.fr-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.fr-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fr-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 28px 36px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  animation: fadeInUp 0.4s ease forwards;
  transform: translateY(8px);
}

/* Spinner */
.fr-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(59, 130, 246, 0.2);
  border-top-color: #2563EB;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 14px;
}

/* Text below spinner */
.fr-loader-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #1E3A8A;
  text-align: center;
  margin: 0;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}



/* ===================================
    PACKAGES PAGE
   =================================== */

   .packages-page {
    margin: 0 auto 3rem;
   }


/* ===================================
    OFFER COUNTDOWN
   =================================== */


.tcv-countdown {
  display: none; 
  position: sticky;
  top: 0;
  inset-inline: 0;
  z-index: 9999;

  /* Medium-dark harmonious green */
  background: linear-gradient(90deg, #1eb863 0%, #189a50 100%);

  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  padding: 10px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
}

/* Bar that fills during countdown */
.tcv-countdown-bar {
  height: 3px;
  width: 0%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 8px rgba(255,255,255,0.35);
  transition: width 0.5s cubic-bezier(.22,.61,.36,1);
}

/* Guarantee text */
.tcv-countdown p {
  width: 100%;
  margin: 0;
  margin-top: 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: #fff;
}

.tcv-countdown-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 10px 0 6px;
}

/* Small pill */
.tcv-countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;

  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.17);
}

/* Dot */
.tcv-countdown-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23ce6b; 
  box-shadow: 0 0 0 4px rgba(35,206,107,0.14);
}

/* “Ends in” label */
.tcv-countdown-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  opacity: .9;
}

/* Timer */
.tcv-countdown-time {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  font-weight: 800;
  color: #f6fcf7;
}

.tcv-countdown-num {
  font-size: 20px;
  line-height: 1;
}

.tcv-countdown-unit {
  font-size: 11px;
  opacity: .9;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Colon separators */
.tcv-countdown-sep {
  opacity: .7;
  font-weight: 600;
}

/* Expired state (if used) */
.tcv-countdown.expired {
  background: #cdd5cf;
  color: #333;
  box-shadow: none;
}

.tcv-countdown.expired .tcv-countdown-dot {
  background: #fcd441;
  box-shadow: 0 0 0 4px rgba(252,212,65,.14);
}




/* ===================================
   REVIEW / ORDER CONFIRMATION
   =================================== */

.review-thanks {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.review-thanks h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.review-thanks p {
  /* font-size: 16px; */
  color: #555;
  text-align: left;
}

.review-thanks .thanks-header p {
  text-align: center;
}

/* Next Steps container */
.next-steps {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  padding: 40px;
  width: 100%;
}

.next-steps h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.steps-container {
  display: grid;
  gap: 20px;
}

.step-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e4e6ef;
  background: #fafbfd;
}

.step-card.completed {
  border-color: #23ce6b;
  background: #ecfdf4;
}

.step-card .step-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 6px;
}

.status-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #23ce6b;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 14px;
}

.upcoming .status-icon {
  background: #d1d4e2;
}

.step-desc {
  margin: 0;
  color: #666;
  font-size: 13px;
}

/* "What you can do now" */
.what-now {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  padding: 40px;
  width: 100%;
}

.what-now h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #333;
}

.what-now ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-now li {
  margin-bottom: 18px;
  font-size: 15px;
}

/* Toolkit CTA block */
.toolkit-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 15px;
}

.toolkit-button {
  padding: 12px 20px;
  background: linear-gradient(90deg, #3B82F6, #2563EB);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.toolkit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.toolkit-text {
  color: #555;
  font-size: 15px;
}


@media (max-width: 640px) {
  
  .review-thanks {
    width: 90%;
    margin: 2rem auto;
  }

  .review-thanks .thanks-header {
    width: 90%;
  }

  .review-thanks h2 {
    font-size: 26px;
    text-align: left;
  }

  .review-thanks .thanks-header p {
  text-align: left;
  }
}





/* ===================================
   PAYMENT CONFIRMATION
   =================================== */
.payment-confirmation {
  max-width: 900px;
  margin: 3rem auto 4rem;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-confirmation .header {
  text-align: center;
}

.payment-confirmation .header h1 {
  margin-top: 0.25rem;
  font-size: 36px;
}

.payment-confirmation .header .sub {
  color: var(--muted);
  font-size: 16px;
  margin-top: 6px;
}


/* Card base */
.payment-confirmation .card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: center;
  gap:2rem;
  min-height: 0;
}


.payment-confirmation .card .muted {
  color: var(--muted);
}

/* Status Card (Left) */
.payment-confirmation .card .status-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-confirmation .card .status-head h2, 
.payment-confirmation .card .status-head p {
  text-align: left;
}


/* Steps */
.payment-confirmation .card .steps {
  padding-left: 1.25rem;
  /* margin: 1rem 0 1.75rem; */
}

.payment-confirmation .card .steps  li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* Help section */
.payment-confirmation .card .help {
  /* margin-top: 1rem; */
}

.payment-confirmation .card .help .resend {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.payment-confirmation .card .help .field {
  display: flex;
  flex-direction: column;
}

.payment-confirmation .card .help .field .label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.payment-confirmation .card .help .field #email-input {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fafbfd;
  font-size: 15px;
  transition: all 0.15s ease;
}

.payment-confirmation .card .help .field #email-input:focus {
  border-color: var(--blue1);
  background: #fff;
}


.payment-confirmation .card .help .cta-div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

/* CTA button */
.payment-confirmation .card .help .cta-div .cta {
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--blue1), var(--blue2));
  color: #fff;
  border: none;
  cursor: pointer;
  width: fit-content;
  box-shadow: 0 6px 18px rgba(37,99,235,.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.payment-confirmation .card .help .cta-div .cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(37,99,235,.25);
}

.payment-confirmation .card .help .cta-div .fineprint {
  font-size: 12px;
  color: var(--muted);
}






/* ===================================
   REQUIREMENTS SUBMISSION
   =================================== */

.req-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2.5rem;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 1rem;
  padding: 0 20px;
  align-items: flex-start;
}

.req-grid .req-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-top: 1rem;
  color: #111;
}

.req-grid .card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.req-grid .card,
.req-grid .card * {
  outline: none !important;
}

.req-grid .section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.req-grid .field,
.req-grid .field-inline {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

.req-grid .label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 15px;
}

.req-grid input,
.req-grid select,
.req-grid textarea {
  padding: 11px 13px;
  border: 1px solid #d1d4e2;
  border-radius: 10px;
  background: #fafbfd;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.req-grid input:focus,
.req-grid select:focus,
.req-grid textarea:focus {
  border-color: #3b82f6;
  background: #fff;
}

.req-grid .file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.req-grid .file-upload-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.req-grid .file-upload-label {
  padding: 9px 14px;
  background: #fafbfd;
  border-radius: 10px;
  border: 1px solid #d1d4e2;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.req-grid #file-name {
  font-size: 14px;
  color: #666;
}

.req-grid .two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.req-grid .inline-options {
  display: flex;
  gap: 10px;
}

.req-grid .chip {
  flex: 1;
  border: 1px solid #d1d4e2;
  background: #fafbfd;
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.req-grid .chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.req-grid .chip span {
  line-height: 1.3;
}

.req-grid .chip input:checked + span {
  color: #2563eb;
  font-weight: 600;
}

.req-grid .chip input:checked + span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: 0 0 0 1.5px #2563eb inset;
}

.req-grid fieldset.field-inline {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.req-grid fieldset.field-inline .inline-options {
  margin-bottom: 4px;
}

.req-grid .hint {
  font-size: 11px;
  margin-top: 5px;
}

.req-grid .source-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.req-grid .source-icon img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.req-grid .actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.req-grid .cta {
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: fit-content;
}


.req-grid .summary ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.req-grid .summary li {
  display: flex;
  gap: 10px;
  margin-bottom: 0.8rem;
  align-items: flex-start;
}

.req-grid .summary .tick {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

.req-grid .summary {
  position: sticky;
  top: 100px;
}

@media (max-width: 1050px) {
  .req-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .req-grid .summary {
    position: static;
    margin-top: 1.5rem;
  }
  .req-grid .two-cols {
    grid-template-columns: 1fr;
  }
}


.form-disclaimer-wrapper {
  text-align: center;
  margin: 1.5rem auto 3rem;
  font-size: 13px;
  color: #666;
  padding: 0 10px;
}


/* JS Generated styles */
.order-name {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  width: 100%;
}




/* ===============================
  GOOGLE REVIEWS
   =============================== */

.google-reviews {
  margin: 0;
  width: 100%;
  max-width: 1080px;
  margin: auto;
}

.google-reviews h2 {
  padding: 1rem 0;
}

.buffer {
  height: 3rem;
  width: 100%;
}

@media (max-width: 900px) {
  
  .google-reviews {
    width: 90vw !important;
    margin: auto;
  }
}

@media (max-width: 640px) {

  .eapps-widget,
  .eapps-widget * {
    max-width: 100% !important;
  }
}