/* Icons */
/* https://www.svgrepo.com/collection/bigmug-interface-icons/1 */

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

:root{
  /* Colors  */
  --text-main:#0f172a;
  --text-muted:#5b6476;
  --blue: #0071eb;
  --blue-hover: #0062cc;
  --green: #009A44;
  --green-hover: #00853A;
  --yellow: #EBB900;
  --yellow-hover: #C99D00;
  --red: #EB003A;
  --red-hover: #C80031;
  --orange: #EB7A00;
  --orange-hover: #C76600;
  --purple: #6B4DE6;
  --purple-hover: #5A40C4;
  --grey: #5E6B7A;
  --grey-hover: #4F5B69;
  --white-hover: #E3ECFF;
  --accent:#0071eb;
  --dark-blue: #003E82;
  --border-subtle:#eef0f5;
  --border-default:#e6e8ef;


  --shadow-soft:0 10px 22px rgba(17,24,39,.06);

  /* Sizes  */
  --extra-extra-large: 22px;
  --extra-large: 20px;
  --large: 18px;
  --default: 16px;
  --small: 14px;
  --extra-small: 12px;
  --extra-extra-small: 10px;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: 80px;
}


body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* BUTTONS  */

/* Button Container */
.btn-container {
  display:flex;
  gap:16px;
  justify-content:center;
  align-items:center;
}

/* Base button */
.btn{
    background-color: var(-blue);
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: var(--large);
    font-weight: 600;
    line-height: 1.6;
    text-decoration: none;
    transition: box-shadow .2s, color .2s, background-color .2s;
    box-shadow: 0 0 1px #00000014, 0 1px 4px #0000001f;
}

.btn:active{ transform:translateY(1px); }

.btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(59,93,255,.22);
}

/* Primary */
.btn-primary {
  background: var(--blue);
  color:#fff;
  box-shadow:0 10px 22px rgba(47,65,255,.18);
}

.btn-primary:hover { 
    background: var(--blue-hover);
}

/* Secondary */
.btn-secondary{
  background:#fff;
  color:#111827;
  border-color:#d7dbe4;
  box-shadow:0 8px 18px rgba(17,24,39,.06);
}
.btn-secondary:hover{
  border-color:#c9cfdb;
  box-shadow:0 10px 22px rgba(17,24,39,.08);
}

/* Small */
.btn-small {
   padding: 10px 23px;
   font-size: var(--default);
}



