 :root {
      --bg: #fdf8f2;
      --surface: #fff9f2;
      --surface2: #fff3e6;
      --border: #e8ddd0;
      --border2: #d4c8b8;
      --orange: #e8530a;
      --orange2: #ff6b2b;
      --amber: #f5a623;
      --green: #2d7a4f;
      --green-bg: #edf7f1;
      --red: #c0392b;
      --red-bg: #fdf0ee;
      --dark: #2a1f14;
      --text: #3d2e20;
      --muted: #8a7060;
      --muted2: #b8a898;
      --white: #ffffff;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5vw;
      height: 68px;
      background: rgba(253, 248, 242, 0.93);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--orange);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .nav-logo span {
      font-style: italic;
      color: var(--amber);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 0.5rem 1.25rem;
      border-radius: 6px;
      font-weight: 700 !important;
      box-shadow: 0 2px 12px rgba(232, 83, 10, 0.3);
      transition: background 0.2s !important;
    }

    .nav-cta:hover {
      background: var(--orange2) !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--white);
      border-bottom: 2px solid var(--border);
      padding: 1.5rem 5vw;
      flex-direction: column;
      gap: 1rem;
      z-index: 99;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      color: var(--text);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border);
    }

    .mobile-menu .mob-cta {
      background: var(--orange);
      color: var(--white);
      text-align: center;
      padding: 0.8rem;
      border-radius: 6px;
      font-weight: 700;
      border-bottom: none;
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 100px 5vw 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(245, 166, 35, 0.13) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 15% 80%, rgba(232, 83, 10, 0.07) 0%, transparent 60%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--orange);
      background: rgba(232, 83, 10, 0.08);
      border: 1px solid rgba(232, 83, 10, 0.2);
      padding: 0.4rem 0.9rem;
      border-radius: 99px;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      line-height: 1.05;
      color: var(--dark);
      margin-bottom: 1.5rem;
      letter-spacing: -0.03em;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--orange);
    }

    .hero p {
      font-size: 1.1rem;
      line-height: 1.75;
      color: var(--muted);
      max-width: 460px;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--orange);
      color: var(--white);
      padding: 0.9rem 2rem;
      border-radius: 8px;
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 16px rgba(232, 83, 10, 0.35);
      border: 2px solid var(--orange);
    }

    .btn-primary:hover {
      background: var(--orange2);
      border-color: var(--orange2);
      transform: translateY(-2px);
    }

    .btn-outline {
      color: var(--text);
      border: 2px solid var(--border2);
      padding: 0.9rem 2rem;
      border-radius: 8px;
      font-weight: 600;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.2s;
      background: var(--white);
    }

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

    .hero-visual {
      position: relative;
    }

    .hero-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.75rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      animation: float 4s ease-in-out infinite;
      position: relative;
    }
    /* CONTACT BAND */
.contact-band { background: var(--surface2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 5vw; }
.contact-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.contact-band h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.contact-band p { font-size: 0.88rem; color: var(--muted); }
.contact-band-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.contact-band-links a { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.25rem; border-radius: 8px; font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.contact-band-links a:first-child { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(232,83,10,0.3); }
.contact-band-links a:first-child:hover { background: var(--orange2); transform: translateY(-1px); }
.contact-band-links a:last-child { background: var(--white); color: var(--text); border: 1.5px solid var(--border); }
.contact-band-links a:last-child:hover { border-color: var(--orange); color: var(--orange); }

@media (max-width: 600px) { .contact-band-inner { flex-direction: column; align-items: flex-start; } .contact-band-links { width: 100%; } .contact-band-links a { flex: 1; justify-content: center; } }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-10px)
      }
    }

    .hcard-float1 {
      position: absolute;
      top: -16px;
      right: -16px;
      background: var(--orange);
      color: var(--white);
      border-radius: 10px;
      padding: 0.5rem 0.85rem;
      font-size: 0.75rem;
      font-weight: 700;
      box-shadow: 0 4px 16px rgba(232, 83, 10, 0.4);
    }

    .hcard-float2 {
      position: absolute;
      bottom: -12px;
      left: -12px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.5rem 0.85rem;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--green);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .hcard-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.25rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid var(--border);
    }

    .hcard-logo {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--orange), var(--amber));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }

    .hcard-info h3 {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--dark);
    }

    .hcard-info p {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 2px;
    }

    .hcard-open {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--green);
      background: var(--green-bg);
      padding: 3px 8px;
      border-radius: 99px;
      margin-left: auto;
    }

    .hcard-items {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .hcard-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.7rem 0.9rem;
      background: var(--bg);
      border-radius: 10px;
      border: 1px solid transparent;
      transition: border-color 0.2s;
      cursor: pointer;
    }

    .hcard-item:hover {
      border-color: var(--orange);
      background: rgba(232, 83, 10, 0.03);
    }

    .hcard-item-left {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .hcard-item-name {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text);
    }

    .hcard-item-desc {
      font-size: 0.72rem;
      color: var(--muted);
    }

    .hcard-item-price {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--orange);
    }
    /* ── FAQ ── */
