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

:root {
  --clr-bg: #f5f2ee;
  --clr-bg-warm: #ede9e3;
  --clr-bg-deep: #e4dfd7;
  --clr-surface: #faf8f5;
  --clr-surface-2: #f0ece6;
  --clr-pri: #2c4a6e;
  --clr-pri-dark: #1e3450;
  --clr-pri-light: #3d6494;
  --clr-acc: #d4622a;
  --clr-acc-light: #e8845a;
  --clr-acc-pale: #f5e6de;
  --clr-sec: #5a7a5e;
  --clr-sec-light: #7a9e7e;
  --clr-txt: #1e2a3a;
  --clr-txt-2: #3d4f62;
  --clr-txt-3: #6b7d8f;
  --clr-txt-inv: #f5f2ee;
  --clr-border: #d8d2c8;
  --clr-border-light: #e8e3dc;

  --shadow-xs: 0 1px 3px rgba(44,74,110,0.06), 0 1px 2px rgba(44,74,110,0.04);
  --shadow-sm: 0 2px 6px rgba(44,74,110,0.08), 0 1px 3px rgba(44,74,110,0.05);
  --shadow-md: 0 4px 16px rgba(44,74,110,0.10), 0 2px 6px rgba(44,74,110,0.06);
  --shadow-lg: 0 8px 32px rgba(44,74,110,0.12), 0 4px 12px rgba(44,74,110,0.07);
  --shadow-xl: 0 16px 48px rgba(44,74,110,0.14), 0 6px 18px rgba(44,74,110,0.08);
  --shadow-paper: 0 -3px 0 rgba(44,74,110,0.04), 0 4px 20px rgba(44,74,110,0.10);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --hdr-h: 88px;
  --hdr-h-compact: 64px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --clr-bg: #1a1f2a;
    --clr-bg-warm: #1f2535;
    --clr-bg-deep: #161b26;
    --clr-surface: #242b3a;
    --clr-surface-2: #2c3446;
    --clr-pri: #5b8fc7;
    --clr-pri-dark: #4a7ab0;
    --clr-pri-light: #7aaed8;
    --clr-acc: #e07a4a;
    --clr-acc-light: #e8966e;
    --clr-acc-pale: #3a2518;
    --clr-sec: #7aaa7e;
    --clr-sec-light: #9abf9e;
    --clr-txt: #e8e4de;
    --clr-txt-2: #c4bdb4;
    --clr-txt-3: #8a9aaa;
    --clr-txt-inv: #1a1f2a;
    --clr-border: #3a4258;
    --clr-border-light: #2e3650;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.15);
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.18);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.28), 0 2px 6px rgba(0,0,0,0.2);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.32), 0 4px 12px rgba(0,0,0,0.22);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.36), 0 6px 18px rgba(0,0,0,0.24);
    --shadow-paper: 0 -3px 0 rgba(0,0,0,0.12), 0 4px 20px rgba(0,0,0,0.28);
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-txt);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--clr-pri);
  text-decoration: none;
  transition: color var(--transition);

  &:hover {
    color: var(--clr-acc);
  }
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.centered {
  text-align: center;
}

.sec {
  position: relative;
  padding: var(--sp-20) 0;
  background: var(--clr-surface);

  &:nth-child(even) {
    background: var(--clr-bg);
  }
}

.sec-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-acc);
  margin-bottom: var(--sp-3);
}

.sec-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--clr-txt);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.sec-lead {
  font-size: 1.1rem;
  color: var(--clr-txt-2);
  max-width: 640px;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}

.sec-hd {
  margin-bottom: var(--sp-12);

  &.centered {
    & .sec-title {
      margin-left: auto;
      margin-right: auto;
    }
  }
}

.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--clr-acc);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--clr-acc);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  white-space: nowrap;

  &:hover {
    background: var(--clr-acc-light);
    border-color: var(--clr-acc-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  &:active {
    transform: translateY(0);
  }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: transparent;
  color: var(--clr-pri);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--clr-pri);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;

  &:hover {
    background: var(--clr-pri);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  &:active {
    transform: translateY(0);
  }
}

.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 242, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border-light);
  transition: padding var(--transition-slow), box-shadow var(--transition-slow), background var(--transition-slow);

  @media (prefers-color-scheme: dark) {
    background: rgba(26, 31, 42, 0.92);
  }

  & .hdr-inner {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--sp-6) var(--sp-6);
    transition: padding var(--transition-slow);
  }

  &.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(245, 242, 238, 0.97);

    @media (prefers-color-scheme: dark) {
      background: rgba(26, 31, 42, 0.97);
    }

    & .hdr-inner {
      padding-top: var(--sp-3);
      padding-bottom: var(--sp-3);
    }

    & .hdr-logo-img {
      height: 32px;
    }
  }
}