/* =========================
  ANIMATIONS
========================= */
.rotate {
  animation: rotate 3.5s linear infinite;
  transform-origin: center;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Process Icon (end) */


/* =========================
   NAVBAR
========================= */

/* Navbar (start) */
.nav{
  --nav-height: 64px;

  position: sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(12px) saturate(180%);
  border-bottom:1px solid var(--border-subtle);
}
/* Navbar (end) */

/* Layout (start) */
.nav-inner{
  max-width:1120px;
  margin:auto;
  padding:14px 22px;
  min-height: var(--nav-height);

  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  column-gap:18px;
}
/* Layout (end) */

/* Brand (start) */
.brand{
  text-decoration:none;
  color:var(--blue);
  font-weight:700;
  font-size: var(--extra-large);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing:-.02em;
  justify-self:start;
}
/* Brand (end) */

/* Menu (start) */
.nav-links{
  display:flex;
  align-items:center;
  gap: 34px;
  justify-self:center;
}

.nav-links a{
  text-decoration:none;
  color:var(--text-muted);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing:-0.01em;
  padding:6px 0;
  transition:color .15s ease;
}
/* Menu (end) */

/* Actions (start) */
.nav-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-cta{
  display:inline-flex;
}
/* Actions (end) */

/* Mobile Toggle (start) */
.nav-toggle{
  display:none;

  width:42px;
  height:42px;

  border-radius:12px;
  border:1px solid var(--border-default);
  background:#fff;
  box-shadow: 0 0 1px #00000014, 0 1px 4px #0000001f;

  cursor:pointer;
  position: relative;
}

.nav-toggle img{
  width:18px;
  height:18px;
  opacity:.9;

  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

.nav-toggle .nav-toggle-open{ display:none; }
.nav-toggle .nav-toggle-close{ display:none; }

.nav-toggle[aria-expanded="false"] .nav-toggle-open{ display:block; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close{ display:block; }

.nav-toggle:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(59,93,255,.22);
}
/* Mobile Toggle (end) */

/* Mobile Drawer (start) */
.nav-drawer{
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-height);
  height: calc(100dvh - var(--nav-height));
  z-index: 49;

  display:none;
  background: #fff;
  border-top: 1px solid var(--border-subtle);

  overflow:auto;
  -webkit-overflow-scrolling: touch;
}

.nav-drawer.is-open{
  display:block;
}

.nav-drawer-inner{
  height: 100%;
  width: 100%;
  padding: 22px 22px 34px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.nav-drawer-links{
  width: 100%;
  max-width: 560px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap: 22px;

  text-align:center;
}

.nav-drawer-cta{
  width: 100%;
  max-width: 420px;
}

.nav-drawer-links a{
  text-decoration:none;
  color: var(--text-main);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  font-size: var(--extra-extra-large);
  font-weight: 700;
  letter-spacing: -0.03em;

  padding: 6px 0;
}

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

.nav-drawer-links .nav-drawer-cta{
  color:#fff;
  padding: 16px 32px;
  font-size: var(--large);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.01em;
  border-radius: 12px;
}
/* Mobile Drawer (end) */

/* Mobile Behavior (start) */
.no-scroll{
  overflow:hidden;
}

@media (max-width:860px){
  .nav-inner{
    grid-template-columns: 1fr auto;
    column-gap:12px;
  }

  .nav-links{ display:none; }
  .nav-cta{ display:none; }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
}
/* Mobile Behavior (end) */





/* =========================
   COOKIE NOTICE
========================= */

/* Cookie Notice Shell (start) */
.cookie-notice{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;

  width: 100%;
  padding: 18px 22px;

  border-top: 1px solid var(--border-default);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px) saturate(180%);

  box-shadow: 0 -10px 30px rgba(17,24,39,.08);
}
/* Cookie Notice Shell (end) */


/* Cookie Notice Inner (start) */
.cookie-notice-container{
  max-width: 1120px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px 24px;
}
/* Cookie Notice Inner (end) */


/* Cookie Notice Title (start) */
.cookie-notice-title{
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-notice-title img{
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.cookie-notice-title h3{
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
  white-space: nowrap;
}
/* Cookie Notice Title (end) */


/* Cookie Notice Copy (start) */
.cookie-notice p{
  margin: 0;
  font-size: var(--small);
  line-height: 1.7;
  color: var(--text-muted);
}
/* Cookie Notice Copy (end) */


/* Cookie Notice CTA Container (start) */
.cookie-cta-container{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
/* Cookie Notice CTA Container (end) */


/* Cookie Notice Buttons (start) */
.cookie-btn{
  min-width: 120px;
  min-height: 48px;
  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  border: 1px solid var(--border-default);
  background: #fff;
  box-shadow: 0 8px 18px rgba(17,24,39,.06);

  cursor: pointer;
  transition:
    background-color .2s,
    border-color .2s,
    box-shadow .2s,
    transform .15s;
}

.cookie-btn:hover{
  transform: translateY(-1px);
}

.cookie-btn:active{
  transform: translateY(1px);
}

.cookie-btn p{
  margin: 0;
  font-size: var(--default);
  font-weight: 700;
  line-height: 1;
}
/* Cookie Notice Buttons (end) */


/* Cookie Notice Button Variants (start) */
.cookie-btn.cookie-accept{
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 22px rgba(47,65,255,.18);
}

.cookie-btn.cookie-accept:hover{
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

.cookie-btn.cookie-accept p{
  color: #fff;
}

.cookie-btn.cookie-reject{
  background: #fff;
  border-color: var(--border-default);
}

.cookie-btn.cookie-reject:hover{
  background: #f8fafc;
  border-color: #cfd6e3;
  box-shadow: 0 10px 22px rgba(17,24,39,.08);
}

.cookie-btn.cookie-reject p{
  color: var(--text-main);
}
/* Cookie Notice Button Variants (end) */


/* Cookie Notice Focus States (start) */
.cookie-btn:focus-visible,
.cookie-btn p:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(59,93,255,.22);
  border-radius: 12px;
}
/* Cookie Notice Focus States (end) */


/* Cookie Notice Responsiveness (start) */
@media (max-width: 980px){
  .cookie-notice-container{
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-cta-container{
    justify-content: flex-start;
  }
}

@media (max-width: 560px){
  .cookie-notice{
    padding: 16px;
  }

  .cookie-notice-title{
    gap: 10px;
  }

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

  .cookie-notice-title h3{
    font-size: 20px;
    white-space: normal;
  }

  .cookie-cta-container{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-btn{
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 380px){
  .cookie-notice-title h3{
    font-size: 18px;
  }

  .cookie-btn p{
    font-size: 15px;
  }
}
/* Cookie Notice Responsiveness (end) */



/* SECTIONS  */

/* =========================
   GENERAL CONTAINERS
========================= */

/* =========================
   SECTION HEADER
========================= */

/* Section Header (start) */
.section{
  margin-top: 2rem;
  padding: 72px 22px;
  background: #fff;

  background-color: var(--dark-blue);
}

.section-inner{
  max-width: 1120px;
  margin: 0 auto;
}

.section-header{
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.section-title{
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  /* color: var(--text-main); */
  color: #fff;
  margin-bottom: 1.5rem;
}

.section-text{
  margin-top: 12px;
  font-size: var(--large);
  line-height: 1.7;
  letter-spacing: 0.01em;
  /* color: var(--text-muted); */
  color: #fff;
}
/* Section Header (end) */

/* Responsiveness (start) */
@media (max-width: 860px){
  .section{ padding: 56px 22px; }
  .section-text{ 
    text-align: justify;
    font-size: var(--default); 
  }
}

@media (max-width: 480px){
  .section-title{ font-size: 34px; }
}
/* Responsiveness (end) */






/* =========================
   HERO
========================= */

/* Hero (start) */
.hero{
  padding: 92px 22px 66px;
  background: #fff;
}
/* Hero (end) */

/* Hero Inner (start) */
.hero-inner{
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;

  display:flex;
  flex-direction:column;
  align-items:center;
}
/* Hero Inner (end) */

/* Title (start) */
.hero-title{
  font-size: clamp(42px, 6vw, 76px);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  color: var(--text-main);

  line-height: 1.02;
  letter-spacing: -0.055em;

  margin: 0 auto;
  max-width: 980px;
}
/* Title (end) */

/* Subtitle (start) */
.hero-subtitle{
  color: var(--text-muted);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;

  font-size: var(--extra-large);
  line-height: 1.65;
  letter-spacing: 0.02em;

  margin: 18px auto 0;
  max-width: 760px;
}
/* Subtitle (end) */

/* Main CTAs (start) */
.hero-ctas{
  margin-top: 28px;
  flex-wrap: wrap;
}
/* Main CTAs (end) */

/* Credentials (start) */
.cred{
  margin-top: 38px;
  padding: 0;
  width: 100%;
}

.cred-inner{
  max-width: 820px;
  margin: 0 auto;

  display:flex;
  justify-content:center;
  align-items:center;
  gap:42px;
  flex-wrap:wrap;
}

.cred-item{
  display:flex;
  align-items:center;
  gap:10px;

  color: var(--text-muted);
  font-size: var(--small);
  font-weight: 500;
  letter-spacing:-0.01em;
}

.cred-item img{
  width:24px;
  height:24px;
  /* opacity:.7;
  filter:grayscale(1); */
}

.cred-item img.google-logo {
  width:20px;
  height:20px;
}

.cred-item img.japan-flag {
  border-radius: 999px;
  border: 1px solid lightgrey;
}

/* Credentials (end) */


/* Responsiveness (start) */
@media (max-width: 860px){
  .hero{ padding-top: 64px; }
  .hero-title{ font-size: 44px; }
  .hero-subtitle{ font-size: 16px; }
}

@media (max-width: 560px){
  .hero-ctas{ width: 100%; }
  .hero-ctas .btn{
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 480px){
  .hero-title{ font-size: 36px; }
}
/* Responsiveness (end) */





/* =========================
   NUMBERS
========================= */

/* Numbers (start) */
.numbers{
  padding: 14px 22px 10px;
  background: #fff;
}
/* Numbers (end) */

/* Numbers Inner (start) */
.numbers-inner{
  max-width: 1120px;
  margin: 0 auto;
}
/* Numbers Inner (end) */

/* Numbers Grid (start) */
.numbers-grid{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap: 64px;
  flex-wrap:wrap;
}
/* Numbers Grid (end) */

/* Number Item (start) */
.numbers-item{
  text-align:center;
  min-width: 220px;
}

.numbers-value{
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.numbers-value.blue {
  color: var(--blue);
}

.numbers-value.green {
  color: var(--green);
}

.numbers-value.yellow {
  color: var(--yellow);
}

.numbers-label{
  margin-top: 10px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;

  font-size: var(--large);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.numbers-info{
  width: 16px;
  height: 16px;
  opacity: .55;
}
/* Number Item (end) */

/* Numbers Responsiveness (start) */
@media (max-width: 860px){
  .numbers{ padding-top: 10px; }
  .numbers-grid{ gap: 28px; }
  .numbers-value{ font-size: 44px; }
  .numbers-label{ font-size: var(--default); }
}

@media (max-width: 480px){
  .numbers-item{ min-width: 0; width: 100%; }
  .numbers-grid{ gap: 18px; }
  .numbers-value{ font-size: 40px; }
}
/* Numbers Responsiveness (end) */








/* =========================
   SCHEDULE
========================= */

.schedule-week-mobile {
  display: none;
}

/* Schedule (start) */
.schedule{
  padding: 72px 22px;
  background: #fff;
  --schedule-max: 1040px;
}
/* Schedule (end) */


/* Schedule Inner (start) */
.schedule-inner{
  max-width: var(--schedule-max);
  margin: 0 auto;
}
/* Schedule Inner (end) */


/* Header (start) */
.schedule-header{
  text-align:center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.schedule-title{
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.schedule-subtitle{
  margin-top: 12px;
  font-size: var(--large);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

.schedule-subtitle-strong{
  color: var(--text-muted);
  font-weight: 700;
}
/* Header (end) */


/* Calendar Shell (start) */
.schedule-calendar{
  margin-top: 28px;
  width: 100%;
  max-width: var(--schedule-max);
  margin-left: auto;
  margin-right: auto;

  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.schedule-calendar::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(520px 220px at 12% 18%, rgba(0,113,235,.10), transparent 60%),
    radial-gradient(520px 220px at 58% 40%, rgba(0,113,235,.07), transparent 62%),
    radial-gradient(520px 220px at 88% 78%, rgba(0,113,235,.08), transparent 60%);
}
/* Calendar Shell (end) */


/* Week Labels (start) */
.schedule-weeks{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 14px 14px 12px;
  gap: 12px;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.schedule-week{
  height: 40px;
  display:flex;
  align-items:center;
  justify-content:center;

  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #fff;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
}
/* Week Labels (end) */


/* Grid (start) */
.schedule-grid{
  position: relative;
  z-index: 1;

  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(8, 50px);

  gap: 12px;
  padding: 16px;
}
/* Grid (end) */


/* Item (start) */
.schedule-item{
  border-radius: 12px;
  padding: 10px 12px;

  display:flex;
  align-items:center;
  gap: 10px;

  box-shadow: 0 10px 20px rgba(17,24,39,.08);
  border: 1px solid rgba(15,23,42,.10);

  background: #fff;
  color: var(--text-main);

  min-height: 48px;
  width: 100%;
}

.schedule-item-icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;

  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink: 0;
}

.schedule-item-icon img{
  height: 30px;
  width: 30px;
  opacity: .95;
}

.schedule-item-text{
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
/* Item (end) */



/* Item Variants (start) */
.schedule-item-meeting {
  position: relative;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 12px 22px rgba(17,24,39,.08);
  z-index: 0;
}

/* .schedule-item-meeting::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:12px;
  padding: 2px;

  background: linear-gradient(
    135deg,
    #4285F4,   
    #34A853,   
    #FBBC05,   
    #EA4335   
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events:none;
  z-index:-1;
} */

.schedule-item-meeting{
  position: relative;

  /* This creates a true border area */
  border: 2px solid transparent;
  border-radius: 12px;

  /* Layer 1: inner fill (white) clipped to padding-box
     Layer 2: gradient clipped to border-box */
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(
      135deg,
      #4285F4,
      #34A853,
      #FBBC05,
      #EA4335
    ) border-box;

  box-shadow: 0 12px 22px rgba(17,24,39,.08);
  z-index: 0;
}

.schedule-item-outline{
  background: #fff;
  box-shadow: 0 10px 20px rgba(17,24,39,.06);
}

.schedule-item-outline.schedule-item-blue{
  border: .5px solid rgba(0,113,235,.45);
}

.schedule-item-outline.schedule-item-blue .schedule-item-text{
  color: var(--blue);
}

.schedule-item-outline.schedule-item-green{
  border: .5px solid rgba(0,154,68,.45);
}

.schedule-item-outline.schedule-item-green .schedule-item-text{
  color: var(--green);
}

.schedule-item-solid{
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  border-color: rgba(0,154,68,.35);
  box-shadow: 0 14px 26px rgba(17,24,39,.12);
}

.schedule-item-solid .schedule-item-text{
  color: #fff;
}

.schedule-item-grey{
  background: #eef2f7;
  border: 1px dashed rgba(15,23,42,.18);
  box-shadow: none;
  opacity: .85;
}

.schedule-item-grey .schedule-item-text{
  font-weight: 700;
  color: #4b5563;
}
/* Item Variants (end) */


/* Alignment (start) */
.s-left{ justify-self:start; }
.s-center{ justify-self:center; }
.s-right{ justify-self:end; }

.s-narrow{ max-width: 270px; }
.s-wide{ max-width: none; }
/* Alignment (end) */


/* Placement helpers (add/keep) */
.s-w1{ grid-column: 1; }
.s-w2{ grid-column: 2; }
.s-w3{ grid-column: 3; }
.s-w4{ grid-column: 4; }

.s-w1-2{ grid-column: 1 / span 2; }
.s-w2-3{ grid-column: 2 / span 2; }

.s-r1{ grid-row: 1; }
.s-r2{ grid-row: 2; }
.s-r3{ grid-row: 3; }
.s-r4{ grid-row: 4; }
.s-r5{ grid-row: 5; }
.s-r6{ grid-row: 6; }
.s-r7{ grid-row: 7; }
.s-r8{ grid-row: 8; }


/* Ongoing advice Outside (start) */
.schedule-ongoing-outside{
  max-width: var(--schedule-max);
  margin: 14px auto 0;
  padding: 0 14px;

  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 12px;
}

.schedule-ongoing-line{
  position: relative;
  height: 2px;
  width: 100%;
  background: rgba(15,23,42,.22);
  border-radius: 999px;
}

.schedule-ongoing-line-left::before{
  content:"";
  position:absolute;
  left: -2px;
  top:50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(15,23,42,.28);
  border-right: 2px solid rgba(15,23,42,.28);
  transform: translateY(-50%) rotate(225deg);
}

.schedule-ongoing-line-right::after{
  content:"";
  position:absolute;
  right: -2px;
  top:50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(15,23,42,.28);
  border-right: 2px solid rgba(15,23,42,.28);
  transform: translateY(-50%) rotate(45deg);
}

.schedule-ongoing-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;

  padding: 7px 12px;

  font-size: 13px;
  font-weight: 900;
  color: #374151;

  white-space: nowrap;
}

.schedule-ongoing-pill img{
  height: 17px;
  width: 17px;
}
/* Ongoing advice Outside (end) */



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

  .schedule-calendar::before{
    display:none;
  }

  .schedule-weeks{
    display:none;
  }

  /* Show mobile week titles */
  .schedule-week-mobile{
    display:block;
    margin-top: 2rem;
    padding: 10px 12px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-main);
  }

   .schedule-week-mobile:first-of-type {
    margin-top: 0;
   }

  .schedule-grid{
    display:flex;
    flex-direction:column;
    gap:14px;
    padding:16px;
  }

  .schedule-grid > .schedule-item{
    grid-column:auto !important;
    grid-row:auto !important;
    justify-self:auto !important;
    max-width:none !important;
    width:100%;
  }

  .s-narrow,
  .s-wide{
    max-width:none;
  }

  .schedule-week-mobile:nth-of-type(1){ order: 10; } /* Week 1 */
  .schedule-week-mobile:nth-of-type(2){ order: 40; } /* Week 2 */
  .schedule-week-mobile:nth-of-type(3){ order: 70; } /* Week 3 */
  .schedule-week-mobile:nth-of-type(4){ order: 80; } /* Week 4 */
  .schedule-week-mobile:nth-of-type(5){ order: 100; } /* Week 4 */

  /* WEEK 1 items */
  .s-w1.s-r1{ order: 20; }
  .s-w1.s-r2{ order: 30; }
  .s-w1-2{ order: 35; }  

  /* WEEK 2 items */
  .s-w2.s-r4{ order: 50; }
  .s-w2.s-r5{ order: 60; }
  .s-w2.s-r6{ order: 65; }

  /* WEEK 3 item (spans Week 2 → Week 3, treat as Week 3) */
  .s-w2-3{ order: 75; }

  /* WEEK 4 items */
  .s-w4.s-r7{ order: 90; }
  .s-w4.s-r8{ order: 100; }


  .schedule-item::after{
    display:none !important;
  }


  .s-w1.s-r1,
  .s-w2.s-r4,
  .s-w2-3,
  .s-w4.s-r7{
    position: static;
    padding-top: 10px;  
  }

  .schedule-ongoing-outside {
    display: none;
  }
  
}

/* Responsive (end) */







/* =========================
   WEEK DETAILS
========================= */

/* Week Details (start) */
.week-details{
  padding: 72px 22px;
  background: #fff;
}
/* Week Details (end) */

/* Week Details Inner (start) */
.week-details-inner{
  max-width: 1120px;
  margin: 0 auto;
}
/* Week Details Inner (end) */

/* Week Details Header (start) */
.week-details-header{
  margin: 0 0 34px;
  text-align: left;
}

.week-details-kicker {
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 8px 14px;
  border-radius: 999px;

  background: var(--blue);
  color: #fff;

  font-size: var(--extra-small);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.week-details-kicker.blue {
  background: var(--blue);
}

.week-details-kicker.green {
  background: var(--green);
}

.week-details-kicker.yellow {
  background: var(--yellow);
}

.week-details-kicker.purple {
  background: var(--purple);
}

.week-details-kicker.orange {
  background: var(--orange);
}


.week-details-title{
  margin-top: 12px;

  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.week-details-subtitle{
  margin-top: 12px;

  font-size: var(--extra-large);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}
/* Week Details Header (end) */


/* Layout (start) */
.week-details-layout{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items:start;
}

/* Reverse variation */
.week-details--reverse .week-details-layout{
  grid-template-columns: .95fr 1.05fr;
}

.week-details--reverse .week-details-left{
  order:2;
}

.week-details--reverse .week-details-right{
  order:1;
}
/* Layout (end) */

/* Left (start) */
.week-details-left{
  min-width: 0;
}
/* Left (end) */

/* Accordion (start) */
.week-accordion{
  border-top: 1px solid var(--border-default);
}

.week-accordion-item{
  border-bottom: 1px solid var(--border-default);
}

.week-accordion-trigger{
  width: 100%;
  text-align:left;

  display:grid;
  grid-template-columns: 44px 1fr 34px;
  align-items:center;
  gap: 16px;

  padding: 18px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.week-accordion-trigger:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(59,93,255,.18);
  border-radius: 12px;
}

.week-accordion-index{
  font-size: var(--extra-small);
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
}

.week-accordion-heading{
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.week-accordion-icon{
  width: 34px;
  height: 34px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #fff;

  box-shadow: 0 0 1px #00000014, 0 1px 4px #0000000f;
}

.week-accordion-chevron{
  width: 14px;
  height: 14px;
  opacity: .75;
  display:none;
}

.week-accordion-trigger[aria-expanded="false"] .week-accordion-chevron-down{ display:block; }
.week-accordion-trigger[aria-expanded="true"] .week-accordion-chevron-up{ display:block; }

/* Panel */
.week-accordion-panel{
  padding: 0 0 18px 60px;
}

.week-accordion-body{
  max-width: 56ch;

  font-size: var(--default);
  line-height: 1.75;
  color: var(--text-muted);
}

/* Deliverables (start) */
.week-accordion-deliverables{
  margin-top: 14px;
}

.week-accordion-deliverables-title{
  font-size: var(--small);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.week-accordion-deliverables-list{
  list-style: none;
  margin: 10px 0 0;
  padding: 0;

  display:flex;
  flex-direction:column;
  gap: 10px;
}

.week-accordion-deliverable{
  display:flex;
  align-items:flex-start;
  gap: 10px;

  color: var(--text-muted);
  font-size: var(--default);
  line-height: 1.6;
}

.week-accordion-check{
  width: 15px;
  flex-shrink: 0;
  line-height: 1.2;
  position: relative;
  top: 5px;
}

.week-accordion-deliverable-text{
  flex: 1;
}
/* Deliverables (end) */
/* Accordion (end) */

/* Right (start) */
.week-details-right{
  min-width: 0;
}

.week-details-media{
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow:hidden;
  aspect-ratio: 4 / 3;
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.week-details-media.bg-blue {
  /* background: var(--blue); */
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
}

.week-details-media.bg-yellow {
  background: var(--yellow);
  padding: 20px;
}

.week-details-media.bg-purple {
  background: var(--purple);
  padding: 10px;
}


.week-details-media .text-container {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: var(--small);
  line-height: 1.7;
  padding: 12px 15px;

  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.week-details-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  opacity: .95;
}
/* Right (end) */


/* Video (start) */
.video-container {
  flex-shrink: 0;

  width: 100%;
  /* max-width: 500px;   */
  aspect-ratio: 16 / 9; 
  border-radius: 20px;  
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);  

  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0; 
  border-bottom-right-radius: 0;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;  
}
/* End (start) */


/* Responsiveness (start) */
@media (max-width: 860px){
  .week-details{ padding: 56px 22px; }

  .week-details-layout{
    display:flex;
    flex-direction: column;
    gap: 22px;
  }

  .week-details-right{ 
    order:1; 
  }

  .week-details-left{ order:2; }

  .week-details--reverse .week-details-right{ order:1; }
  .week-details--reverse .week-details-left{ order:2; }

  .week-accordion-panel{
    padding-left: 0;
  }
}

@media (max-width: 480px){
  .week-accordion-heading{
    font-size: 20px;
  }

  .week-details-subtitle{
    font-size: var(--default);
  }

  .week-details-media{
    aspect-ratio: 16 / 10;
  }

  .week-details-media.box {
     aspect-ratio: 18 / 14;
  }

  .week-details-media .text-container {
    font-size: var(--extra-small);
  }
}
/* Responsiveness (end) */




/* =========================
   ABOUT
========================= */

/* About (start) */
.about{
  padding: 72px 22px;
  background:#fff;
}
/* About (end) */

/* About Inner (start) */
.about-inner{
  max-width:1120px;
  margin:0 auto;
}
/* About Inner (end) */

/* Header (start) */
.about-header{
  text-align:center;
  margin-bottom:42px;
}

.about-title{
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight:800;
  letter-spacing:-0.04em;
  color:var(--text-main);
}
/* Header (end) */

/* Grid (start) */
.about-grid{
  display:flex;
  justify-content:center;
}
/* Grid (end) */

/* Card (start) */
.about-card{
  max-width:720px;
  text-align:center;
}
/* Card (end) */

/* Portrait (start) */
.about-portrait{
  width:160px;
  height:160px;
  margin:0 auto 18px;

  border-radius:50%;
  /* background:#1e293b; */
  background:  var(--blue-hover);

  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.about-portrait-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
/* Portrait (end) */

/* Identity (start) */
.about-identity{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.about-name{
  font-size:24px;
  font-weight:800;
  letter-spacing:-0.02em;
  color:var(--text-main);
}

.about-role{
  font-size:var(--default);
  color:var(--text-muted);
}

.about-linkedin{
  margin-top:6px;
  display:inline-flex;
  align-items:center;
  gap:5px;

  text-decoration:none;
  font-weight:600;
  color:var(--blue);
}

.about-linkedin img{
  width:30px;
  height:30px;
}
/* Identity (end) */

/* Bio (start) */
.about-bio{
  margin:18px auto 0;
  max-width:58ch;

  font-size:var(--default);
  line-height:1.75;
  color:var(--text-muted);
}
/* Bio (end) */

/* Responsiveness (start) */
@media (max-width:560px){
  .about-portrait{ width:130px; height:130px; }
  .about-name{ font-size:20px; }
}
/* Responsiveness (end) */









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

/* Packages (start) */
.packages{
  padding: 64px 22px;
  background:#fff;
}
/* Packages (end) */

/* Packages Inner (start) */
.packages-inner{
  max-width: 1120px;
  margin: 0 auto;
}
/* Packages Inner (end) */

/* Header (start) */
.packages-header{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.packages-title{
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.packages-subtitle{
  margin-top: 12px;
  font-size: var(--extra-large);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}
/* Header (end) */

/* Grid (start) */
.packages-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
/* Grid (end) */

/* Card (start) */
.package-card{
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background:#fff;
  box-shadow: 0 0 0 1px rgba(17,24,39,.04), 0 12px 28px rgba(17,24,39,.06);
  overflow:hidden;

  display:flex;
  flex-direction:column;
  height: 100%;
}

.package-card-inner{
  padding: 44px 24px 24px;
  display:flex;
  flex-direction:column;
  height: 100%;
}

.package-top{
  text-align:center;
  min-height: 8.2em;
  margin-bottom: 32px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap: 1rem;
}

.package-name{
  font-size: var(--extra-extra-large);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-main);
  line-height: 1.15;
}

.package-description{
  margin-top: 10px;
  max-width: 44ch;

  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
/* Card (end) */

/* Badge (start) */
.package-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 4px 10px;
  border-radius: 999px;

  background: rgba(0,113,235,.08);
  border: 1px solid rgba(0,113,235,.18);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);

  margin: 0 auto 10px;
}
/* Badge (end) */

/* Price (start) */
.package-price{
  min-height: 64px;

  display:flex;
  align-items: baseline;
  justify-content:center;
  align-items: center;
  gap: 6px;

  color: var(--text-main);
  margin-top: 2px;
}

.package-price-currency{
  font-size: 18px;
  font-weight: 800;
  transform: translateY(-4px);
}

.package-price-value{
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.package-price-period{
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
/* Price (end) */

/* CTA (start) */
.package-cta{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  width: 100%;
}

.package-cta .btn{
  width: 100%;
  max-width: none;

  padding: 14px 18px;
  font-size: var(--large);
  border-radius: 12px;
}
/* CTA (end) */

/* Deliverables (start) */
.package-deliverables{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.package-category + .package-category{
  margin-top: 18px;
}

.package-category-title{
  font-size: var(--medium);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #374151;
  margin-bottom: 16px;
}

.package-list{
  list-style:none;
  padding: 0;
  margin: 0 0 22px;

  display:flex;
  flex-direction:column;
  gap: 10px;
}

.package-item{
  display:flex;
  align-items:flex-start;
  gap: 10px;

  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.package-check{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transform: translateY(2px);
}

.package-check img{
  width: 100%;
  height: 100%;
  display:block;
}

.package-item-text{
  flex: 1;
}
/* Deliverables (end) */

/* Featured (start) */
.package-card-featured{
  border-color: rgba(0,113,235,.28);
  box-shadow: 0 0 0 1px rgba(0,113,235,.12), 0 18px 40px rgba(17,24,39,.10);
}

.package-card-featured .package-card-inner{
  padding-top: 38px;
}

.package-card-featured .package-name{
  font-size: 25px;
}

.package-card-featured .package-price-value{
  font-size: 32px;
}
/* Featured (end) */

/* Custom Note (start) */
.package-custom-note{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);

  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  text-align:center;
}
/* Custom Note (end) */

/* Responsiveness (start) */
@media (max-width: 980px){
  .packages{
    padding: 56px 22px;
  }

  .packages-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package-card-inner{
    padding: 34px 20px 20px;
  }

  .package-top{
    min-height: 0;
    margin-bottom: 22px;
  }

  .package-price-value{
    font-size: 44px;
  }
}

@media (max-width: 480px){
  .packages-title{
    font-size: 34px;
  }

  .packages-subtitle{
    font-size: var(--default);
  }

  .package-name{
    font-size: 26px;
  }

  .package-price-value{
    font-size: 42px;
  }
}
/* Responsiveness (end) */




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

/* FAQ (start) */
.faq{
  padding: 72px 22px;
  background: #fff;
}
/* FAQ (end) */

/* FAQ Inner (start) */
.faq-inner{
  max-width: 1120px;
  margin: 0 auto;
}
/* FAQ Inner (end) */

/* Header (start) */
.faq-header{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.faq-title{
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.faq-subtitle{
  margin-top: 12px;
  font-size: var(--extra-large);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}
/* Header (end) */

/* Accordion (start) */
.faq-accordion{
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--border-subtle);
}

.faq .week-accordion-item{
  border-bottom: 1px solid var(--border-subtle);
}

.faq .week-accordion-trigger{
  grid-template-columns: 1fr 34px;
  gap: 16px;
  padding: 18px 0;
}

.faq .week-accordion-index{
  display:none;
}

.faq .week-accordion-heading{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.faq .week-accordion-panel{
  padding: 0 0 18px 0;
}

.faq .week-accordion-body{
  max-width: 78ch;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}
/* Accordion (end) */

/* Responsiveness (start) */
@media (max-width: 860px){
  .faq{
    padding: 56px 22px;
  }

  .faq-subtitle{
    font-size: var(--default);
  }

  .faq .week-accordion-heading{
    font-size: 16px;
  }
}
/* Responsiveness (end) */





/* =========================
   BOTTOM CTA
========================= */

/* Bottom CTA (start) */
.bottom-cta{
  padding: 72px 22px 90px;
  background:#fff;
}
/* Bottom CTA (end) */

/* Inner (start) */
.bottom-cta-inner{
  max-width: 1120px;
  margin: 0 auto;

  border-radius: 20px;
  background: #f6f7fb;
  padding: 42px 48px;

  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items:center;
  gap: 40px;
}
/* Inner (end) */

/* Content (start) */
.bottom-cta-title{
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.bottom-cta-text{
  margin-top: 12px;
  max-width: 48ch;

  font-size: var(--large);
  line-height: 1.7;
  color: var(--text-muted);
}

.bottom-cta-actions{
  margin-top: 22px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap: 1rem;
}

.bottom-cta-note{
  font-size: 13px;
  color: var(--text-muted);
}
/* Content (end) */

/* Visual (start) */
.bottom-cta-visual{
  display:flex;
  justify-content:center;
  align-items:center;
}

.bottom-cta-visual img{
  width: 100%;
  max-width: 360px;
  height: auto;
  display:block;
}
/* Visual (end) */

/* Responsiveness (start) */
@media (max-width: 900px){
  .bottom-cta-inner{
    grid-template-columns: 1fr;
    text-align:center;
    padding: 36px 26px;
  }

  .bottom-cta-actions{
    align-items:center;
  }

  .bottom-cta-text{
    margin-left:auto;
    margin-right:auto;
  }

  .bottom-cta-visual img{
    max-width: 300px;
    margin-top: 10px;
  }
}

@media (max-width: 480px){
  .bottom-cta{
    padding: 56px 18px 70px;
  }

  .bottom-cta-title{
    font-size: 28px;
  }

  .bottom-cta-text{
    font-size: var(--default);
  }
}
/* Responsiveness (end) */




/* =========================
   FOOTER
========================= */

/* Footer (start) */
.footer{
  /* background:#f6f7fb; */
  background: var(--dark-blue);
  padding:64px 22px 40px;
}

.footer-inner{
  max-width:1120px;
  margin:0 auto;
}
/* Footer (end) */


/* Top (start) */
.footer-top{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:36px;
  padding-bottom:44px;
  border-bottom:1px solid var(--border-subtle);
}

.footer-title{
  font-weight:700;
  margin-bottom:14px;
  color: #fff;
}

.footer-link{
  display:block;
  margin:7px 0;
  font-size:14px;
  color: #fff;
  text-decoration:none;
}

.footer-link:hover{
  /* color:var(--text-main); */
  color: var(--white-hover);
}

.footer-social-link{
  display:flex;
  align-items:center;
  gap:10px;
  margin:8px 0;
  font-size: 14px;
  text-decoration:none;
  /* color:var(--text-muted); */
  color: #fff;
}

.footer-social-link img{
  width:18px;
  height:18px;
}
/* Top (end) */


/* Bottom (start) */
.footer-bottom{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding-top:28px;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.footer-service{
  font-weight:700;
  /* color:var(--text-main); */
  color: #fff;
}

.footer-company{
  font-size:13px;
  /* color:var(--text-muted); */
  color: #fff;
}

.footer-cert{
  text-align:right;
  font-size: var(--extra-small);
  display:flex;
  flex-direction:column;
  gap:4px;
  
  /* color:var(--text-muted); */
  color: #fff;
}
/* Bottom (end) */


/* Language selector (start) */
.footer-language{
  position:relative;
  display:flex;
  justify-content:center;
}

.footer-lang-btn{
  display:flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--border-subtle);
  padding:6px 12px;
  border-radius:999px;
  background:white;
  cursor:pointer;
  font-size:14px;
}

.footer-lang-btn img{
  width:18px;
  height:18px;
}

.footer-lang-menu{
  position:absolute;
  bottom:120%;
  left:50%;
  transform:translateX(-50%);
  background:white;
  border:1px solid var(--border-subtle);
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  padding:6px;
  display:none;
  min-width:160px;
}

.footer-lang-option{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  border:none;
  background:none;
  padding:10px 16px;
  border-radius:8px;
  cursor:pointer;
}

.footer-lang-option img{
  width:18px;
}

.footer-lang-option:hover{
  background:#f3f4f6;
}

.footer-language.open .footer-lang-menu{
  display:block;
}
/* Language selector (end) */


/* Responsive (start) */
@media (max-width:900px){
  .footer-top{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-bottom{
    grid-template-columns:1fr;
    gap:18px;
    text-align:center;
  }

  .footer-cert{
    text-align:center;
  }
}
/* Responsive (end) */








/* =========================
STRATEGY CALL
========================= */

/* Strategy Call Layout (start) */
.strategy-call {
  width: 100%;
  padding: 40px 40px 80px;
}
/* Strategy Call Layout (end) */


/* Strategy Call Split (start) */
.strategy-call-split {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.strategy-call-info,
.strategy-call-calendar {
  flex: 1;
  min-width: 0;
}
/* Strategy Call Split (end) */


/* Info Card (start) */
.info-card {
  padding: 28px 32px;
  border-radius: 18px;
}

.info-card h1 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.info-card .free-strategy-call-process {
  margin-top: 26px;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.info-card .free-strategy-call-process p {
  margin: 0;
  font-size: var(--default);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
  white-space: nowrap;
}

.info-card .free-strategy-call-process ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
  background: white;
}

.info-card .free-strategy-call-process ul li {
  position: relative;
  flex: 1 1 0;
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 68px;
  padding: 14px 28px 14px 22px;

  background: #fff;
  border-top: 1px solid #bcc5d1;
  border-bottom: 1px solid #bcc5d1;

  font-size: 15px;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: normal;

  box-shadow: 0 6px 18px rgba(17,24,39,.05);
}

/* Arrow head (start) */
.info-card .free-strategy-call-process ul li::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  height: 0;

  border-top: 34px solid transparent;
  border-bottom: 34px solid transparent;
  border-left: 18px solid #fff;

  z-index: 2;
}
/* Arrow head (end) */

/* Arrow border (start) */
.info-card .free-strategy-call-process ul li::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  height: 0;

  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 20px solid #bcc5d1;

  z-index: 1;
}
/* Arrow border (end) */

/* Edge states (start) */
.info-card .free-strategy-call-process ul li:first-child {
  border-left: 1px solid #bcc5d1;
  border-radius: 12px 0 0 12px;
}

.info-card .free-strategy-call-process ul li:last-child {
  border-right: 1px solid #bcc5d1;
  border-radius: 0 12px 12px 0;
}

.info-card .free-strategy-call-process ul li:last-child::after,
.info-card .free-strategy-call-process ul li:last-child::before {
  display: none;
}
/* Edge states (end) */

/* Strong text (start) */
.info-card .free-strategy-call-process ul li strong {
  display: inline;
  margin-left: 0.18em;

  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);

  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 7px;
}

.info-card .free-strategy-call-process ul li:nth-child(1) strong {
  text-decoration-color: var(--purple);
}

.info-card .free-strategy-call-process ul li:nth-child(2) strong {
  text-decoration-color: var(--blue);
}

.info-card .free-strategy-call-process ul li:nth-child(3) strong {
  text-decoration-color: var(--green);
}
/* Strong text (end) */
/* Info Card (end) */


/* Calendar Wrapper (start) */
.calendar-wrapper {
  width: 100%;
  height: 650px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.calendar-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* Calendar Wrapper (end) */


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

  .info-card h1 {
    text-align: center;
  }

  .strategy-call {
    padding: 32px 22px 64px;
  }

  .strategy-call-split {
    gap: 28px;
  }

  .info-card {
    padding: 24px 22px;
  }

  .info-card .free-strategy-call-process {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card .free-strategy-call-process p {
    text-align: center;
    white-space: normal;
  }

  .info-card .free-strategy-call-process ul {
    flex-direction: column;
    gap: 12px;
    background: transparent;
  }

  .info-card .free-strategy-call-process ul li {
    min-height: 50px;
    padding: 16px 18px;
    border: 1px solid #bcc5d1;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(17,24,39,.04);
  }

  .info-card .free-strategy-call-process ul li::before,
  .info-card .free-strategy-call-process ul li::after {
    display: none;
  }

  .calendar-wrapper {
    height: 720px;
  }

  .info-card .free-strategy-call-process ul li:first-child,
  .info-card .free-strategy-call-process ul li:last-child
   {
    border-radius: 12px;
  }
}

@media (max-width: 560px) {
  
  .strategy-call {
    padding: 24px 16px 56px;
  }

  .strategy-call-split {
    gap: 22px;
  }

  .info-card {
    padding: 20px 0 0;
  }

  .info-card h1 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .info-card .free-strategy-call-process {
    margin-top: 18px;
    gap: 10px;
  }

  .info-card .free-strategy-call-process p {
    font-size: 14px;
  }

  .info-card .free-strategy-call-process ul {
    gap: 10px;
  }

  .info-card .free-strategy-call-process ul li strong {
    font-size: 15px;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
  }

  .calendar-wrapper {
    height: 680px;
    border-radius: 0;
    box-shadow: none;
  }
}
/* Mobile Responsive (end) */