    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #faf8f4; --white: #ffffff; --dark: #1c1208; --mid: #5a4a32;
      --light: #a08060; --accent: #c9963a; --accent-light: #f5ecd8;
      --border: #e8dcc8; --serif: 'Cormorant Garamond', serif; --sans: 'DM Sans', sans-serif;
      --gold: #dda650; --gold-dark: #b07828; --brown: #1c1208;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--sans); background: var(--bg); color: var(--dark); overflow-x: hidden; }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(250,248,244,0.95); backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border); padding: 0 6vw;
      display: flex; align-items: center; justify-content: space-between; height: 66px;
    }
    .nav-logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
    .nav-logo img { height: 52px; width: 52px; object-fit: contain; }
    .nav-logo-text { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.04em; color: var(--dark); }
    .nav-logo-text span { color: var(--gold); }
    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase; color: var(--mid); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--accent); }
    .nav-tg { display: flex; align-items: center; gap: 0.45rem; background: #0088cc; color: #fff; text-decoration: none; padding: 0.48rem 1.15rem; border-radius: 2px; font-size: 0.8rem; font-weight: 500; transition: background 0.2s, transform 0.2s; }
    .nav-tg:hover { background: #0077b3; transform: translateY(-1px); }
    .nav-tg svg { width: 15px; height: 15px; fill: #fff; }

    .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 66px; }
    .hero-left { display: flex; flex-direction: column; justify-content: center; padding: 6vh 5vw 6vh 8vw; }
    .hero-logo-big { margin-bottom: 1.6rem; }
    .hero-logo-big img { height: 110px; width: 110px; object-fit: contain; filter: drop-shadow(0 4px 20px rgba(221,166,80,0.25)); }
    .hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.8rem; }
    .hero-tag::before { content: ''; display: block; width: 26px; height: 1px; background: var(--accent); }
    .hero-title { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.1; color: var(--dark); margin-bottom: 1.6rem; }
    .hero-title em { font-style: italic; color: var(--gold); }
    .hero-desc { font-size: 0.97rem; line-height: 1.8; color: var(--mid); max-width: 400px; margin-bottom: 2.8rem; }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary { background: var(--brown); color: #fff; padding: 0.85rem 2rem; text-decoration: none; font-size: 0.83rem; font-weight: 500; letter-spacing: 0.04em; border-radius: 2px; transition: background 0.2s, transform 0.2s; }
    .btn-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }
    .btn-outline { border: 1px solid var(--border); color: var(--mid); padding: 0.85rem 2rem; text-decoration: none; font-size: 0.83rem; border-radius: 2px; transition: all 0.2s; }
    .btn-outline:hover { border-color: var(--dark); color: var(--dark); }
    .hero-right { position: relative; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #2a1d0a 0%, #1c1208 60%, #0e0904 100%); }
    .hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, rgba(221,166,80,0.15) 0%, transparent 60%); }
    .hero-panel { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; padding: 2rem; }
    .hero-panel-logo img { width: 110px; height: 110px; object-fit: contain; filter: drop-shadow(0 0 24px rgba(221,166,80,0.4)); }
    .hero-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(221,166,80,0.12); border-radius: 8px; overflow: hidden; width: 100%; max-width: 340px; }
    .hero-panel-card { background: rgba(255,255,255,0.04); padding: 1.2rem 1rem; display: flex; flex-direction: column; gap: 0.3rem; transition: background 0.2s; }
    .hero-panel-card:hover { background: rgba(221,166,80,0.08); }
    .hero-panel-icon { font-size: 1.1rem; margin-bottom: 0.2rem; }
    .hero-panel-val { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--gold); line-height: 1; }
    .hero-panel-key { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.03em; line-height: 1.4; }
    .hero-float { display: none; }
    .hero-float-row { display: flex; align-items: center; gap: 1rem; }
    .hero-float-row + .hero-float-row { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
    .hero-float-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 8px rgba(221,166,80,0.7); }
    .hero-float-dot.gold { background: #fff; opacity: 0.6; box-shadow: none; }
    .hero-float-num { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: #fff; line-height: 1; }
    .hero-float-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 0.15rem; letter-spacing: 0.03em; }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

    .pricing { padding: 7rem 8vw; background: var(--white); }
    .section-tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem; }
    .section-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); }
    .section-title { font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 400; line-height: 1.2; color: var(--dark); margin-bottom: 3.5rem; }
    .section-title em { font-style: italic; color: var(--gold); }
    .plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); }
    .plan { background: var(--white); padding: 2.5rem 2rem; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
    .plan:hover { transform: translateY(-5px); z-index: 1; box-shadow: 0 24px 50px rgba(0,0,0,0.09); }
    .plan.featured { background: var(--brown); }
    .plan-badge { display: inline-block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: var(--gold); color: #1c1208; padding: 0.25rem 0.7rem; border-radius: 20px; margin-bottom: 1.2rem; }
    .plan-period { font-family: var(--serif); font-size: 1rem; color: var(--light); margin-bottom: 0.5rem; }
    .plan.featured .plan-period { color: rgba(255,255,255,0.45); }
    .plan-price { font-family: var(--serif); font-size: 3.2rem; font-weight: 500; line-height: 1; color: var(--dark); margin-bottom: 0.4rem; }
    .plan-price span { font-size: 1.2rem; font-weight: 300; color: var(--light); }
    .plan.featured .plan-price { color: #fff; }
    .plan.featured .plan-price span { color: rgba(255,255,255,0.4); }
    .plan-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.65; margin: 1rem 0 1.8rem; }
    .plan.featured .plan-desc { color: rgba(255,255,255,0.5); }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
    .plan-features li { font-size: 0.82rem; color: var(--mid); display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5; }
    .plan-features li::before { content: '✓'; color: var(--accent); font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }
    .plan.featured .plan-features li { color: rgba(255,255,255,0.6); }
    .plan.featured .plan-features li::before { color: #7bc99a; }
    .plan-btn { display: block; text-align: center; text-decoration: none; padding: 0.8rem; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; border-radius: 2px; transition: all 0.2s; }
    .plan-btn.dark { background: var(--brown); color: #fff; }
    .plan-btn.dark:hover { background: var(--gold); color: #1c1208; }
    .plan-btn.light { border: 1px solid var(--border); color: var(--mid); }
    .plan-btn.light:hover { border-color: var(--dark); color: var(--dark); }
    .plan-btn.green { background: var(--gold); color: #1c1208; font-weight: 600; }
    .plan-btn.green:hover { background: var(--gold-dark); color: #fff; }
    .plan-note { font-size: 0.82rem; color: var(--gold-dark); text-align: center; margin-top: 2rem; line-height: 1.75; background: var(--accent-light); display: inline-block; padding: 0.6rem 1.6rem; border-radius: 20px; width: 100%; box-sizing: border-box; }

    .how { padding: 7rem 8vw; background: var(--bg); }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; }
    .step { position: relative; }
    .step-num { font-family: var(--serif); font-size: 4rem; font-weight: 600; color: var(--accent); opacity: 0.15; line-height: 1; margin-bottom: 0.8rem; }
    .step-title { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.5rem; }
    .step-desc { font-size: 0.83rem; color: var(--mid); line-height: 1.7; }
    .step-arrow { position: absolute; top: 2rem; right: -1rem; color: var(--border); font-size: 1.4rem; }

    .tg-section { padding: 5rem 8vw; background: var(--white); text-align: center; }
    .tg-card { max-width: 580px; margin: 0 auto; background: linear-gradient(135deg, #1c1208 0%, #2a1d0a 100%); border-radius: 8px; padding: 3.5rem; position: relative; overflow: hidden; border: 1px solid rgba(221,166,80,0.15); }
    .tg-card::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: rgba(221,166,80,0.12); border-radius: 50%; }
    .tg-icon { width: 58px; height: 58px; background: #0088cc; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; }
    .tg-icon svg { width: 28px; height: 28px; fill: #fff; }
    .tg-title { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: #fff; margin-bottom: 0.7rem; }
    .tg-desc { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 2rem; }
    .tg-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: #0088cc; color: #fff; text-decoration: none; padding: 0.85rem 2.2rem; border-radius: 2px; font-size: 0.88rem; font-weight: 500; transition: background 0.2s, transform 0.2s; }
    .tg-btn:hover { background: #0077b3; transform: translateY(-2px); }
    .tg-btn svg { width: 17px; height: 17px; fill: #fff; }

    .oferta-section { padding: 7rem 8vw; background: var(--bg); }
    .oferta-title-wrap { text-align: center; margin-bottom: 3rem; }
    .oferta-box { background: var(--white); border: 1px solid var(--border); border-radius: 4px; max-width: 820px; margin: 0 auto; overflow: hidden; }
    .oferta-header { background: var(--brown); padding: 1.8rem 2.8rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .oferta-header h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: #fff; max-width: 520px; line-height: 1.4; }
    .oferta-header span { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; white-space: nowrap; margin-top: 0.2rem; }
    .oferta-body { padding: 2.5rem 2.8rem; }
    .oferta-body h4 { font-family: var(--serif); font-size: 1rem; font-weight: 600; margin: 1.8rem 0 0.6rem; color: var(--dark); }
    .oferta-body h4:first-child { margin-top: 0; }
    .oferta-body p { font-size: 0.84rem; line-height: 1.8; color: var(--mid); margin-bottom: 0.5rem; }
    .oferta-body ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }
    .oferta-body ul li { font-size: 0.84rem; line-height: 1.8; color: var(--mid); }
    .fine { background: #fff5f5; border-left: 3px solid #e05252; padding: 0.9rem 1.2rem; border-radius: 0 2px 2px 0; font-size: 0.83rem; color: #c0392b; margin: 0.8rem 0; line-height: 1.6; }
    .oferta-divider { border: none; border-top: 1px solid var(--border); margin: 1.4rem 0; }
    .oferta-footer { background: var(--accent-light); padding: 1.3rem 2.8rem; font-size: 0.77rem; color: var(--accent); line-height: 1.6; }

    .contact-bar { background: var(--brown); padding: 4rem 8vw; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
    .contact-bar-left h2 { font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 300; color: #fff; margin-bottom: 0.5rem; }
    .contact-bar-left p { font-size: 0.85rem; color: rgba(255,255,255,0.38); }
    .contact-links { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
    .c-btn { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; padding: 0.75rem 1.4rem; border-radius: 4px; font-size: 0.82rem; font-weight: 500; transition: all 0.2s; }
    .c-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
    .c-btn-channel { background: #0088cc; color: #fff; }
    .c-btn-channel svg { fill: #fff; }
    .c-btn-channel:hover { background: #0077b3; transform: translateY(-2px); }
    .c-btn-admin { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.1); }
    .c-btn-admin svg { stroke: rgba(255,255,255,0.6); fill: none; }
    .c-btn-admin:hover { background: rgba(255,255,255,0.13); color: #fff; transform: translateY(-2px); }

    footer { background: #111; padding: 1.6rem 8vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
    footer .logo { font-family: var(--serif); font-size: 1rem; color: rgba(255,255,255,0.35); }
    footer .logo span { color: var(--gold); }
    footer p { font-size: 0.72rem; color: rgba(255,255,255,0.18); }
    footer a { color: rgba(255,255,255,0.25); text-decoration: none; font-size: 0.72rem; }
    footer a:hover { color: rgba(255,255,255,0.5); }

    .fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 860px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { height: auto; min-height: 400px; }

      .plans { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .step-arrow { display: none; }
      .nav-links { display: none; }
      .contact-bar { flex-direction: column; align-items: flex-start; }
      .contact-links { flex-direction: column; align-items: stretch; width: 100%; }
      .c-btn { justify-content: center; }
      footer { flex-direction: column; text-align: center; }
    }
    @media (max-width: 520px) {
      .steps { grid-template-columns: 1fr; }
      .oferta-body { padding: 1.8rem 1.4rem; }
      .oferta-header { padding: 1.4rem; }
      .oferta-footer { padding: 1rem 1.4rem; }
    }
  


    .lang-switcher {
      position: fixed;
      bottom: 1.8rem;
      right: 1.8rem;
      z-index: 200;
      display: inline-flex;
      align-items: center;
      gap: 0.2rem;
      border-radius: 14px;
      background: rgba(255,255,255,0.96);
      padding: 0.3rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.16);
      border: 1px solid rgba(28,18,8,0.08);
      backdrop-filter: blur(10px);
    }
    .lang-btn {
      min-width: 54px;
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.85rem 1.25rem;
      cursor: pointer;
      border: none;
      background: transparent;
      color: var(--dark);
      transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
      font-family: var(--sans);
      line-height: 1;
      border-radius: 10px;
      appearance: none;
      -webkit-appearance: none;
    }
    .lang-btn.active {
      background: linear-gradient(135deg, var(--dark) 0%, #2f1c0d 100%);
      color: #fff;
      box-shadow: 0 6px 16px rgba(28,18,8,0.22);
    }
    .lang-btn:not(.active):hover {
      background: var(--accent-light);
      color: var(--dark);
    }
    .lang-btn:active {
      transform: scale(0.97);
    }


    @media (max-width: 768px) {
      .lang-switcher {
        bottom: 1rem;
        right: 1rem;
      }
      .lang-btn {
        min-width: 50px;
        padding: 0.75rem 1rem;
        font-size: 0.84rem;
      }
    }
