    :root {
      --bg-primary: #0a0a0a;
      --bg-secondary: #111111;
      --bg-card: #161616;
      --bg-card-hover: #1c1c1c;
      --text-primary: #ffffff;
      --text-secondary: #808080;
      --text-muted: #505050;
      --border: #222222;
      --border-hover: #383838;
      --accent: #ffffff;
      --shadow-soft: 0 18px 70px rgba(0,0,0,.34);
      --shadow-lift: 0 26px 90px rgba(0,0,0,.55);
      --success: #22c55e;
      --error: #ef4444;
      --gradient: linear-gradient(135deg, #fff 0%, #888 100%);
      --container: 1200px;
      --gutter: 24px;
      --header-h: 72px;
      --r: 8px;
      --r-sm: 8px;
      --r-pill: 999px;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ── Layout ── */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    /* ── Header ── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding-top: env(safe-area-inset-top);
      background: rgba(10, 10, 10, .88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: background .3s ease, box-shadow .3s ease;
    }

    header.scrolled {
      background: rgba(10, 10, 10, .98);
      box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.4);
    }

    nav {
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

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

    .logo img {
      height: 30px;
      width: auto;
      display: block;
      transition: opacity .2s;
    }

    .logo:hover img { opacity: .75; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: color .2s;
      outline: none;
    }

    .nav-links a:hover { color: var(--text-primary); }
    .nav-links a:focus-visible,
    .logo:focus-visible,
    .filter-btn:focus-visible,
    .product-image-link:focus-visible,
    .product-action:focus-visible,
    .contact-card:focus-visible,
    .scroll-top:focus-visible {
      outline: 2px solid rgba(255,255,255,.72);
      outline-offset: 4px;
    }

    .nav-cta {
      padding: 9px 20px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      background: transparent;
      color: var(--text-primary) !important;
      font-size: .82rem !important;
      font-weight: 700 !important;
      letter-spacing: .06em !important;
      text-transform: uppercase !important;
      transition: background .2s, border-color .2s !important;
    }

    .nav-cta:hover {
      background: rgba(255,255,255,.08) !important;
      border-color: rgba(255,255,255,.35) !important;
      color: var(--text-primary) !important;
    }

    @media (max-width: 640px) {
      .nav-links { gap: 18px; }
      .nav-links a:not(.nav-cta) { display: none; }
    }

    /* ── Shop Section ── */
    #shop {
      padding: 72px 0;
      padding-top: calc(var(--header-h) + 48px);
    }

    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 32px;
      gap: 16px;
    }

    .section-header > div { max-width: 620px; }

    .section-label {
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 900;
      letter-spacing: 0;
      line-height: 1.1;
    }

    /* Filters */
    .filter-bar {
      display: flex;
      gap: 8px;
      margin-bottom: 32px;
      overflow-x: auto;
      padding-bottom: 2px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .filter-bar::-webkit-scrollbar { display: none; }

    .filter-btn {
      flex: 0 0 auto;
      padding: 9px 20px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-muted);
      font-family: inherit;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
      min-height: 40px;
    }

    .filter-btn:hover {
      border-color: var(--border-hover);
      color: var(--text-secondary);
    }

    .filter-btn.active {
      background: var(--text-primary);
      border-color: var(--text-primary);
      color: var(--bg-primary);
    }

    .price-note {
      margin: -18px 0 28px;
      color: var(--text-secondary);
      font-size: .82rem;
      line-height: 1.55;
    }

    /* Product Grid */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .product-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      min-width: 0;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      color: inherit;
      transition: border-color .2s, transform .2s;
      -webkit-tap-highlight-color: transparent;
    }

    .product-card:hover,
    .product-card:focus-within {
      border-color: var(--border-hover);
      transform: translateY(-2px);
    }

    .product-card.is-coming-soon {
      cursor: not-allowed;
      background: #0c0c0c;
      border-color: #161616;
    }

    .product-card.is-coming-soon:hover,
    .product-card.is-coming-soon:focus-within {
      border-color: #1d1d1d;
      transform: none;
    }

    .product-card.is-coming-soon .product-image {
      background: #080808;
    }

    .product-card.is-coming-soon .product-image img {
      filter: grayscale(1) brightness(.46) contrast(.95) blur(.7px);
      opacity: .58;
    }

    .product-card.is-coming-soon .product-info {
      border-top-color: #161616;
      background: #0c0c0c;
    }

    .product-card.is-coming-soon .product-title,
    .product-card.is-coming-soon .product-price {
      opacity: .58;
    }

    .product-image-link {
      display: block;
      color: inherit;
      text-decoration: none;
      outline: none;
    }

    .product-image-link.is-disabled {
      cursor: not-allowed;
      pointer-events: none;
    }

    .product-image {
      position: relative;
      display: block;
      aspect-ratio: 1;
      background: var(--bg-secondary);
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }

    .product-card:hover .product-image img { transform: scale(1.025); }
    .product-card.is-coming-soon:hover .product-image img { transform: none; }

    .product-info {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 16px;
      border-top: 1px solid var(--border);
      background: var(--bg-card);
    }

    .product-category {
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .product-title {
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0;
      line-height: 1.2;
    }

    .product-price {
      margin-top: 10px;
      font-size: 1.1rem;
      font-weight: 900;
      letter-spacing: 0;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .product-actions {
      display: grid;
      gap: 8px;
      margin-top: 0;
      padding-top: 15px;
    }

    .coming-soon-panel {
      display: flex;
      flex: 1;
      flex-direction: column;
      justify-content: center;
      min-height: 100px;
      margin-top: 15px;
      padding: 16px;
      border: 1px solid #1d1d1d;
      border-radius: 8px;
      background: #101010;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    }

    .coming-soon-label {
      color: rgba(255,255,255,.68);
      font-size: .72rem;
      font-weight: 900;
      line-height: 1;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .coming-soon-note {
      margin-top: 9px;
      max-width: 18rem;
      color: var(--text-muted);
      opacity: .78;
      font-size: .74rem;
      font-weight: 650;
      line-height: 1.45;
    }

    .product-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-width: 0;
      min-height: 46px;
      padding: 0 14px;
      border-radius: 8px;
      border: 1px solid var(--border);
      font-family: inherit;
      font-size: .68rem;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: .08em;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase;
      white-space: normal;
      cursor: pointer;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
      transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
    }

    .product-action:hover {
      transform: translateY(-1px);
    }

    .product-action-primary {
      background: var(--text-primary);
      border-color: var(--text-primary);
      color: var(--bg-primary);
      box-shadow: 0 4px 14px rgba(0,0,0,.2);
    }

    .product-action-primary:hover {
      box-shadow: 0 8px 18px rgba(0,0,0,.24);
    }

    .product-action-secondary {
      background: #202020;
      border-color: var(--border-hover);
      color: var(--text-primary);
    }

    .product-action-secondary:hover {
      border-color: rgba(255,255,255,.3);
      background: #262626;
      color: var(--text-primary);
    }

    .product-action-sold-out {
      background: #202020;
      border-color: var(--border-hover);
      color: var(--text-muted);
      cursor: not-allowed;
      pointer-events: none;
      opacity: .68;
    }

    .product-action.is-disabled {
      border-color: var(--border);
      background: rgba(255,255,255,.03);
      color: var(--text-muted);
      cursor: not-allowed;
      pointer-events: none;
    }

    @media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 760px) {
      :root { --gutter: 18px; --header-h: 66px; }
      #shop { padding-top: calc(var(--header-h) + 32px); }
      .section-header { align-items: flex-start; flex-direction: column; margin-bottom: 24px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .product-info { padding: 12px; }
      .product-category { font-size: .62rem; letter-spacing: .12em; margin-bottom: 5px; }
      .product-title { font-size: .92rem; line-height: 1.18; }
      .product-price { margin-top: 8px; font-size: 1rem; }
      .product-actions { gap: 7px; padding-top: 12px; }
      .product-action { min-height: 40px; padding: 0 10px; font-size: .62rem; letter-spacing: .07em; }
      .coming-soon-panel { min-height: 88px; margin-top: 12px; padding: 12px; }
      .coming-soon-label { font-size: .64rem; letter-spacing: .08em; }
      .coming-soon-note { margin-top: 7px; font-size: .68rem; line-height: 1.38; }
    }
    @media (max-width: 380px) {
      .products-grid { grid-template-columns: 1fr; }
      .product-info { padding: 14px; }
      .product-title { font-size: .98rem; }
      .product-action { min-height: 42px; }
    }

    /* ── Why Us Section ── */
    #guarantee {
      padding: 80px 0;
      border-top: 1px solid var(--border);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .why-left {}

    .why-right {
      position: sticky;
      top: calc(var(--header-h) + 24px);
    }

    .media-card {
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      background: var(--bg-card);
    }

    .media-card video {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center 38%;
      display: block;
    }

    .media-caption {
      padding: 20px 22px 22px;
      border-top: 1px solid var(--border);
    }

    .media-kicker {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .media-kicker::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 8px rgba(34,197,94,.5);
      flex-shrink: 0;
    }

    .media-caption p {
      font-size: .88rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .why-intro {
      margin-bottom: 40px;
    }

    .why-intro p {
      font-size: 1.05rem;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-top: 16px;
    }

    .features-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 40px;
    }

    .feature-item {
      padding: 20px;
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--bg-card);
      transition: border-color .2s, transform .2s;
    }

    .feature-item:hover {
      border-color: var(--border-hover);
      transform: translateY(-2px);
    }

    .feature-icon {
      font-size: 1.3rem;
      margin-bottom: 10px;
      display: block;
    }

    .feature-item h3 {
      font-size: .92rem;
      font-weight: 800;
      letter-spacing: -.01em;
      margin-bottom: 6px;
    }

    .feature-item p {
      font-size: .82rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    .feature-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      padding: 9px 14px;
      border: 1px solid var(--border-hover);
      border-radius: 8px;
      background: rgba(255,255,255,.04);
      color: var(--text-primary);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, border-color .2s, transform .2s, color .2s;
    }

    .feature-link::after {
      content: '↗';
      font-size: .82rem;
      line-height: 1;
      transition: transform .2s;
    }

    .feature-link:hover {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.32);
      color: var(--text-primary);
      transform: translateY(-1px);
    }

    .feature-link:hover::after {
      transform: translate(2px, -1px);
    }

    .guarantee-block {
      margin-top: 64px;
    }

    .guarantee-block .section-label { margin-bottom: 16px; }

    .guarantee-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
    }

    .guarantee-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 900;
      letter-spacing: 0;
      line-height: 1.1;
    }

    .guarantee-header p {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 500px;
    }

    .guarantee-card {
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      background: var(--bg-card);
    }

    .guarantee-card-head {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 0;
      background: var(--bg-secondary);
      border-bottom: 1px solid var(--border);
    }

    .guarantee-card-head div {
      padding: 14px 20px;
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .guarantee-card-head div + div {
      border-left: 1px solid var(--border);
    }

    .guarantee-card-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
    }

    .guarantee-card-row div {
      padding: 22px 20px;
      font-size: .9rem;
      line-height: 1.7;
    }

    .guarantee-card-row .check-item {
      display: flex;
    }

    .guarantee-card-row div + div {
      border-left: 1px solid var(--border);
    }

    .guarantee-label {
      font-weight: 800;
      font-size: .9rem;
      color: var(--text-primary);
    }

    .check-item {
      color: var(--text-secondary);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .check-item::before {
      content: '✓';
      flex-shrink: 0;
      width: 20px; height: 20px;
      border-radius: 50%;
      font-size: .68rem;
      font-weight: 900;
      color: var(--success);
      background: rgba(34,197,94,.12);
      line-height: 20px;
      text-align: center;
      margin-top: 2px;
    }

    .check-item.good { color: var(--text-primary); }
    .check-item.good::before { color: var(--success); }

    @media (max-width: 900px) {
      #guarantee {
        padding: 64px 0;
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .why-right {
        position: static;
      }

      .why-intro {
        margin-bottom: 0;
      }

      .why-intro p {
        max-width: 680px;
      }

      .features-list {
        gap: 10px;
        margin-top: 20px;
      }

      .media-card {
        max-width: 420px;
      }

      .guarantee-block {
        margin-top: 40px;
      }

      .guarantee-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px;
      }

      .guarantee-header p {
        max-width: 640px;
      }

      .guarantee-card {
        display: grid;
        grid-template-columns: 1fr;
      }

      .guarantee-card-head,
      .guarantee-card-row {
        display: contents;
      }

      .guarantee-card-head div,
      .guarantee-card-row div {
        border-left: 0;
        border-bottom: 1px solid var(--border);
      }

      .guarantee-card-head div {
        padding: 12px 16px;
        background: var(--bg-secondary);
      }

      .guarantee-card-row div {
        padding: 16px;
      }

      .guarantee-card-head div:nth-child(1) { order: 1; }
      .guarantee-card-row div:nth-child(1) { order: 2; }
      .guarantee-card-head div:nth-child(2) { order: 3; }
      .guarantee-card-row div:nth-child(2) { order: 4; }
      .guarantee-card-head div:nth-child(3) { order: 5; }
      .guarantee-card-row div:nth-child(3) {
        order: 6;
        border-bottom: 0;
      }
    }

    @media (max-width: 600px) {
      #guarantee {
        padding: 52px 0 56px;
      }

      .why-grid {
        gap: 18px;
      }

      .why-intro p {
        font-size: .9rem;
        line-height: 1.65;
        margin-top: 12px;
      }

      .features-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 18px;
      }

      .feature-item {
        min-height: 154px;
        padding: 13px;
        display: flex;
        flex-direction: column;
      }

      .feature-icon {
        font-size: 1.05rem;
        margin-bottom: 8px;
      }

      .feature-item h3 {
        font-size: .8rem;
        line-height: 1.2;
        margin-bottom: 5px;
      }

      .feature-item p {
        font-size: .72rem;
        line-height: 1.45;
        flex: 1;
      }

      .feature-link {
        width: fit-content;
        max-width: 100%;
        justify-content: center;
        margin-top: 12px;
        padding: 8px 10px;
        min-height: 34px;
        font-size: .58rem;
        line-height: 1;
        white-space: nowrap;
      }

      .media-card {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: var(--r);
      }

      .media-caption {
        padding: 14px;
      }

      .media-caption p {
        font-size: .78rem;
        line-height: 1.55;
      }

      .guarantee-block {
        margin-top: 34px;
      }

      .guarantee-block .section-label {
        margin-bottom: 10px;
      }

      .guarantee-header {
        margin-bottom: 12px;
      }

      .guarantee-header h2 {
        font-size: 1.45rem;
      }

      .guarantee-header p {
        font-size: .86rem;
        line-height: 1.6;
      }

      .guarantee-card-head div {
        padding: 10px 14px;
        font-size: .62rem;
      }

      .guarantee-card-row div {
        padding: 14px;
        font-size: .8rem;
        line-height: 1.55;
      }

      .check-item {
        gap: 9px;
      }

      .check-item::before {
        width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: .62rem;
      }
    }

    @media (max-width: 380px) {
      .features-list {
        gap: 7px;
      }

      .feature-item {
        min-height: 150px;
        padding: 11px;
      }

      .feature-item h3 {
        font-size: .76rem;
      }

      .feature-item p {
        font-size: .68rem;
      }

      .feature-link {
        letter-spacing: .04em;
        padding-inline: 8px;
        font-size: .54rem;
      }
    }

    /* ── Footer ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 64px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 64px;
      margin-bottom: 64px;
    }

    .footer-brand .logo { margin-bottom: 16px; }
    .footer-brand p {
      font-size: .88rem;
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-contact-label {
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .contact-card {
      display: flex;
      flex-direction: column;
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--bg-card);
      text-decoration: none;
      transition: border-color .2s, transform .2s;
    }

    .contact-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-2px);
    }

    .contact-card--whatsapp {
      background: linear-gradient(180deg, rgba(18,140,74,.18) 0%, rgba(15,109,58,.08) 100%), var(--bg-card);
      border-color: rgba(18,140,74,.4);
      box-shadow: 0 10px 24px rgba(0,0,0,.18);
    }

    .contact-card--whatsapp:hover {
      border-color: rgba(18,140,74,.6);
      box-shadow: 0 14px 30px rgba(0,0,0,.24);
    }

    .contact-icon {
      width: 36px; height: 36px;
      border-radius: var(--r-sm);
      background: rgba(255,255,255,.06);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      border: 1px solid rgba(255,255,255,.06);
    }

    .contact-card--whatsapp .contact-icon {
      background: linear-gradient(135deg, #128c4a 0%, #0f6d3a 100%);
      border-color: rgba(18,140,74,.45);
    }

    .contact-icon svg,
    .contact-icon img {
      width: 18px; height: 18px;
      display: block;
    }

    .contact-icon svg { fill: var(--text-secondary); }
    .contact-icon img {
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(56%) sepia(0%) saturate(0%) hue-rotate(184deg) brightness(93%) contrast(88%);
    }

    .contact-card--whatsapp .contact-icon svg { fill: #ffffff; }

    .contact-card h4 {
      font-size: .85rem;
      font-weight: 800;
      letter-spacing: 0;
      margin-bottom: 4px;
      color: var(--text-primary);
    }

    .contact-card p {
      font-size: .75rem;
      color: var(--text-muted);
      line-height: 1.5;
      flex: 1;
    }

    .contact-card--whatsapp p { color: rgba(255,255,255,.82); }

    .contact-action {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 12px;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-secondary);
      transition: color .2s;
    }

    .contact-card:hover .contact-action { color: var(--text-primary); }
    .contact-card--whatsapp .contact-action { color: #ffffff; }

    #contact { scroll-margin-top: calc(var(--header-h) + 16px); }

    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .contact-grid { grid-template-columns: repeat(2, 1fr); }
    }

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

    /* Legal blocks */
    .legal-blocks {
      border-top: 1px solid var(--border);
      padding: 48px 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .legal-block h3 {
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 0;
      margin-bottom: 16px;
      color: var(--text-primary);
    }

    .legal-block h4 {
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 20px;
      margin-bottom: 8px;
    }

    .legal-block h4:first-child { margin-top: 0; }

    .legal-block p {
      font-size: .85rem;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-bottom: 8px;
    }

    @media (max-width: 760px) {
      .legal-blocks { grid-template-columns: 1fr; gap: 32px; }
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: .78rem;
      color: var(--text-muted);
    }

    /* ── Scroll to top ── */
    .scroll-top {
      position: fixed;
      bottom: max(24px, env(safe-area-inset-bottom));
      right: max(24px, env(safe-area-inset-right));
      width: 44px; height: 44px;
      border-radius: 8px;
      border: 1px solid var(--border-hover);
      background: var(--bg-card);
      color: var(--text-secondary);
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all .25s;
      z-index: 99;
    }

    .scroll-top.visible { opacity: 1; visibility: visible; }
    .scroll-top:hover {
      background: var(--text-primary);
      color: var(--bg-primary);
      border-color: var(--text-primary);
      transform: translateY(-3px);
    }

    /* ── Animations ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .animate-in {
      animation: fadeUp .6s cubic-bezier(.22,1,.36,1) both;
    }

    .delay-1 { animation-delay: .1s; }
    .delay-2 { animation-delay: .2s; }
    .delay-3 { animation-delay: .3s; }
    .delay-4 { animation-delay: .4s; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }
    }

    section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