.hdr-logo {
  flex-shrink: 0;
  text-decoration: none;

  & .hdr-logo-img {
    height: 40px;
    width: auto;
    transition: height var(--transition-slow);
  }
}

.hdr-nav {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;

  @media (min-width: 1024px) {
    display: flex;
  }

  & .hdr-nav-lnk {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-txt-2);
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    text-decoration: none;

    &:hover {
      color: var(--clr-pri);
      background: var(--clr-bg-warm);
    }

    &.active {
      color: var(--clr-pri);
      font-weight: 700;
    }
  }
}

.hdr-cta {
  display: none;
  margin-left: var(--sp-4);

  @media (min-width: 1024px) {
    display: inline-flex;
  }
}

.hdr-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);

  @media (min-width: 1024px) {
    display: none;
  }

  &:hover {
    background: var(--clr-bg-warm);
  }

  & span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-txt);
    border-radius: var(--radius-full);
    transition: transform var(--transition), opacity var(--transition);
  }
}

.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);

  &.open {
    transform: translateX(0);
  }

  & .mob-menu-left {
    width: 55%;
    background: var(--clr-pri-dark);
    padding: var(--sp-8) var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    overflow-y: auto;
  }

  & .mob-menu-right {
    flex: 1;
    position: relative;
    overflow: hidden;

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    & .mob-menu-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(44,74,110,0.7), rgba(212,98,42,0.4));
    }

    & .mob-brand-text {
      position: absolute;
      bottom: var(--sp-8);
      left: var(--sp-6);
      right: var(--sp-6);
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
  }
}

.mob-menu-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  align-self: flex-start;

  &:hover {
    background: rgba(255,255,255,0.2);
  }
}

.mob-menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;

  & .mob-lnk {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    padding: var(--sp-3) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color var(--transition), padding-left var(--transition);
    text-decoration: none;

    &:hover {
      color: #fff;
      padding-left: var(--sp-3);
    }
  }
}

.mob-cta {
  align-self: flex-start;
}

.hero-sec {
  padding-top: calc(var(--hdr-h) + var(--sp-12));
  padding-bottom: var(--sp-20);
  background: linear-gradient(145deg, var(--clr-bg) 0%, var(--clr-bg-warm) 50%, var(--clr-bg-deep) 100%);

  & .hero-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-6);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;

    @media (min-width: 900px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  & .hero-content {
    & .hero-tag {
      display: inline-block;
      background: var(--clr-acc-pale);
      color: var(--clr-acc);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: var(--sp-1) var(--sp-3);
      border-radius: var(--radius-full);
      margin-bottom: var(--sp-4);
    }

    & .hero-h1 {
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 800;
      line-height: 1.1;
      color: var(--clr-txt);
      margin-bottom: var(--sp-4);
    }

    & .hero-sub {
      font-size: 1.1rem;
      color: var(--clr-txt-2);
      line-height: 1.7;
      margin-bottom: var(--sp-8);
      max-width: 520px;
    }

    & .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-3);
      margin-bottom: var(--sp-8);
    }

    & .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-2);

      & .pill {
        display: inline-flex;
        align-items: center;
        gap: var(--sp-2);
        background: var(--clr-surface);
        border: 1px solid var(--clr-border);
        color: var(--clr-txt-2);
        font-size: 0.8rem;
        font-weight: 600;
        padding: var(--sp-1) var(--sp-3);
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-xs);

        & i {
          color: var(--clr-pri);
          font-size: 0.75rem;
        }
      }
    }
  }

  & .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--sp-3);
    position: relative;

    & .hero-img-a {
      grid-column: 1 / 3;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 16/9;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);

        &:hover {
          transform: scale(1.03);
        }
      }
    }

    & .hero-img-b {
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      aspect-ratio: 4/3;
      transform: translateY(var(--sp-4));

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);

        &:hover {
          transform: scale(1.04);
        }
      }
    }

    & .hero-img-c {
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      aspect-ratio: 4/3;
      transform: translateY(calc(var(--sp-4) * -1));

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);

        &:hover {
          transform: scale(1.04);
        }
      }
    }
  }
}