.faq-section { padding: 6rem 5vw; background: var(--dark); }
.faq-inner   { max-width: 860px; margin: 0 auto; }
.faq-head    { text-align: center; margin-bottom: 3.5rem; }
.faq-head .section-label { color: var(--amber); }
.faq-head .section-title { color: var(--white); }
.faq-head .section-sub   { color: rgba(255,255,255,0.5); margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: rgba(232,83,10,0.35); }
.faq-item.open  { border-color: rgba(232,83,10,0.45); background: rgba(232,83,10,0.06); }

.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); text-align: left; }
.faq-q-left { display: flex; align-items: center; gap: 0.85rem; }
.faq-q-icon { width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0; background: rgba(232,83,10,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: background 0.2s; }
.faq-item.open .faq-q-icon { background: var(--orange); }

.faq-chevron { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: rgba(255,255,255,0.5); transition: transform 0.3s, border-color 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--orange); color: var(--orange); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.25s; padding: 0 1.5rem; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.35rem; }
.faq-a p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; border-left: 2px solid var(--orange); padding-left: 1rem; }

.faq-cta { margin-top: 3rem; text-align: center; padding: 2rem 2.5rem; border-radius: 16px; background: rgba(232,83,10,0.1); border: 1px solid rgba(232,83,10,0.25); }
.faq-cta p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1rem; }
.faq-cta p strong { color: var(--white); }
.faq-cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.faq-btn-primary { background: var(--orange); color: var(--white); padding: 0.7rem 1.6rem; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem; font-weight: 700; text-decoration: none; transition: background 0.2s; border: 2px solid var(--orange); }
.faq-btn-primary:hover { background: var(--orange2); }
.faq-btn-ghost { color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.15); padding: 0.7rem 1.6rem; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.faq-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

    /* STATS */
    .stats {
      background: var(--orange);
      padding: 3.5rem 5vw;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .stat-num {
      font-family: 'Fraunces', serif;
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -0.03em;
    }

    .stat-label {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.75);
      margin-top: 0.3rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* SEARCH */
    .search-section {
      padding: 6rem 5vw;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.75rem;
      color: var(--orange);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      color: var(--dark);
      margin-bottom: 0.65rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .section-sub {
      color: var(--muted);
      margin-bottom: 2.5rem;
      max-width: 500px;
      line-height: 1.7;
    }

    .search-bar {
      display: flex;
      max-width: 680px;
      border: 2px solid var(--border2);
      border-radius: 10px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .search-bar:focus-within {
      border-color: var(--orange);
      box-shadow: 0 4px 20px rgba(232, 83, 10, 0.15);
    }

    .search-bar input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      padding: 1rem 1.25rem;
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.95rem;
    }

    .search-bar input::placeholder {
      color: var(--muted2);
    }

    .search-bar select {
      background: var(--surface2);
      border: none;
      border-left: 1px solid var(--border);
      color: var(--muted);
      padding: 0 1rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.85rem;
      cursor: pointer;
      outline: none;
      font-weight: 500;
    }

    .search-bar button {
      background: var(--orange);
      border: none;
      padding: 0 1.75rem;
      color: var(--white);
      font-weight: 700;
      cursor: pointer;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      transition: background 0.2s;
    }

    .search-bar button:hover {
      background: var(--orange2);
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }

    .filter-tag {
      background: var(--white);
      border: 1.5px solid var(--border);
      color: var(--muted);
      padding: 0.35rem 0.9rem;
      border-radius: 99px;
      font-size: 0.8rem;
      cursor: pointer;
      transition: all 0.2s;
      font-weight: 500;
    }

    .filter-tag:hover,
    .filter-tag.active {
      border-color: var(--orange);
      color: var(--orange);
      background: rgba(232, 83, 10, 0.05);
    }

    /* CARDS */
    .restaurants-section {
      padding: 0 5vw 6rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .cards-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
    }

    .cards-header h2 {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem;
      color: var(--dark);
      font-weight: 800;
    }

    .view-all {
      color: var(--orange);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 700;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .rcard {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }

    .rcard:hover {
      transform: translateY(-5px);
      border-color: var(--orange);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    }

    .rcard-img {
      height: 170px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
    }

    .rcard-img-1 {
      background: linear-gradient(135deg, #fff0e6, #ffd4a8);
    }

    .rcard-img-2 {
      background: linear-gradient(135deg, #e6f5ec, #b8e6cc);
    }

    .rcard-img-3 {
      background: linear-gradient(135deg, #fff8e1, #ffe082);
    }

    .rcard-img-4 {
      background: linear-gradient(135deg, #e8eeff, #c5ceff);
    }

    .rcard-img-5 {
      background: linear-gradient(135deg, #fff0e8, #ffc8a0);
    }

    .rcard-img-6 {
      background: linear-gradient(135deg, #edfaf1, #a8e6bf);
    }

    .rcard-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(255, 255, 255, 0.93);
      backdrop-filter: blur(6px);
      color: var(--orange);
      font-size: 0.7rem;
      padding: 3px 9px;
      border-radius: 5px;
      font-weight: 700;
      border: 1px solid rgba(232, 83, 10, 0.15);
    }

    .rcard-status {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 0.7rem;
      padding: 3px 9px;
      border-radius: 5px;
      font-weight: 700;
    }

    .open {
      background: var(--green-bg);
      color: var(--green);
    }

    .closed {
      background: var(--red-bg);
      color: var(--red);
    }

    .rcard-body {
      padding: 1.25rem;
    }

    .rcard-name {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      color: var(--dark);
      font-weight: 700;
      margin-bottom: 0.3rem;
    }

    .rcard-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .rcard-cuisine {
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 500;
    }

    .rcard-rating {
      font-size: 0.78rem;
      color: var(--amber);
      font-weight: 700;
    }

    .rcard-info {
      display: flex;
      gap: 1rem;
    }

    .rcard-info span {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .rcard-info span strong {
      color: var(--text);
      font-weight: 600;
    }

    .rcard-menu-preview {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
    }

    .menu-chip {
      background: var(--surface2);
      font-size: 0.72rem;
      color: var(--muted);
      padding: 3px 8px;
      border-radius: 5px;
      border: 1px solid var(--border);
      font-weight: 500;
    }

    .rcard-btn {
      margin-top: 1rem;
      width: 100%;
      padding: 0.6rem;
      background: rgba(232, 83, 10, 0.06);
      border: 1.5px solid rgba(232, 83, 10, 0.2);
      border-radius: 7px;
      color: var(--orange);
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.82rem;
      cursor: pointer;
      transition: all 0.2s;
    }

    .rcard-btn:hover {
      background: var(--orange);
      color: var(--white);
    }

    /* HOW */
    .how {
      background: var(--dark);
      padding: 6rem 5vw;
    }

    .how-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .how-title {
      text-align: center;
      margin-bottom: 4rem;
    }

    .how-title .section-label {
      color: var(--amber);
    }

    .how-title .section-title {
      color: var(--white);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .step {
      text-align: center;
    }

    .step-num {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(232, 83, 10, 0.15);
      border: 2px solid rgba(232, 83, 10, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--orange2);
      margin: 0 auto 1.25rem;
    }

    .step h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.15rem;
      color: var(--white);
      font-weight: 700;
      margin-bottom: 0.6rem;
    }

    .step p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.65;
    }

    /* REGISTER */
    .register-section {
      padding: 6rem 5vw;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .register-form {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    }

    .register-form h2 {
      font-family: 'Fraunces', serif;
      font-size: 1.7rem;
      color: var(--dark);
      font-weight: 800;
      margin-bottom: 0.4rem;
    }

    .register-form>p {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 0.78rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 0.75rem 1rem;
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(232, 83, 10, 0.1);
    }

    .form-group input::placeholder {
      color: var(--muted2);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .register-submit {
      width: 100%;
      background: var(--orange);
      border: none;
      border-radius: 8px;
      padding: 0.95rem;
      color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      margin-top: 0.5rem;
      transition: background 0.2s, transform 0.2s;
      box-shadow: 0 4px 16px rgba(232, 83, 10, 0.3);
    }

    .register-submit:hover {
      background: var(--orange2);
      transform: translateY(-1px);
    }

    .register-info h2 {
      font-family: 'Fraunces', serif;
      font-size: 2.1rem;
      color: var(--dark);
      font-weight: 900;
      margin-bottom: 1rem;
      letter-spacing: -0.03em;
    }

    .register-info>p {
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .features-list {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .feature-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .feature-icon-wrap {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      flex-shrink: 0;
      background: rgba(232, 83, 10, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .feature-item h4 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text);
    }

    .feature-item p {
      font-size: 0.82rem;
      color: var(--muted);
      margin-top: 2px;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      padding: 3.5rem 5vw;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
    }

    .footer-brand .nav-logo {
      display: block;
      margin-bottom: 1rem;
    }

    .footer-brand p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.7;
    }

    .footer-col h4 {
      font-size: 0.78rem;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .footer-col a {
      display: block;
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.85rem;
      text-decoration: none;
      margin-bottom: 0.5rem;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--orange2);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.35);
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

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

      .hero-visual {
        display: none;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

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

      .register-section {
        grid-template-columns: 1fr;
      }

      .register-info {
        order: -1;
      }

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

      .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

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

      .hero-actions {
        flex-direction: column;
      }

      .search-bar select {
        display: none;
      }
    }

    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.65s forwards;
    }

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

    .fade-up:nth-child(1) {
      animation-delay: .05s
    }

    .fade-up:nth-child(2) {
      animation-delay: .15s
    }

    .fade-up:nth-child(3) {
      animation-delay: .25s
    }

    .fade-up:nth-child(4) {
      animation-delay: .35s
    }