
    :root {
      --navy: #0d1b2a;
      --navy-mid: #162438;
      --navy-deep: #080f18;
      --gold: #c8a96e;
      --gold-l: #e8d5a8;
      --gold-d: #a88a52;
      --cream: #f5f0e8;
      --cream2: #ede5d4;
      --cream-b: #f9f6f1;
      --white: #ffffff;
      --ink: #141414;
      --mute: #42372e;
      --soft: #5e5044;
      --on-dark: rgba(255, 255, 255, .88);
      --on-dark-s: rgba(255, 255, 255, .58);
      --border: rgba(200, 169, 110, .25);
      --max-w: 1180px;
      --r: 4px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Noto Sans KR', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
      font-size: 15px;
      line-height: 1.7;
    }

    /* ═══ NAV (Existing Premium) ═══ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 300;
      background: rgba(245, 240, 232, .96);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 40px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-main {
      font-size: 26px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -.025em;
    }

    .logo-sep {
      width: 1px;
      height: 14px;
      background: var(--cream2);
    }

    .logo-sub {
      font-size: 12px;
      font-weight: 400;
      color: var(--soft);
      letter-spacing: .1em;
    }

    .nav-r {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links {
      display: flex;
      gap: 48px;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-links a {
      font-size: 15px;
      font-weight: 600;
      color: var(--soft);
      text-decoration: none;
      transition: all .2s;
    }

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

    /* DROPDOWN */
    .nav-links li {
      position: relative;
    }

    .nav-links .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(12px);
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 0;
      min-width: 200px;
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      list-style: none;
      z-index: 1000;
      margin-top: 5px;
    }

    .nav-links li:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .has-dropdown>a::after {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-right: 1.5px solid var(--soft);
      border-bottom: 1.5px solid var(--soft);
      transform: rotate(45deg) translateY(-3px);
      margin-left: 8px;
      transition: transform 0.2s;
    }

    .has-dropdown:hover>a::after {
      transform: rotate(-135deg) translateY(-1px);
      border-color: var(--navy);
    }

    .dropdown-menu li {
      width: 100%;
    }

    .dropdown-menu li a {
      display: block;
      padding: 10px 24px;
      font-size: 13px;
      color: var(--soft);
      white-space: nowrap;
      transition: all 0.25s;
      text-align: left;
    }

    .dropdown-menu li a:hover {
      background: rgba(200, 169, 110, 0.1);
      color: var(--navy);
      padding-left: 28px;
    }

    .dropdown-menu li.disabled a {
      color: #b0b0b0;
      font-size: 12px;
      cursor: default;
      pointer-events: none;
      background: transparent;
    }

    .dropdown-menu li.disabled {
      border-top: 1px solid rgba(0, 0, 0, 0.03);
      margin-top: 5px;
      padding-top: 5px;
    }

    .nav-cta {
      font-size: 13px;
      font-weight: 600;
      padding: 10px 22px;
      background: var(--navy);
      color: var(--cream);
      border-radius: var(--r);
      text-decoration: none;
      transition: background .2s;
    }

    .nav-cta:hover {
      background: var(--gold);
      color: var(--navy);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 4px;
      border-radius: var(--r);
      transition: background .2s;
    }

    .hamburger:hover {
      background: var(--cream2);
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s cubic-bezier(.4, 0, .2, 1);
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 200;
      background: rgba(245, 240, 232, .98);
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 0;
      transform: translateY(-100%);
      transition: transform .4s cubic-bezier(.4, 0, .2, 1);
      visibility: hidden;
    }

    .mobile-menu.open {
      transform: translateY(0);
      visibility: visible;
    }


    .m-dropdown {
      width: 100%;
    }

    .m-drop-btn {
      display: block;
      padding: 20px 40px;
      font-size: 22px;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      border-bottom: 1px solid var(--cream2);
      text-align: center;
      transition: color .2s, background .2s;
    }

    .m-drop-btn:hover {
      color: var(--gold);
      background: rgba(200, 169, 110, .04);
    }

    .m-drop-list {
      display: none;
      list-style: none;
      background: rgba(200, 169, 110, .05);
      flex-direction: column;
      padding: 0;
      margin: 0;
      width: 100%;
    }

    .m-drop-list.open {
      display: flex;
    }

    .mobile-menu-links .m-drop-list a {
      font-size: 16px;
      font-weight: 500;
      padding: 16px 40px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
      color: var(--navy-mid);
    }

    .mobile-menu-links .m-drop-list li.disabled a {
      color: rgba(13, 27, 42, 0.3);
      pointer-events: none;
    }

    .mobile-menu-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      width: 100%;
    }

    .mobile-menu-links li {
      width: 100%;
      text-align: center;
    }

    .mobile-menu-links a {
      display: block;
      padding: 20px 40px;
      font-size: 22px;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      border-bottom: 1px solid var(--cream2);
      transition: color .2s, background .2s;
    }

    .mobile-menu-links a:hover {
      color: var(--gold);
      background: rgba(200, 169, 110, .04);
    }

    .mobile-cta {
      margin-top: 32px;
      font-size: 15px;
      font-weight: 600;
      padding: 16px 48px;
      background: var(--navy);
      color: var(--cream);
      border-radius: var(--r);
      text-decoration: none;
      transition: background .2s;
    }

    .mobile-cta:hover {
      background: var(--gold);
      color: var(--navy);
    }

    /* ═══ HERO ═══ */
    .hero {
      position: relative;
      min-height: 100dvh;
      background: var(--navy);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(200, 169, 110, .06) 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 80% 20%, rgba(13, 36, 56, .8) 0%, transparent 70%);
    }

    .hero-bg-text {
      position: absolute;
      right: -20px;
      bottom: -60px;
      font-size: 320px;
      font-weight: 900;
      line-height: 1;
      color: rgba(200, 169, 110, .04);
      user-select: none;
      pointer-events: none;
      letter-spacing: -.04em;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: var(--max-w);
      margin: 0 auto;
      width: 100%;
      padding: 140px 40px 64px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-self: flex-start;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .18em;
      color: var(--gold);
      border: 1px solid rgba(200, 169, 110, .4);
      padding: 6px 14px;
      border-radius: var(--r);
      margin-bottom: 36px;
      text-transform: uppercase;
    }

    .hero-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: blink 2s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .3;
        transform: scale(.6);
      }
    }

    .hero-h {
      font-size: clamp(42px, 5.5vw, 76px);
      font-weight: 700;
      line-height: 1.18;
      color: var(--white);
      margin-bottom: 32px;
      letter-spacing: -.02em;
      max-width: 800px;
      word-break: keep-all;
    }

    .hero-h em {
      font-style: normal;
      color: var(--gold);
    }

    .hero-lead {
      font-size: clamp(16px, 1.8vw, 20px);
      font-weight: 400;
      color: var(--on-dark-s);
      max-width: 560px;
      margin-bottom: 48px;
      line-height: 1.8;
    }

    .hero-lead strong {
      font-weight: 600;
      color: var(--on-dark);
    }

    .hero-btns {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 0;
    }

    .btn-primary {
      font-size: 15px;
      font-weight: 600;
      padding: 16px 40px;
      background: var(--gold);
      color: var(--navy);
      border-radius: var(--r);
      text-decoration: none;
      transition: all .25s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--gold-l);
      transform: translateY(-2px);
    }

    .btn-outline {
      font-size: 15px;
      font-weight: 500;
      padding: 16px 32px;
      background: transparent;
      color: var(--on-dark);
      border: 1.5px solid rgba(255, 255, 255, .22);
      border-radius: var(--r);
      text-decoration: none;
      transition: all .25s;
      display: inline-block;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .hero-stats-band {
      position: relative;
      z-index: 1;
      max-width: 100%;
      background: rgba(255, 255, 255, .04);
      border-top: 1px solid rgba(200, 169, 110, .14);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max-w);
      margin: 0 auto;
      width: 100%;
      padding: 28px 40px;
    }

    .hstat {
      padding: 0 32px 0 0;
      border-right: 1px solid rgba(200, 169, 110, .14);
      margin-right: 0;
    }

    .hstat:first-child {
      padding-left: 0;
    }

    .hstat:last-child {
      border-right: none;
      padding-right: 0;
    }

    .hstat-num {
      font-size: 32px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }

    .hstat-label {
      font-size: 12px;
      font-weight: 400;
      color: var(--on-dark-s);
    }

    /* SECTIONS COMMON */
    .sec {
      padding: 120px 40px;
    }

    .sec-inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .s-ey {
      font-size: 12px;
      letter-spacing: .16em;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .s-h {
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 700;
      line-height: 1.25;
      color: var(--navy);
      margin-bottom: 18px;
    }

    .s-p {
      font-size: 16px;
      font-weight: 400;
      line-height: 2;
      color: var(--mute);
      word-break: keep-all;
    }

    /* SERVICE CARDS SECTION */
    .services {
      background: var(--white);
    }

    .services-head {
      text-align: center;
      margin-bottom: 72px;
    }

    .services-head .s-h {
      margin: 0 auto;
    }

    .services-head .s-p {
      max-width: 520px;
      margin: 14px auto 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .svc {
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid var(--cream2);
      box-shadow: 0 2px 16px rgba(13, 27, 42, .06);
      transition: transform .25s, box-shadow .25s;
      cursor: default;
    }

    .svc:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(13, 27, 42, .12);
    }

    .svc-head {
      background: var(--navy);
      padding: 36px 32px 30px;
      position: relative;
      overflow: hidden;
    }

    .svc-head::after {
      content: '';
      position: absolute;
      bottom: -30px;
      right: -20px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(200, 169, 110, .06);
    }

    .svc-badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 2px;
      background: rgba(200, 169, 110, .15);
      border: 1px solid rgba(200, 169, 110, .3);
      color: var(--gold);
      margin-bottom: 16px;
    }

    .svc-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 8px;
    }

    .svc-target {
      font-size: 13px;
      font-weight: 500;
      color: var(--gold);
      opacity: .8;
    }

    .svc-body {
      background: var(--cream-b);
      padding: 30px 32px;
    }

    .svc-desc {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.95;
      color: var(--mute);
      margin-bottom: 22px;
    }

    .svc-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 26px;
    }

    .svc-features li {
      font-size: 14px;
      color: var(--soft);
      display: flex;
      align-items: flex-start;
      gap: 9px;
      line-height: 1.65;
    }

    .svc-features li::before {
      content: '—';
      color: var(--gold);
      font-size: 11px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .svc-link {
      display: block;
      text-align: center;
      padding: 14px;
      background: var(--navy);
      color: var(--cream);
      border-radius: var(--r);
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      transition: background .2s, color .2s;
    }

    .svc-link:hover {
      background: var(--gold);
      color: var(--navy);
    }

    .svc-link.outline {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--cream2);
    }

    .svc-link.outline:hover {
      border-color: var(--gold);
      background: var(--gold);
      color: var(--navy);
    }

    /* TOOLS SECTION */
    .tools-sec {
      background: var(--navy);
    }

    .tools-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 56px;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .tool {
      display: flex;
      flex-direction: column;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(200, 169, 110, .22);
      border-radius: var(--r);
      padding: 28px;
      transition: background .2s, border-color .2s, transform .2s;
      cursor: default;
    }

    .tool:hover {
      background: rgba(200, 169, 110, .07);
      border-color: rgba(200, 169, 110, .36);
      transform: translateY(-3px);
    }

    .tool-badge {
      display: inline-block;
      align-self: flex-start;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
      background: var(--gold);
      color: var(--navy);
      margin-bottom: 14px;
    }

    .tool-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .tool-sub {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .08em;
      color: var(--gold);
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .tool-d {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.85;
      color: var(--on-dark-s);
      flex: 1;
      margin-bottom: 24px;
    }

    .tool-link {
      display: block;
      text-align: center;
      padding: 12px 24px;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      background: var(--gold);
      border: 1px solid var(--gold);
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.2s ease;
      letter-spacing: .02em;
    }

    .tool-link:hover {
      background: transparent;
      color: var(--gold);
      border-color: var(--gold);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(200, 169, 110, 0.15);
    }

    /* ABOUT BRIEF */
    .about-brief {
      background: var(--cream);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-photo {
      width: 90%;
      display: block;
      border-radius: var(--r);
      object-fit: cover;
      object-position: top center;
    }

    .about-copy .s-p {
      margin-top: 16px;
      margin-bottom: 32px;
    }

    .career-list {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--cream2);
      border-radius: var(--r);
      overflow: hidden;
    }

    .ci {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 13px 20px;
      border-bottom: 1px solid var(--cream2);
      transition: background .2s;
    }

    .ci:last-child {
      border-bottom: none;
    }

    .ci:hover {
      background: var(--white);
    }

    .ci-cat {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--gold-d);
      text-transform: uppercase;
      flex-shrink: 0;
      min-width: 38px;
      margin-top: 2px;
    }

    .ci-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 6px;
    }

    .ci-text {
      font-size: 14px;
      font-weight: 400;
      color: var(--mute);
      line-height: 1.55;
    }

    .ci-text strong {
      font-weight: 700;
      color: var(--navy);
    }

    /* REVIEWS */
    .reviews {
      background: var(--white);
    }

    .reviews-head {
      margin-bottom: 56px;
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .rv {
      background: var(--cream-b);
      border: 1px solid var(--cream2);
      border-radius: var(--r);
      padding: 28px;
      box-shadow: 0 2px 12px rgba(13, 27, 42, .05);
      transition: box-shadow .2s, transform .2s;
    }

    .rv:hover {
      box-shadow: 0 8px 32px rgba(13, 27, 42, .09);
      transform: translateY(-3px);
    }

    .rv-quote {
      font-size: 48px;
      font-weight: 900;
      color: rgba(200, 169, 110, .15);
      line-height: 1;
      margin-bottom: 10px;
    }

    .rv-text {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.85;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .rv-from {
      font-size: 12px;
      font-weight: 400;
      color: var(--soft);
      border-top: 1px solid var(--cream2);
      padding-top: 13px;
    }

    .rv-from span {
      color: var(--gold-d);
      font-weight: 600;
    }

    /* HOW */
    .how {
      background: var(--cream);
    }

    .how-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 56px;
      border: 1px solid var(--cream2);
      border-radius: var(--r);
      overflow: hidden;
    }

    .hs {
      padding: 36px 28px;
      background: var(--white);
      border-right: 1px solid var(--cream2);
      position: relative;
      transition: background .2s;
    }

    .hs:last-child {
      border-right: none;
    }

    .hs:hover {
      background: var(--cream);
    }

    .hs-n {
      font-size: 44px;
      font-weight: 900;
      color: var(--cream2);
      line-height: 1;
      margin-bottom: 14px;
      transition: color .2s;
    }

    .hs:hover .hs-n {
      color: var(--gold-l);
    }

    .hs-t {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .hs-d {
      font-size: 13px;
      font-weight: 400;
      line-height: 1.8;
      color: var(--mute);
    }

    .hs-arr {
      position: absolute;
      top: 30px;
      right: -10px;
      width: 20px;
      height: 20px;
      background: var(--cream);
      border: 1px solid var(--cream2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      color: var(--gold);
      z-index: 1;
    }

    .hs:last-child .hs-arr {
      display: none;
    }

    /* FINAL CTA */
    .final-cta {
      background: var(--navy);
      text-align: center;
      padding: 120px 40px;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200, 169, 110, .06) 0%, transparent 70%);
    }

    .final-cta-inner {
      position: relative;
      z-index: 1;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .final-h {
      font-size: clamp(26px, 3vw, 42px);
      font-weight: 700;
      line-height: 1.3;
      color: var(--white);
      margin-bottom: 16px;
    }

    .final-h em {
      font-style: normal;
      color: var(--gold);
    }

    .final-p {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.8;
      color: var(--on-dark-s);
      max-width: 480px;
      margin: 0 auto 10px;
    }

    .final-p2 {
      font-size: 13px;
      color: rgba(255, 255, 255, .3);
      margin: 0 auto 44px;
    }

    .final-btns {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .final-btn-s {
      font-size: 14px;
      font-weight: 500;
      padding: 15px 32px;
      background: transparent;
      color: var(--on-dark);
      border: 1.5px solid rgba(255, 255, 255, .22);
      border-radius: var(--r);
      text-decoration: none;
      transition: all .25s;
      display: inline-block;
    }

    .final-btn-s:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* FOOTER */
    footer {
      background: var(--navy-deep);
      padding: 64px 40px;
    }

    .footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 56px;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .f-brand-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .f-brand-sub {
      font-size: 12px;
      color: var(--gold);
      letter-spacing: .1em;
      display: block;
      margin-bottom: 14px;
    }

    .f-desc {
      font-size: 13px;
      font-weight: 400;
      line-height: 1.8;
      color: rgba(255, 255, 255, .35);
    }

    .footer-nav h4 {
      font-size: 11px;
      letter-spacing: .12em;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav a {
      font-size: 13px;
      color: rgba(255, 255, 255, .45);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-nav a:hover {
      color: var(--gold);
    }

    .footer-contact h4 {
      font-size: 11px;
      letter-spacing: .12em;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .fc-item {
      font-size: 13px;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 8px;
      line-height: 1.7;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .f-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, .25);
    }

    .f-links {
      display: flex;
      gap: 20px;
    }

    .f-links a {
      font-size: 12px;
      color: rgba(255, 255, 255, .3);
      text-decoration: none;
      transition: color .2s;
    }

    .f-links a:hover {
      color: var(--gold);
    }

    /* ANIM */
    .fu {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .fu.vis {
      opacity: 1;
      transform: none;
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {

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

      .hamburger {
        display: flex;
      }

      .tools-head,
      .about-inner {
        grid-template-columns: 1fr;
      }

      .tools-grid,
      .review-grid,
      .services-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 24px 40px;
      }
    }

    @media(max-width:768px) {
      .hero-inner {
        padding: 88px 24px 52px;
      }

      .hero-h {
        font-size: clamp(40px, 9vw, 56px);
        line-height: 1.22;
      }

      .hero-lead {
        font-size: 15px;
        margin-bottom: 36px;
      }

      .hero-btns {
        gap: 12px;
      }

      .hero-bg-text {
        font-size: 130px;
        right: -8px;
        bottom: 80px;
        opacity: .12;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 24px;
        gap: 0;
      }

      .hstat {
        border-right: none;
        padding: 12px 0;
      }

      .hstat:nth-child(odd) {
        border-right: 1px solid rgba(200, 169, 110, .14);
        padding-right: 20px;
      }

      .hstat:nth-child(even) {
        padding-left: 20px;
      }

      .nav-inner {
        padding: 14px 20px;
      }

      .sec {
        padding: 72px 20px;
      }

      .services-grid,
      .tools-grid,
      .review-grid {
        grid-template-columns: 1fr;
      }

      .about-inner {
        grid-template-columns: 1fr;
      }

      .how-steps {
        grid-template-columns: 1fr 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .final-cta {
        padding: 72px 20px;
      }

      .final-btns {
        flex-direction: column;
        gap: 12px;
      }

      .final-btns a {
        width: 100%;
      }
    }

    @media(max-width:480px) {
      .hero-h {
        font-size: 38px;
        line-height: 1.25;
      }

      .how-steps {
        grid-template-columns: 1fr;
      }

      .hs {
        border-right: none;
        border-bottom: 1px solid var(--cream2);
      }

      .hs:last-child {
        border-bottom: none;
      }

      .hs-arr {
        display: none;
      }
    }