.intro-sec {
  background: var(--clr-surface);
  box-shadow: var(--shadow-paper);

  & .intro-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: start;

    @media (min-width: 900px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  & .intro-text {
    & h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--clr-txt);
      margin-bottom: var(--sp-4);
      line-height: 1.2;
    }

    & p {
      color: var(--clr-txt-2);
      margin-bottom: var(--sp-4);
      line-height: 1.7;
    }

    & .btn-pri {
      margin-top: var(--sp-4);
    }
  }

  & .intro-card-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

  & .intro-card {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    padding: var(--sp-6);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    transform-style: preserve-3d;

    &:hover {
      box-shadow: var(--shadow-md);
    }

    & .intro-card-ico {
      width: 40px;
      height: 40px;
      background: var(--clr-acc-pale);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--sp-3);

      & i {
        color: var(--clr-acc);
        font-size: 1rem;
      }
    }

    & h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--clr-txt);
      margin-bottom: var(--sp-2);
    }

    & p {
      font-size: 0.85rem;
      color: var(--clr-txt-3);
      line-height: 1.6;
    }
  }
}

.modules-sec {
  background: linear-gradient(160deg, var(--clr-pri-dark) 0%, var(--clr-pri) 100%);
  box-shadow: var(--shadow-paper);

  & .sec-eyebrow {
    color: var(--clr-acc-light);
  }

  & .sec-title {
    color: #fff;
  }

  & .sec-lead {
    color: rgba(255,255,255,0.75);
  }

  & .modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);

    @media (min-width: 640px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 1024px) {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  & .mod-crd {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: var(--sp-8) var(--sp-6);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    transform-style: preserve-3d;

    &:hover {
      background: rgba(255,255,255,0.12);
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

    & .mod-num {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      color: var(--clr-acc-light);
      margin-bottom: var(--sp-3);
    }

    & .mod-ico {
      width: 48px;
      height: 48px;
      background: rgba(212,98,42,0.2);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--sp-4);

      & i {
        color: var(--clr-acc-light);
        font-size: 1.2rem;
      }
    }

    & h3 {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: var(--sp-3);
    }

    & p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.65;
      margin-bottom: var(--sp-4);
    }

    & .mod-lnk {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--clr-acc-light);
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      transition: gap var(--transition), color var(--transition);

      &:hover {
        gap: var(--sp-3);
        color: #fff;
      }
    }
  }
}

.audience-sec {
  background: var(--clr-bg);
  box-shadow: var(--shadow-paper);

  & .aud-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;

    @media (min-width: 900px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  & .aud-img-wrap {
    position: relative;

    & .aud-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
    }

    & .aud-img-badge {
      position: absolute;
      bottom: var(--sp-6);
      right: calc(var(--sp-6) * -1);
      background: var(--clr-surface);
      border: 1px solid var(--clr-border-light);
      border-radius: var(--radius-md);
      padding: var(--sp-3) var(--sp-4);
      display: flex;
      align-items: center;
      gap: var(--sp-2);
      box-shadow: var(--shadow-lg);
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--clr-txt);

      @media (max-width: 900px) {
        right: var(--sp-4);
        bottom: var(--sp-4);
      }

      & i {
        color: var(--clr-sec);
        font-size: 1.1rem;
      }
    }
  }

  & .aud-text {
    & h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--clr-txt);
      margin-bottom: var(--sp-4);
      line-height: 1.2;
    }

    & p {
      color: var(--clr-txt-2);
      margin-bottom: var(--sp-4);
      line-height: 1.7;
    }

    & .aud-list {
      margin: var(--sp-6) 0;
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);

      & li {
        display: flex;
        align-items: flex-start;
        gap: var(--sp-3);
        font-size: 0.9rem;
        color: var(--clr-txt-2);
        line-height: 1.55;

        & i {
          color: var(--clr-sec);
          margin-top: 2px;
          flex-shrink: 0;
        }
      }
    }
  }
}

