  /* =========================
     TOKENS
     ========================= */
  :root {
    --green: #58C3F4;
    --green-2: #3ab3ec;
    --green-dark: #1478a8;
    --green-light: #ddf1fb;
    --green-lighter: #eef8fd;
    --black: #080808;
    --text: #151515;
    --muted: #6f6f6f;
    --border: #e8e8e8;
    --background: #f3f5f2;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 1px rgba(0,0,0,0.03);
    --shadow-md: 0 8px 24px rgba(20, 30, 20, 0.06), 0 2px 6px rgba(20, 30, 20, 0.04);
    --shadow-lg: 0 24px 60px rgba(20, 30, 20, 0.10), 0 8px 16px rgba(20, 30, 20, 0.05);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --container-max: 1200px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* =========================
     SHELL / CONTAINER
     ========================= */
  .shell {
    width: 100%;
    margin: 0;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
  }
  .container {
    padding-left: clamp(20px, 4vw, 56px);
    padding-right: clamp(20px, 4vw, 56px);
  }

  /* =========================
     BUTTONS
     ========================= */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
    white-space: nowrap;
  }
  .btn-sm { padding: 8px 16px; font-size: 13px; }
  .btn-lg { padding: 14px 26px; font-size: 15px; }
  .btn-ghost {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
  }
  .btn-ghost:hover { border-color: #c8c8c8; }
  .btn-dark {
    background: var(--black);
    color: var(--white);
  }
  .btn-dark:hover { background: #1f1f1f; transform: translateY(-1px); }
  .btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 6px 14px rgba(88, 195, 244, 0.28);
  }
  .btn-green:hover { background: var(--green-2); transform: translateY(-1px); }
  .btn-icon-round {
    width: 44px; height: 44px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.9); color: var(--text);
    backdrop-filter: blur(4px);
    transition: all .2s ease;
  }
  .btn-icon-round.green { background: var(--green); color: var(--white); }
  .btn-icon-round:hover { transform: scale(1.05); }

  /* =========================
     HEADER
     ========================= */
  /* =========================
     TOPBAR
     ========================= */
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 38px;
    border-bottom: 1px solid var(--border);
    z-index: 51;
    display: flex;
    align-items: center;
  }
  .topbar-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 36px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .topbar-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0; padding: 0;
  }
  .topbar-links > li {
    display: flex;
    align-items: center;
  }
  .topbar-links > li + li::before {
    content: "·";
    color: var(--muted);
    font-size: 16px;
    padding: 0 8px;
    line-height: 1;
  }
  .topbar-links a {
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color .2s ease;
  }
  .topbar-links a:hover { color: var(--text); }

  .lang-switcher { position: relative; }
  .lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color .2s ease;
  }
  .lang-btn:hover { color: var(--text); }
  .lang-prefix { color: var(--muted); margin-right: 2px; }
  .lang-btn svg { transition: transform .2s ease; }
  .lang-btn.open svg { transform: rotate(180deg); }

  .lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 4px;
    min-width: 80px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 100;
  }
  .lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .lang-dropdown button {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    border-radius: 6px;
    font-family: inherit;
    transition: background .15s ease, color .15s ease;
  }
  .lang-dropdown button:hover {
    background: var(--background);
    color: var(--text);
  }

  .header {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 50;
    transition: box-shadow .2s ease, background .2s ease;
    background: transparent;
  }
  .topbar.scrolled,
  .header.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
  }
  .topbar-brand { color: var(--muted); transition: color .7s ease; }
  .topbar.hero-img { border-bottom-color: rgba(255,255,255,0.15); transition: border-color .7s ease; }
  .topbar.hero-img .topbar-links a,
  .topbar.hero-img .lang-btn,
  .topbar.hero-img .lang-prefix,
  .topbar.hero-img .topbar-brand { color: rgba(255,255,255,0.85); transition: color .7s ease; }
  .topbar.hero-img .topbar-links a:hover,
  .topbar.hero-img .lang-btn:hover { color: var(--white); }
  .topbar.hero-img .topbar-links > li + li::before { color: rgba(255,255,255,0.4); transition: color .7s ease; }

  .header.hero-img .logo,
  .header.hero-img .menu a,
  .header.hero-img .menu a.active { color: rgba(255,255,255,0.9); transition: color .7s ease; }
  .header.hero-img .menu a:hover { color: var(--white); }
  .header.hero-img .nav-cta .btn-ghost { border-color: rgba(255,255,255,0.6); color: var(--white); transition: border-color .7s ease, color .7s ease; }
  .header.hero-img .nav-cta .btn-ghost:hover { border-color: var(--white); }
  .header.hero-img .logo { transition: color .7s ease; }

  .header.scrolled {
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 72px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 36px);
  }
  .nav .logo { margin-right: auto; }
  .logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: -0.03em;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .logo-mark {
    height: 30px; width: auto;
    display: inline-block;
    flex-shrink: 0;
  }
  .menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0; padding: 0;
  }
  .menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s ease;
  }
  .menu a:hover { color: var(--text); }
  .menu a.active { color: var(--text); font-weight: 600; }

  .menu-item { position: relative; }
  .menu-item > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .menu-item > a svg { transition: transform .2s ease; }
  .menu-item:hover > a svg { transform: rotate(180deg); }

  .dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 6px;
    min-width: 190px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 60;
  }
  .menu-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown li { list-style: none; }
  .dropdown a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    border-radius: 8px;
    transition: background .15s ease, color .15s ease;
  }
  .dropdown a:hover {
    background: var(--background);
    color: var(--text);
  }
  .nav-cta { display: flex; gap: 8px; align-items: center; }
  .nav-cta .btn { text-transform: uppercase; letter-spacing: 0.04em; font-weight: 800; font-size: 11px; }
  .nav-cta .btn-ghost { background: transparent; border-width: 2px; border-color: var(--green-dark); color: var(--green-dark); }
  .nav-cta .btn-dark { background: var(--green-dark); border: 2px solid transparent; }
  .nav-cta .btn:hover { transform: none; }
  .hamburger {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
  }
  .hamburger span {
    width: 18px; height: 2px; background: var(--text); border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0 clamp(20px, 4vw, 36px);
    gap: 14px;
    background: var(--white);
    border-top: 0 solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease, border-top-width .3s ease;
  }
  .mobile-menu.open {
    max-height: 500px;
    padding-top: 20px;
    padding-bottom: 24px;
    border-top-width: 1px;
  }
  .mobile-menu a { font-size: 16px; font-weight: 500; }
  .mobile-sub {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 16px;
    border-left: 2px solid var(--border);
    margin-top: -4px;
  }
  .mobile-sub a { font-size: 14px; color: var(--muted); }
  .mobile-menu .mobile-cta { display: flex; gap: 8px; padding-top: 8px; }

  /* =========================
     HERO
     ========================= */
  .hero {
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
      radial-gradient(ellipse 70% 60% at 0% 30%, rgba(173, 229, 255, 0.45), transparent 60%),
      radial-gradient(ellipse 70% 60% at 100% 20%, rgba(88, 195, 244, 0.25), transparent 60%),
      radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255,255,255,1), transparent 70%),
      linear-gradient(180deg, #eef8fd 0%, #ffffff 65%);
    overflow: hidden;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    padding: 40px clamp(20px, 4vw, 56px) 36px;
    position: relative;
    z-index: 1;
  }
  .h1, .h2, .h3 { letter-spacing: -0.035em; line-height: 1.04; font-weight: 700; color: var(--text); margin: 0; }
  .h1 { font-size: clamp(40px, 6vw, 68px); }
  .h2 { font-size: clamp(32px, 4.5vw, 48px); line-height: 1.05; }
  .h3 { font-size: clamp(22px, 2.5vw, 28px); }

  .hero p {
    color: var(--muted);
    font-size: 16px;
    max-width: 460px;
    margin: 20px 0 28px;
    line-height: 1.55;
  }
  .hero-cta { display: inline-flex; gap: 10px; }
  .hero-bg-overlay {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity .8s ease;
    z-index: 0;
  }
  .hero-bg-overlay.visible { opacity: 1; }
  .hero-bg-overlay::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.52);
  }
  .hero.has-bg .hero-inner { position: relative; z-index: 1; }
  .hero .h1, .hero p, .hero .btn, .hero-dot { transition: color .7s ease, border-color .7s ease, background .7s ease; }
  .hero.has-bg .h1,
  .hero.has-bg p { color: var(--white); }
  .hero.has-bg .btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,0.7); color: var(--white); }
  .hero.has-bg .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
  .hero.has-bg .hero-dot { background: rgba(255,255,255,0.4); }
  .hero.has-bg .hero-dot.active { background: var(--white); }
  .hero-slides { display: grid; width: 100%; max-width: 700px; }
  .hero-dots { max-width: 700px; }
  .hero-slide {
    grid-area: 1 / 1;
    opacity: 0; transition: opacity .7s ease;
    pointer-events: none;
  }
  .hero-slide.active { opacity: 1; pointer-events: auto; }
  .hero-dots {
    display: flex; gap: 8px; justify-content: center; margin-top: 32px;
  }
  .hero-dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: var(--border); border: none; cursor: pointer; padding: 0;
    transition: background .25s ease, width .25s ease;
  }
  .hero-dot.active { background: var(--green-dark); width: 24px; }

  .skyline {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: auto;
    display: block;
  }

  /* =========================
     METRICS BAR
     ========================= */
  .metrics {
    background: var(--white);
    padding: 36px clamp(20px, 4vw, 56px);
  }
  .metrics-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .metric {
    text-align: left;
    padding: 8px 24px;
    position: relative;
  }
  .metric + .metric::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 44px;
    background: var(--border);
  }
  .metric .num {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1;
  }
  .metric .lbl {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* =========================
     SECTION BASE
     ========================= */
  section { position: relative; }
  .sec {
    padding: clamp(60px, 7vw, 96px) clamp(20px, 4vw, 56px);
  }
  .sec-inner {
    max-width: 1140px;
    margin: 0 auto;
  }
  .sec-head {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 40px;
  }
  .sec-head p { color: var(--muted); font-size: 16px; max-width: 380px; margin: 0; }
  .sec-head.center { display: block; text-align: center; }
  .sec-head.center p { margin: 16px auto 0; }

  /* =========================
     UNLOCK (two-column)
     ========================= */
  .unlock {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
  }
  .unlock .lead p { color: var(--muted); margin: 20px 0 28px; max-width: 360px; }
  .unlock-vis {
    position: relative;
    height: 520px;
  }
  .float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .card-livest {
    right: 380px; top: 40px;
    width: 200px; padding: 18px;
    height: 260px;
    z-index: 2;
  }
  .card-livest .mini-logo {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 800; color: var(--green-dark);
    letter-spacing: -0.03em;
  }
  .card-livest .mini-logo .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
  .card-livest .stack {
    margin-top: 16px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .card-livest .row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--background);
    font-size: 12px; font-weight: 600;
  }
  .card-livest .row .pct { color: var(--green-dark); }
  .card-livest .title { font-size: 13px; font-weight: 700; margin-top: 4px; color: var(--text); }
  .card-livest .sub { font-size: 11px; color: var(--muted); }

  .card-trust {
    left: 20px; top: 310px;
    width: 155px; padding: 20px;
    z-index: 3;
  }
  .card-trust2 {
    left: 190px; top: 310px;
    width: 155px; padding: 20px;
    z-index: 3;
  }
  .card-trust2 .icon-bubble {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--green-light); color: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .card-trust2 .big { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
  .card-trust2 .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-top: 2px; }
  .card-trust .icon-bubble {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--green-light); color: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .card-trust .big { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
  .card-trust .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-top: 2px; }

  .card-property {
    right: 190px; top: 40px;
    width: 175px;
    height: 260px;
    z-index: 1;
  }
  .card-property .img {
    height: 145px;
    background-image: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=600&q=80');
    background-size: cover; background-position: center;
  }
  .card-property .meta { padding: 14px 14px 4px; }
  .card-property .ttl { font-size: 14px; font-weight: 700; }
  .card-property .loc { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-top: 4px; }
  .card-property .specs { display: flex; gap: 10px; padding: 10px 14px 14px; font-size: 10.5px; color: var(--muted); font-weight: 500; }

  .card-event2 {
    right: 0; top: 40px;
    width: 175px;
    height: 260px;
    z-index: 2;
  }
  .card-event2 .img {
    height: 145px;
    background-size: cover; background-position: center;
  }
  .card-event2 .meta { padding: 14px 14px 4px; }
  .card-event2 .ttl { font-size: 14px; font-weight: 700; }
  .card-event2 .loc { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-top: 4px; }
  .card-event2 .specs { display: flex; gap: 10px; padding: 10px 14px 14px; font-size: 10.5px; color: var(--muted); font-weight: 500; }

  .card-trust3 {
    left: 360px; top: 310px;
    width: 155px; padding: 20px;
    z-index: 3;
  }
  .card-trust3 .icon-bubble {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--green-light); color: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .card-trust3 .big { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
  .card-trust3 .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-top: 2px; }

  /* =========================
     ADVANTAGES GRID
     ========================= */
  .advantages-wrap { position: relative; }
  .advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .adv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .adv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .adv-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--green-lighter);
    color: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .adv-card h4 { margin: 0 0 6px; font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
  .adv-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
  .adv-footnote {
    grid-column: span 1;
    padding: 24px 8px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
  }
  .adv-cta-row {
    margin-top: 24px;
    display: flex; justify-content: flex-end;
  }

  /* =========================
     PROPERTIES
     ========================= */
  .props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
  }
  .props-see-more {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
  }
  .see-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-dark);
    transition: gap .2s ease, color .2s ease;
  }
  .see-more-link:hover { gap: 10px; color: var(--green); }

  .news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .news-img { aspect-ratio: 16/10; background-size: cover; background-position: center; flex-shrink: 0; }
  .news-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
  .news-tag {
    display: inline-flex; align-self: flex-start;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--green-dark); background: var(--green-light);
    padding: 3px 10px; border-radius: 999px; margin-bottom: 10px;
  }
  .news-body h4 {
    margin: 0 0 8px; font-size: 15px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3;
  }
  .news-excerpt { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; margin: 0 0 14px; }
  .news-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--border);
  }
  .news-date { font-size: 11px; color: var(--muted); font-weight: 500; }

  /* =========================
     FEIRAS E CURSOS
     ========================= */
  .feiras-cursos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .fc-col { min-width: 0; }
  .fc-col-head {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
  }
  .fc-col-head .h2 { margin: 0; }

  .event-list, .course-list { display: flex; flex-direction: column; gap: 12px; }

  /* filtro — linha única desktop */
  .event-filters { position: relative; margin-bottom: 16px; }

  .ef-mobile-toggle { display: none; }

  .ef-controls {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .ef-panel-close, .ef-panel-title { display: none; }

  .ef-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 12px;
    height: 38px;
    color: var(--muted);
  }
  .ef-search input {
    border: none; outline: none;
    font-family: inherit; font-size: 13px;
    color: var(--text); background: transparent; flex: 1; min-width: 0;
  }
  .ef-search input::placeholder { color: var(--muted); }

  .ef-select {
    height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 28px 0 10px;
    font-family: inherit; font-size: 13px;
    color: var(--muted); background: var(--white);
    outline: none; cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236f6f6f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color .2s ease, color .2s ease;
  }
  .ef-select:hover { border-color: var(--green); color: var(--text); }
  .ef-select:focus { border-color: var(--green); color: var(--text); }

  .ef-date-wrap { position: relative; flex-shrink: 0; }
  .ef-date-btn {
    display: inline-flex; align-items: center; gap: 6px;
    height: 38px; padding: 0 12px;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: var(--white); font-family: inherit; font-size: 13px;
    color: var(--muted); white-space: nowrap;
    min-width: 0; flex-shrink: 1;
    transition: border-color .2s ease, color .2s ease;
  }
  #efDateLabel { overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
  .ef-date-btn:hover, .ef-date-btn.open { border-color: var(--green); color: var(--text); }
  .ef-date-btn.active { border-color: var(--green-dark); color: var(--green-dark); }
  .ef-clear-date { display: none; align-items: center; justify-content: center; margin-left: 2px; opacity: 0.6; transition: opacity .2s ease; }
  .ef-clear-date:hover { opacity: 1; }
  .ef-date-btn.active .ef-clear-date { display: inline-flex; }
  .ef-date-btn.active .ef-chevron { display: none; }


  .event-empty p { font-size: 13px; color: var(--muted); text-align: center; padding: 24px 0; }

  /* Flatpickr overrides */
  .flatpickr-calendar { font-family: 'Manrope', sans-serif; border: 1px solid var(--border); box-shadow: var(--shadow-lg); border-radius: var(--radius-md); }
  .flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange,
  .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover {
    background: var(--green-dark); border-color: var(--green-dark);
  }
  .flatpickr-day.inRange { background: var(--green-light); border-color: var(--green-light); box-shadow: -5px 0 0 var(--green-light), 5px 0 0 var(--green-light); }
  .flatpickr-day:hover { background: var(--green-lighter); }
  .flatpickr-months .flatpickr-month, .flatpickr-current-month, .flatpickr-monthDropdown-months { color: var(--text); }
  .flatpickr-next-month svg, .flatpickr-prev-month svg { fill: var(--text); }

  /* filtro — mobile: só ícone + bottom sheet */
  @media (max-width: 640px) {
    .ef-mobile-toggle {
      display: inline-flex; align-items: center; gap: 8px;
      height: 38px; padding: 0 16px;
      border: 1px solid var(--border); border-radius: var(--radius-sm);
      background: var(--white); font-family: inherit; font-size: 13px;
      font-weight: 600; color: var(--text);
    }
    .ef-controls {
      position: fixed; bottom: 0; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 12px;
      background: var(--white);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      padding: 20px 20px 32px;
      box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
      z-index: 200;
      transform: translateY(100%);
      transition: transform .3s ease;
    }
    .ef-controls.open { transform: translateY(0); }
    .ef-panel-close {
      display: flex; align-self: flex-end;
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--background); color: var(--text);
      align-items: center; justify-content: center;
    }
    .ef-panel-title {
      display: block;
      font-size: 16px; font-weight: 700; letter-spacing: -0.02em;
      margin-bottom: 4px;
    }
    .ef-date-wrap { width: 100%; }
    .ef-date-btn { width: 100%; justify-content: flex-start; }
    .ef-select { width: 100%; }
    .ef-overlay {
      display: block; position: fixed; inset: 0;
      background: rgba(0,0,0,0.4); z-index: 199;
      opacity: 0; visibility: hidden;
      transition: opacity .3s ease, visibility .3s ease;
    }
    .ef-overlay.open { opacity: 1; visibility: visible; }

    /* cursos mobile — mesmo padrão */
    #cfControls {
      position: fixed; bottom: 0; left: 0; right: 0;
      flex-direction: column; align-items: stretch;
      background: var(--white);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      padding: 20px 20px 32px;
      box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
      z-index: 200;
      transform: translateY(100%);
      transition: transform .3s ease;
    }
    #cfControls.open { transform: translateY(0); }
  }

  .event-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    height: 94px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .event-date {
    flex-shrink: 0;
    width: 50px;
    text-align: center;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    padding: 8px 6px;
  }
  .event-date .day { font-size: 22px; font-weight: 800; color: var(--green-dark); line-height: 1; letter-spacing: -0.03em; }
  .event-date .month { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-dark); margin-top: 3px; }
  .event-info h4 { margin: 0 0 6px; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
  .event-loc { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }

  .course-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 94px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .course-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .course-tag {
    display: inline-flex;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 3px 10px;
    border-radius: 999px;
    margin-left: auto;
  }
  .course-filters { position: relative; margin-bottom: 16px; }
  .cf-controls {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  #cfControls > .ef-search { flex: 2 1 0; min-width: 0; }
  #cfControls .ef-select   { flex: 1 1 0; min-width: 0; }

  .course-empty p { font-size: 13px; color: var(--muted); text-align: center; padding: 24px 0; }

  .course-card h4 { margin: 0 0 10px; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
  .course-meta { display: flex; gap: 16px; font-size: 12px; color: var(--muted); font-weight: 500; }
  .course-meta span { display: inline-flex; align-items: center; gap: 4px; }

  @media (max-width: 980px) {
    .feiras-cursos { grid-template-columns: 1fr; gap: 40px; }
  }

  /* =========================
     STEPS
     ========================= */
  .steps-sec {
    background:
      radial-gradient(ellipse 80% 60% at 20% 20%, rgba(88, 195, 244, 0.25), transparent 60%),
      radial-gradient(ellipse 80% 60% at 100% 80%, rgba(173, 229, 255, 0.35), transparent 60%),
      var(--green-lighter);
  }
  .steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
    margin-top: 40px;
  }
  .step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 26px 26px 26px 26px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
  }
  .step-bignum {
    position: absolute;
    top: -28px;
    right: 8px;
    font-size: 130px;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(88, 195, 244, 0.35);
    pointer-events: none;
    user-select: none;
  }
  .step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    margin-bottom: 18px;
    position: relative; z-index: 2;
  }
  .step-card h4, .step-card p { position: relative; z-index: 2; }
  .step-card h4 { margin: 0 0 8px; font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
  .step-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
  .step-arrow {
    align-self: center;
    color: var(--green-dark);
    opacity: 0.6;
  }

  /* =========================
     MARCAS ASSOCIADAS
     ========================= */
  .brands-sec {
    padding: clamp(60px, 7vw, 96px) 0;
    background: #f4f4f4;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .brands-title { text-align: center; margin-bottom: 32px; }
  .brands-track {
    display: flex;
    width: max-content;
    cursor: grab;
    will-change: transform;
  }
  .brands-track.dragging { cursor: grabbing; }
  .brands-list {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
  }
  .brand-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 160px;
    height: 90px;
    background: var(--white);
    border-radius: 6px;
    filter: grayscale(1);
    opacity: 0.45;
    transition: opacity .2s ease, filter .2s ease;
    user-select: none;
  }
  .brand-item { font-size: 14px; font-weight: 700; color: #888; letter-spacing: 0.02em; pointer-events: none; }
  .brands-track:hover .brand-item { opacity: 0.8; filter: grayscale(0.2); }

  /* =========================
     TESTIMONIAL
     ========================= */
  .testi-wrap {
    margin-top: 40px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 460px;
    background-image:
      linear-gradient(140deg, rgba(40, 100, 50, 0.55) 0%, rgba(40, 80, 50, 0.4) 60%, rgba(40, 60, 40, 0.55) 100%),
      url('https://images.unsplash.com/photo-1518780664697-55e3ad937233?w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px clamp(60px, 8vw, 120px);
  }
  .testi-card {
    max-width: 760px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    padding: 36px clamp(28px, 4vw, 48px);
    color: white;
    text-align: center;
  }
  .testi-card .quote {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.65;
    margin: 0 0 28px;
    font-weight: 500;
  }
  .testi-author {
    display: flex; align-items: center; justify-content: center; gap: 12px;
  }
  .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background-size: cover; background-position: center;
    border: 2px solid rgba(255,255,255,0.4);
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&q=80');
  }
  .testi-name { font-weight: 700; font-size: 15px; }
  .testi-role { font-size: 12px; opacity: 0.85; margin-top: 2px; }
  .testi-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column;
  }
  .testi-nav.left { left: 24px; }
  .testi-nav.right { right: 24px; }

  /* =========================
     FAQ
     ========================= */
  .faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 56px;
    align-items: start;
  }
  .faq-left h2 { margin: 0; }
  .faq-cta {
    margin-top: 30px;
  }
  .faq-cta p { font-size: 14px; color: var(--muted); margin: 0 0 16px; }

  .faq-list { display: flex; flex-direction: column; gap: 10px; }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .faq-item.open { border-color: var(--green); box-shadow: 0 6px 18px rgba(88,195,244,0.12); }
  .faq-q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    text-align: left;
    font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
    color: var(--text);
  }
  .faq-toggle {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--background);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s ease, transform .25s ease;
    flex-shrink: 0;
  }
  .faq-item.open .faq-toggle { background: var(--green); color: var(--white); transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .faq-a-inner {
    padding: 0 22px 22px;
    font-size: 14px; color: var(--muted); line-height: 1.6;
  }
  .faq-item.open .faq-a { max-height: 400px; }

  /* =========================
     FINAL CTA
     ========================= */
  .final-cta {
    padding: 80px clamp(20px, 4vw, 56px);
    background:
      radial-gradient(ellipse 60% 60% at 0% 50%, rgba(173, 229, 255, 0.4), transparent 60%),
      radial-gradient(ellipse 60% 60% at 100% 50%, rgba(88, 195, 244, 0.25), transparent 60%),
      linear-gradient(180deg, #eef8fd 0%, #e4f4fc 100%);
  }
  .nl-wrap {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
  }
  .nl-text h2 { margin-bottom: 16px; }
  .nl-text .nl-desc { color: var(--muted); font-size: 16px; line-height: 1.55; }
  .newsletter-form { display: flex; flex-direction: row; gap: 10px; align-items: center; }
  .newsletter-form .nl-input { flex: 1 1 0; min-width: 0; }
  .nl-input {
    height: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    font-family: inherit; font-size: 14px;
    color: var(--text); background: var(--white);
    outline: none;
    transition: border-color .2s ease;
  }
  .nl-input:focus { border-color: var(--green); }
  .nl-input::placeholder { color: var(--muted); }
  .nl-feedback { font-size: 13px; margin-top: 4px; min-height: 18px; }
  .nl-feedback.ok  { color: var(--green-dark); }
  .nl-feedback.err { color: #c0392b; }
  @media (max-width: 760px) {
    .nl-wrap { grid-template-columns: 1fr; gap: 32px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form .nl-input, .newsletter-form .btn { width: 100%; justify-content: center; }
  }

  /* =========================
     FOOTER
     ========================= */
  .footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    border-radius: 0;
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
  }
  .footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
    position: relative;
    z-index: 2;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 0.7fr) 1.1fr;
    gap: 40px;
  }
  .footer-col-cta { display: flex; flex-direction: column; gap: 10px; }
  .footer-col-cta .btn { text-transform: uppercase; letter-spacing: 0.04em; font-weight: 800; font-size: 11px; justify-content: center; }
  .footer-col-cta .btn-ghost { background: transparent; border-width: 2px; border-color: var(--green-dark); color: var(--green-dark); }
  .footer-col-cta .btn-dark { background: var(--green-dark); border: 2px solid transparent; }
  .footer-col-cta .btn:hover { transform: none; }
  .footer-about p { font-size: 14px; max-width: 320px; line-height: 1.6; }
  .socials { display: flex; gap: 10px; margin-top: 18px; }
  .social-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: inline-flex; align-items: center; justify-content: center;
    color: white;
    transition: background .2s ease;
  }
  .social-icon:hover { background: rgba(255,255,255,0.14); color: #58C3F4; }
  .footer-col h5 {
    color: white;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin: 0 0 18px;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
  .footer-col ul li { font-size: 11px; }
  .footer-col a { transition: color .2s ease; }
  .footer-col a:hover { color: #58C3F4; }

  .footer-bottom {
    margin-top: 64px;
    padding: 24px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 13px;
  }
  .footer-watermark {
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: clamp(160px, 22vw, 320px);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.045);
    line-height: 0.85;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
  }

  /* =========================
     RESPONSIVE
     ========================= */
  @media (max-width: 980px) {
    .menu, .nav-cta .btn-ghost { display: none; }
    .nav-cta .btn-dark { display: none; }
    .hamburger { display: inline-flex; }
    .mobile-menu { display: flex; }

    .sec-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
    .unlock { grid-template-columns: 1fr; gap: 36px; }
    .unlock-vis { height: 480px; }
    .advantages { grid-template-columns: repeat(2, 1fr); }
    .adv-footnote { grid-column: span 2; }
    .props-grid { grid-template-columns: repeat(2, 1fr); }
    .props-grid.news-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .step-arrow { transform: rotate(90deg); margin: 0 auto; }
    .faq-grid { grid-template-columns: 1fr; gap: 32px; }
    .faq-cta { margin-top: 0; }
    .metrics { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .metric + .metric::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: span 2; }
  }
  @media (max-width: 560px) {
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; }
    .advantages { grid-template-columns: 1fr; }
    .adv-footnote { grid-column: span 1; }
    .props-grid { grid-template-columns: 1fr; }
    .props-grid.news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-about { grid-column: span 1; }
    .testi-nav.left { left: 8px; } .testi-nav.right { right: 8px; }
    .testi-wrap { padding: 40px 20px; }
  }
</style>