.approach-preview-sec {
  background: var(--clr-surface);
  box-shadow: var(--shadow-paper);

  & .approach-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);

    @media (min-width: 640px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 900px) {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  & .ap-crd {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);

    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    & img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      transition: transform var(--transition-slow);
    }

    &:hover img {
      transform: scale(1.04);
    }

    & .ap-crd-body {
      padding: var(--sp-6);

      & h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--clr-txt);
        margin-bottom: var(--sp-2);
      }

      & p {
        font-size: 0.875rem;
        color: var(--clr-txt-3);
        line-height: 1.6;
      }
    }
  }
}

.freelancer-strip {
  background: var(--clr-sec);
  padding: var(--sp-12) 0;
  box-shadow: var(--shadow-paper);

  & .fl-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-6);

    @media (min-width: 900px) {
      flex-wrap: nowrap;
    }
  }

  & .fl-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    & i {
      color: #fff;
      font-size: 1.6rem;
    }
  }

  & .fl-text {
    flex: 1;

    & h2 {
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: var(--sp-2);
    }

    & p {
      color: rgba(255,255,255,0.8);
      font-size: 0.95rem;
    }
  }

  & .btn-pri {
    background: #fff;
    color: var(--clr-sec);
    border-color: #fff;
    flex-shrink: 0;

    &:hover {
      background: var(--clr-acc-pale);
      border-color: var(--clr-acc-pale);
      color: var(--clr-acc);
    }
  }
}

.newsletter-sec {
  background: var(--clr-pri-dark);
  padding: var(--sp-16) 0;
  box-shadow: var(--shadow-paper);

  & .nl-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-8);

    @media (min-width: 900px) {
      flex-wrap: nowrap;
    }
  }

  & .nl-text {
    flex: 1;

    & h2 {
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: var(--sp-2);
    }

    & p {
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
    }
  }

  & .nl-form {
    flex-shrink: 0;
    width: 100%;

    @media (min-width: 900px) {
      width: 400px;
    }
  }

  & .nl-input-wrap {
    display: flex;
    gap: var(--sp-2);
  }

  & .nl-input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem var(--sp-4);
    border-radius: var(--radius-full);
    outline: none;
    transition: border-color var(--transition), background var(--transition);

    &::placeholder {
      color: rgba(255,255,255,0.5);
    }

    &:focus {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.15);
    }
  }

  & .nl-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: var(--sp-2);

    & a {
      color: rgba(255,255,255,0.7);

      &:hover {
        color: #fff;
      }
    }
  }
}

.contact-preview-sec {
  background: var(--clr-bg-warm);
  box-shadow: var(--shadow-paper);

  & .contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);

    @media (min-width: 640px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 900px) {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  & .ct-crd {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    padding: var(--sp-8) var(--sp-6);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    transform-style: preserve-3d;

    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    & .ct-ico {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--clr-pri-dark), var(--clr-pri));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--sp-4);
      box-shadow: var(--shadow-sm);

      & i {
        color: #fff;
        font-size: 1.2rem;
      }
    }

    & h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--clr-txt);
      margin-bottom: var(--sp-3);
    }

    & p {
      font-size: 0.875rem;
      color: var(--clr-txt-2);
      line-height: 1.65;

      & a {
        color: var(--clr-pri);
        font-weight: 600;
      }
    }

    & .ct-note {
      font-size: 0.8rem;
      color: var(--clr-txt-3);
      margin-top: var(--sp-2);
    }
  }
}

.page-hero-sec {
  padding-top: calc(var(--hdr-h) + var(--sp-12));
  padding-bottom: var(--sp-16);
  background: linear-gradient(145deg, var(--clr-bg) 0%, var(--clr-bg-warm) 100%);
  box-shadow: var(--shadow-paper);

  & .page-hero-inner {
    max-width: 720px;
  }

  & .page-hero-h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--clr-txt);
    line-height: 1.15;
    margin-bottom: var(--sp-4);
  }

  & .page-hero-sub {
    font-size: 1.1rem;
    color: var(--clr-txt-2);
    line-height: 1.7;
  }
}

.page-hero-alt {
  background: linear-gradient(145deg, var(--clr-pri-dark) 0%, var(--clr-pri) 100%);

  & .sec-eyebrow {
    color: var(--clr-acc-light);
  }

  & .page-hero-h1 {
    color: #fff;
  }

  & .page-hero-sub {
    color: rgba(255,255,255,0.8);
  }
}

.approach-detail-sec {
  background: var(--clr-surface);

  & .apd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);

    @media (min-width: 900px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  & .apd-item {
    & .apd-ico {
      width: 52px;
      height: 52px;
      background: var(--clr-acc-pale);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--sp-4);

      & i {
        color: var(--clr-acc);
        font-size: 1.3rem;
      }
    }

    & h2 {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 800;
      color: var(--clr-txt);
      margin-bottom: var(--sp-3);
      line-height: 1.3;
    }

    & p {
      color: var(--clr-txt-2);
      line-height: 1.7;
      margin-bottom: var(--sp-3);
    }
  }
}

.ph-context-sec {
  background: var(--clr-bg);
  box-shadow: var(--shadow-paper);

  & .phc-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;

    @media (min-width: 900px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  & .phc-text {
    & h2 {
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 800;
      color: var(--clr-txt);
      margin-bottom: var(--sp-4);
      line-height: 1.25;
    }

    & p {
      color: var(--clr-txt-2);
      line-height: 1.7;
      margin-bottom: var(--sp-4);
    }
  }

  & .phc-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
  }
}

.format-sec {
  background: var(--clr-surface);
  box-shadow: var(--shadow-paper);

  & .fmt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);

    @media (min-width: 640px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 900px) {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  & .fmt-crd {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    padding: var(--sp-8) var(--sp-6);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    transform-style: preserve-3d;

    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    & .fmt-ico {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--clr-pri-dark), var(--clr-pri));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--sp-4);
      box-shadow: var(--shadow-sm);

      & i {
        color: #fff;
        font-size: 1.2rem;
      }
    }

    & h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--clr-txt);
      margin-bottom: var(--sp-3);
    }

    & p {
      font-size: 0.875rem;
      color: var(--clr-txt-3);
      line-height: 1.65;
    }
  }
}

.curriculum-sec {
  background: var(--clr-surface);

  & .curr-module {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--sp-6);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);

    &:hover {
      box-shadow: var(--shadow-lg);
    }

    & .curr-mod-hd {
      background: linear-gradient(135deg, var(--clr-pri-dark), var(--clr-pri));
      padding: var(--sp-8) var(--sp-8);
      display: flex;
      align-items: center;
      gap: var(--sp-4);

      & .curr-num {
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.15em;
        color: rgba(255,255,255,0.6);
        flex-shrink: 0;
      }

      & .curr-ico {
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.15);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;

        & i {
          color: #fff;
          font-size: 1.1rem;
        }
      }

      & h2 {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
      }
    }

    & .curr-mod-body {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--sp-8);
      padding: var(--sp-8);

      @media (min-width: 900px) {
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }
    }

    & .curr-mod-body-rev {
      @media (min-width: 900px) {
        & .curr-mod-img {
          order: -1;
        }
      }
    }

    & .curr-mod-text {
      & p {
        color: var(--clr-txt-2);
        line-height: 1.7;
        margin-bottom: var(--sp-4);
      }

      & h4 {
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--clr-txt-3);
        margin-bottom: var(--sp-3);
      }

      & ul {
        display: flex;
        flex-direction: column;
        gap: var(--sp-2);

        & li {
          font-size: 0.875rem;
          color: var(--clr-txt-2);
          padding-left: var(--sp-4);
          position: relative;
          line-height: 1.55;

          &::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: var(--clr-acc);
            border-radius: 50%;
          }
        }
      }
    }

    & .curr-mod-img {
      & img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
      }
    }
  }
}

.cta-strip-sec {
  background: var(--clr-acc-pale);
  padding: var(--sp-16) 0;

  & .cta-strip-inner {
    text-align: center;

    & h2 {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      color: var(--clr-txt);
      margin-bottom: var(--sp-3);
    }

    & p {
      color: var(--clr-txt-2);
      margin-bottom: var(--sp-6);
    }
  }
}

.fl-intro-sec {
  background: var(--clr-surface);

  & .fl-intro-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;

    @media (min-width: 900px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  & .fl-intro-text {
    & h2 {
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 800;
      color: var(--clr-txt);
      margin-bottom: var(--sp-4);
      line-height: 1.25;
    }

    & p {
      color: var(--clr-txt-2);
      line-height: 1.7;
      margin-bottom: var(--sp-4);
    }
  }

  & .fl-intro-img {
    & img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
    }
  }
}

.fl-topics-sec {
  background: var(--clr-bg);
  box-shadow: var(--shadow-paper);

  & .fl-topics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);

    @media (min-width: 640px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 1024px) {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  & .fl-topic-crd {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    padding: var(--sp-8) var(--sp-6);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    transform-style: preserve-3d;

    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    & .fl-topic-ico {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--clr-sec), var(--clr-sec-light));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--sp-4);
      box-shadow: var(--shadow-sm);

      & i {
        color: #fff;
        font-size: 1.2rem;
      }
    }

    & h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--clr-txt);
      margin-bottom: var(--sp-3);
    }

    & p {
      font-size: 0.875rem;
      color: var(--clr-txt-3);
      line-height: 1.65;
    }
  }
}

.fl-why-sec {
  background: var(--clr-surface);
  box-shadow: var(--shadow-paper);

  & .fl-why-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;

    @media (min-width: 900px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  & .fl-why-img {
    & img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
    }
  }

  & .fl-why-text {
    & h2 {
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 800;
      color: var(--clr-txt);
      margin-bottom: var(--sp-4);
      line-height: 1.25;
    }

    & p {
      color: var(--clr-txt-2);
      line-height: 1.7;
      margin-bottom: var(--sp-4);
    }
  }
}

.contact-main-sec {
  background: var(--clr-surface);

  & .contact-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);

    @media (min-width: 900px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  & .contact-form-col {
    & h2 {
      font-size: clamp(1.4rem, 2.5vw, 1.8rem);
      font-weight: 800;
      color: var(--clr-txt);
      margin-bottom: var(--sp-3);
    }

    & > p {
      color: var(--clr-txt-2);
      margin-bottom: var(--sp-6);
      line-height: 1.65;
    }
  }

  & .contact-info-col {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
  }

  & .contact-method-crd {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    display: flex;
    gap: var(--sp-4);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);

    &:hover {
      box-shadow: var(--shadow-md);
      transform: translateX(4px);
    }

    & .cm-ico {
      width: 44px;
      height: 44px;
      background: var(--clr-acc-pale);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;

      & i {
        color: var(--clr-acc);
        font-size: 1rem;
      }
    }

    & .cm-body {
      flex: 1;

      & h3 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--clr-txt);
        margin-bottom: var(--sp-1);
      }

      & a {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--clr-pri);
        margin-bottom: var(--sp-2);
      }

      & p {
        font-size: 0.8rem;
        color: var(--clr-txt-3);
        line-height: 1.55;
        margin-bottom: var(--sp-2);
      }

      & .cm-tag {
        display: inline-block;
        background: var(--clr-surface-2);
        color: var(--clr-txt-3);
        font-size: 0.72rem;
        font-weight: 600;
        padding: 2px var(--sp-2);
        border-radius: var(--radius-xs);
      }
    }
  }
}

.frm {
  & .frm-grp {
    margin-bottom: var(--sp-4);
  }

  & .frm-lbl {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-txt-2);
    margin-bottom: var(--sp-2);
  }

  & .frm-inp {
    width: 100%;
    background: var(--clr-bg);
    border: 1.5px solid var(--clr-border);
    color: var(--clr-txt);
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem var(--sp-4);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);

    &:focus {
      border-color: var(--clr-pri);
      box-shadow: 0 0 0 3px rgba(44,74,110,0.1);
      background: var(--clr-surface);
    }

    &::placeholder {
      color: var(--clr-txt-3);
    }
  }

  & .frm-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
  }

  & .frm-check-grp {
    & .frm-check-lbl {
      display: flex;
      align-items: flex-start;
      gap: var(--sp-3);
      cursor: pointer;
      font-size: 0.85rem;
      color: var(--clr-txt-2);
      line-height: 1.5;

      & .frm-check {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 2px;
        accent-color: var(--clr-pri);
        cursor: pointer;
      }

      & a {
        color: var(--clr-pri);
        font-weight: 600;
      }
    }
  }

  & .frm-submit {
    width: 100%;
    margin-top: var(--sp-2);
    justify-content: center;
    font-size: 1rem;
    padding: 0.9rem var(--sp-6);
  }
}

.map-sec {
  background: var(--clr-bg-warm);
  padding: var(--sp-16) 0;

  & .map-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--clr-txt);
    margin-bottom: var(--sp-6);
  }

  & .map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
  }
}

.thanks-main {
  min-height: calc(100vh - var(--hdr-h) - 60px);
  display: flex;
  flex-direction: column;

  & .thanks-sec {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: calc(var(--hdr-h) + var(--sp-16));
    padding-bottom: var(--sp-20);
    background: linear-gradient(145deg, var(--clr-bg) 0%, var(--clr-bg-warm) 100%);
  }
}

.thanks-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-8);
  max-width: 560px;
  margin: 0 auto;
}

.envelope-wrap {
  display: flex;
  justify-content: center;
}

.envelope {
  position: relative;
  width: 120px;
  height: 84px;

  & .env-body {
    position: absolute;
    inset: 0;
    background: var(--clr-surface);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
  }

  & .env-flap {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 50%;
    background: var(--clr-bg-warm);
    border: 2px solid var(--clr-border);
    border-bottom: none;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transform-origin: top center;
    animation: flapOpen 0.6s 0.3s cubic-bezier(0.4,0,0.2,1) forwards;
    z-index: 2;
  }

  & .env-letter {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 8px;
    height: 60px;
    background: #fff;
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-2) var(--sp-3);
    gap: 6px;
    animation: letterRise 0.5s 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
    transform: translateY(0);
    opacity: 0;
    z-index: 1;

    & .env-letter-lines {
      display: flex;
      flex-direction: column;
      gap: 5px;

      & span {
        display: block;
        height: 2px;
        background: var(--clr-border);
        border-radius: var(--radius-full);

        &:nth-child(1) { width: 80%; }
        &:nth-child(2) { width: 60%; }
        &:nth-child(3) { width: 70%; }
      }
    }
  }
}

@keyframes flapOpen {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-160deg); }
}

@keyframes letterRise {
  0% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(-48px); opacity: 1; }
}

.thanks-text {
  animation: fadeUp 0.6s 1.4s ease both;

  & .thanks-h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--clr-txt);
    margin-bottom: var(--sp-4);
  }

  & .thanks-sub {
    color: var(--clr-txt-2);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--sp-3);
  }

  & .thanks-note {
    color: var(--clr-txt-3);
    font-size: 0.9rem;
    margin-bottom: var(--sp-6);
  }

  & .thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
  }
}

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

.legal-sec {
  padding-top: calc(var(--hdr-h) + var(--sp-12));
  padding-bottom: var(--sp-20);
  background: var(--clr-surface);

  & .legal-container {
    max-width: 800px;
  }

  & .legal-hd {
    margin-bottom: var(--sp-8);
    padding-bottom: var(--sp-6);
    border-bottom: 2px solid var(--clr-border);

    & h1 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--clr-txt);
      margin-bottom: var(--sp-2);
    }

    & .legal-date {
      font-size: 0.875rem;
      color: var(--clr-txt-3);
    }
  }

  & .legal-body {
    & > p {
      color: var(--clr-txt-2);
      line-height: 1.8;
      margin-bottom: var(--sp-6);
    }

    & h2 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--clr-txt);
      margin-top: var(--sp-8);
      margin-bottom: var(--sp-3);
    }

    & p {
      color: var(--clr-txt-2);
      line-height: 1.8;
      margin-bottom: var(--sp-4);
      font-size: 0.9rem;
    }

    & strong {
      color: var(--clr-txt);
      font-weight: 700;
    }
  }
}

.ftr {
  background: var(--clr-bg-deep);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-4) 0;

  & .ftr-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-6);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-4);

    @media (min-width: 900px) {
      flex-wrap: nowrap;
    }
  }

  & .ftr-logo {
    flex-shrink: 0;

    & .ftr-logo-img {
      height: 28px;
      width: auto;
      opacity: 0.7;
      transition: opacity var(--transition);

      &:hover {
        opacity: 1;
      }
    }
  }

  & .ftr-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-1);
    flex: 1;
    justify-content: center;

    & a {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--clr-txt-3);
      padding: var(--sp-1) var(--sp-2);
      border-radius: var(--radius-xs);
      transition: color var(--transition);
      text-decoration: none;

      &:hover {
        color: var(--clr-pri);
      }
    }
  }

  & .ftr-copy {
    font-size: 0.78rem;
    color: var(--clr-txt-3);
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.cc-bell-wrap {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 900;
}

.cc-bell-btn {
  width: 52px;
  height: 52px;
  background: var(--clr-pri-dark);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: background var(--transition), transform var(--transition);
  position: relative;

  &:hover {
    background: var(--clr-pri);
    transform: scale(1.08);
  }
}

.cc-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  background: var(--clr-acc);
  border-radius: 50%;
  border: 2px solid var(--clr-bg);
  display: none;

  &.visible {
    display: block;
  }
}

.cc-panel {
  position: absolute;
  bottom: calc(100% + var(--sp-3));
  right: 0;
  width: 320px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: translateY(10px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);

  &.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
  }

  & .cc-panel-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-4) var(--sp-4) var(--sp-3);
    border-bottom: 1px solid var(--clr-border-light);

    & h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--clr-txt);
    }

    & .cc-panel-close {
      background: none;
      border: none;
      color: var(--clr-txt-3);
      cursor: pointer;
      font-size: 1rem;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-xs);
      transition: background var(--transition), color var(--transition);

      &:hover {
        background: var(--clr-bg-warm);
        color: var(--clr-txt);
      }
    }
  }

  & .cc-panel-intro {
    font-size: 0.8rem;
    color: var(--clr-txt-3);
    padding: var(--sp-3) var(--sp-4);
    line-height: 1.55;
  }

  & .cc-toggles {
    padding: 0 var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
  }

  & .cc-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);

    & .cc-toggle-info {
      flex: 1;

      & strong {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--clr-txt);
        margin-bottom: 2px;
      }

      & span {
        font-size: 0.75rem;
        color: var(--clr-txt-3);
        line-height: 1.4;
      }
    }
  }

  & .cc-switch {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
    cursor: pointer;

    & input {
      opacity: 0;
      width: 0;
      height: 0;
      position: absolute;

      &:checked + .cc-slider {
        background: var(--clr-pri);
      }

      &:checked + .cc-slider::before {
        transform: translateX(18px);
      }

      &:disabled + .cc-slider {
        background: var(--clr-sec);
        cursor: not-allowed;
      }
    }

    & .cc-slider {
      position: absolute;
      inset: 0;
      background: var(--clr-border);
      border-radius: var(--radius-full);
      transition: background var(--transition);

      &::before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        left: 3px;
        top: 3px;
        background: #fff;
        border-radius: 50%;
        transition: transform var(--transition);
        box-shadow: var(--shadow-xs);
      }
    }
  }

  & .cc-switch-disabled {
    cursor: not-allowed;
  }

  & .cc-panel-actions {
    display: flex;
    gap: var(--sp-2);
    padding: var(--sp-4);

    & .cc-reject, & .cc-accept {
      flex: 1;
      justify-content: center;
      font-size: 0.8rem;
      padding: 0.6rem var(--sp-3);
    }
  }

  & .cc-legal {
    font-size: 0.72rem;
    color: var(--clr-txt-3);
    text-align: center;
    padding: 0 var(--sp-4) var(--sp-4);
    line-height: 1.5;

    & a {
      color: var(--clr-pri);
    }
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;

  &.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .intro-card-wrap {
    grid-template-columns: 1fr !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;

    & .hero-img-a {
      grid-column: 1 !important;
    }

    & .hero-img-b, & .hero-img-c {
      transform: none !important;
    }
  }

  .cc-panel {
    width: calc(100vw - 2rem);
    right: calc(-1 * var(--sp-6) + var(--sp-3));
  }
}

@media (max-width: 640px) {
  .ftr-inner {
    flex-direction: column;
    text-align: center;
  }

  .ftr-nav {
    justify-content: center;
  }

  .nl-input-wrap {
    flex-direction: column;
  }

  .nl-btn {
    width: 100%;
    justify-content: center;
  }
}