/* ===== VARIABLES ===== */
    :root {
      --red: #C8382A;
      --red-dark: #9e2a1e;
      --red-light: #e05a4c;
      --cream: #FFF8F6;
      --white: #ffffff;
      --ink: #1a0a09;
      --muted: #8a6460;
      --radius: 18px;
      --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Mulish', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ===== NOISE TEXTURE OVERLAY ===== */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

    /* ===== TYPOGRAPHY ===== */
    h1,h2,h3 { font-family: 'Unbounded', sans-serif; }

    /* ===== NAV ===== */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 5vw;
      background: rgba(255,248,246,0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1.5px solid rgba(200,56,42,0.12);
      transition: box-shadow var(--transition);
    }
    nav.scrolled { box-shadow: 0 4px 32px rgba(200,56,42,0.08); }

    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
    }
    .logo-icon {
      width: 40px; height: 40px;
      background: var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .logo-icon svg { width: 22px; height: 22px; fill: white; }
    .logo-text {
      font-family: 'Unbounded', sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--ink);
      line-height: 1.1;
    }

    .logo-icon img {
        height: 100%;
    }

    .logo-text span { color: var(--red); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-decoration: none;
      color: var(--muted);
      text-transform: uppercase;
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--red); }

    .nav-cta {
      background: var(--red);
      color: white !important;
      padding: 10px 22px;
      border-radius: 30px;
      transition: background var(--transition), transform var(--transition) !important;
    }
    .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .burger span {
      display: block;
      width: 26px; height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 73px; left: 0; right: 0;
      background: var(--cream);
      padding: 24px 5vw 32px;
      border-bottom: 1.5px solid rgba(200,56,42,0.12);
      z-index: 999;
      flex-direction: column;
      gap: 18px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Unbounded', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      color: var(--ink);
      padding: 10px 0;
      border-bottom: 1px solid rgba(200,56,42,0.1);
    }
    .mobile-menu a:hover { color: var(--red); }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 5vw 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-circle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-bg-circle-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(200,56,42,0.08) 0%, transparent 70%);
      top: -100px; right: -100px;
    }
    .hero-bg-circle-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(200,56,42,0.05) 0%, transparent 70%);
      bottom: -80px; left: -80px;
    }

    /* floating dots pattern */
    .dots-pattern {
      position: absolute;
      top: 0; right: 0;
      width: 50%;
      height: 100%;
      pointer-events: none;
      opacity: 0.04;
      background-image: radial-gradient(circle, var(--red) 1.5px, transparent 1.5px);
      background-size: 28px 28px;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,56,42,0.1);
      border: 1px solid rgba(200,56,42,0.2);
      color: var(--red);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 30px;
      margin-bottom: 24px;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    h1.hero-title {
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 22px;
      color: var(--ink);
    }
    h1.hero-title em {
      font-style: normal;
      color: var(--red);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.65;
      max-width: 480px;
      margin-bottom: 38px;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn-primary {
      background: var(--red);
      color: white;
      padding: 16px 32px;
      border-radius: 50px;
      font-family: 'Unbounded', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.04em;
      border: none;
      cursor: pointer;
      transition: all var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,56,42,0.3); }

    .btn-outline {
      background: transparent;
      color: var(--ink);
      padding: 15px 30px;
      border-radius: 50px;
      font-family: 'Unbounded', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.04em;
      border: 2px solid rgba(26,10,9,0.15);
      cursor: pointer;
      transition: all var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline:hover { border-color: var(--red); color: var(--red); }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 44px;
      padding-top: 32px;
      border-top: 1px solid rgba(200,56,42,0.1);
    }
    .stat-num {
      font-family: 'Unbounded', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--red);
    }
    .stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

    /* Hero visual */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .hero-logo-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-logo-ring {
      position: absolute;
      border-radius: 50%;
      border: 1.5px dashed rgba(200,56,42,0.2);
      animation: spin-slow 20s linear infinite;
    }
    .hero-logo-ring-1 { width: 340px; height: 340px; }
    .hero-logo-ring-2 { width: 440px; height: 440px; animation-direction: reverse; animation-duration: 30s; }
    .hero-logo-main {
      width: 260px; height: 260px;
      object-fit: contain;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 20px 60px rgba(200,56,42,0.2));
      animation: float 5s ease-in-out infinite;
    }
    .ring-dot {
      position: absolute;
      width: 10px; height: 10px;
      background: var(--red);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(200,56,42,0.6);
    }

    /* ===== SECTION COMMONS ===== */
    section { padding: 100px 5vw; }
    .section-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.65;
      max-width: 520px;
      margin-bottom: 56px;
    }
    .section-inner { max-width: 1280px; margin: 0 auto; }

    /* ===== HOW IT WORKS ===== */
    #how { background: white; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 28px;
    }
    .step-card {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 32px 28px;
      position: relative;
      border: 1.5px solid transparent;
      transition: all var(--transition);
    }
    .step-card:hover { border-color: rgba(200,56,42,0.2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(200,56,42,0.08); }
    .step-num {
      font-family: 'Unbounded', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      color: rgba(200,56,42,0.08);
      line-height: 1;
      margin-bottom: 18px;
    }
    .step-icon {
      width: 48px; height: 48px;
      background: var(--red);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .step-icon svg { width: 24px; height: 24px; fill: white; }
    .step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
    .step-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

    /* ===== PORTFOLIO ===== */
    #portfolio { background: var(--cream); }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px;
    }
    .portfolio-card {
      border-radius: var(--radius);
      overflow: hidden;
      background: white;
      border: 1.5px solid rgba(200,56,42,0.08);
      transition: all var(--transition);
      cursor: pointer;
    }
    .portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(200,56,42,0.12); border-color: rgba(200,56,42,0.2); }
    .portfolio-thumb {
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #c8382a15 0%, #c8382a30 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .portfolio-thumb::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(200,56,42,0.03) 10px,
        rgba(200,56,42,0.03) 20px
      );
    }
    .play-btn {
      width: 56px; height: 56px;
      background: var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      z-index: 1;
      box-shadow: 0 8px 24px rgba(200,56,42,0.35);
      transition: transform var(--transition);
    }
    .portfolio-card:hover .play-btn { transform: scale(1.1); }
    .play-btn svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
    .portfolio-thumb-label {
      position: absolute;
      bottom: 12px; left: 12px;
      background: rgba(26,10,9,0.6);
      color: white;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
      backdrop-filter: blur(8px);
    }
    .portfolio-info { padding: 22px 22px 24px; }
    .portfolio-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
    .portfolio-info p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

    /* ===== PRICE ===== */
    #price { background: white; }
    .price-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      align-items: start;
    }
    .price-card {
      border-radius: var(--radius);
      padding: 36px 30px;
      border: 2px solid rgba(200,56,42,0.12);
      background: var(--cream);
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
    }
    .price-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: transparent;
      transition: background var(--transition);
    }
    .price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(200,56,42,0.1); }
    .price-card:hover::before { background: var(--red); }
    .price-card.featured {
      background: var(--red);
      border-color: var(--red);
      color: white;
    }
    .price-card.featured .price-desc,
    .price-card.featured .price-feature,
    .price-card.featured .price-note { color: rgba(255,255,255,0.75); }
    .price-card.featured .price-feature::before { background: rgba(255,255,255,0.5); }
    .price-tag {
      font-family: 'Unbounded', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }
    .price-card.featured .price-tag { color: rgba(255,255,255,0.7); }
    .price-name {
      font-family: 'Unbounded', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .price-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin-bottom: 24px; }
    .price-amount {
      font-family: 'Unbounded', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 4px;
    }
    .price-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 28px; }
    .price-features { list-style: none; margin-bottom: 30px; }
    .price-feature {
      font-size: 0.85rem;
      color: var(--ink);
      padding: 8px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid rgba(200,56,42,0.06);
    }
    .price-feature::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .price-card.featured .price-feature { border-bottom-color: rgba(255,255,255,0.1); }
    .btn-price {
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      font-family: 'Unbounded', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-align: center;
      cursor: pointer;
      transition: all var(--transition);
      border: 2px solid var(--red);
      background: transparent;
      color: var(--red);
      text-decoration: none;
      display: block;
    }
    .btn-price:hover { background: var(--red); color: white; }
    .price-card.featured .btn-price { background: white; color: var(--red); border-color: white; }
    .price-card.featured .btn-price:hover { background: transparent; color: white; }
    .badge-popular {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    /* ===== ORDER ===== */
    #order {
      background: var(--cream);
    }
    .order-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .order-form-wrap {
      background: white;
      border-radius: var(--radius);
      padding: 40px;
      border: 1.5px solid rgba(200,56,42,0.1);
      box-shadow: 0 8px 40px rgba(200,56,42,0.06);
    }
    .form-group { margin-bottom: 20px; }
    .form-label {
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 8px;
      color: var(--ink);
    }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 14px 18px;
      border-radius: 12px;
      border: 1.5px solid rgba(200,56,42,0.15);
      background: var(--cream);
      font-family: 'Mulish', sans-serif;
      font-size: 0.9rem;
      color: var(--ink);
      outline: none;
      transition: border-color var(--transition);
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--red);
    }
    .form-textarea { resize: vertical; min-height: 110px; }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--red);
      color: white;
      border: none;
      border-radius: 50px;
      font-family: 'Unbounded', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: all var(--transition);
      margin-top: 8px;
    }
    .form-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,56,42,0.3); }

    .order-info h2 { margin-bottom: 16px; }
    .order-info .section-sub { margin-bottom: 36px; }
    .order-steps { list-style: none; display: flex; flex-direction: column; gap: 18px; }
    .order-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .order-step-num {
      width: 36px; height: 36px;
      background: var(--red);
      color: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Unbounded', sans-serif;
      font-size: 0.75rem;
      font-weight: 800;
      flex-shrink: 0;
    }
    .order-step-text h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
    .order-step-text p { font-size: 0.83rem; color: var(--muted); }

    /* ===== REVIEWS ===== */
    #reviews { background: white; }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 22px;
    }
    .review-card {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1.5px solid rgba(200,56,42,0.1);
      transition: all var(--transition);
      background: var(--cream);
    }
    .review-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(200,56,42,0.1); }
    .review-img {
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #e0e0e0 0%, #c8c8c8 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .review-img-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .review-img-placeholder svg { width: 40px; height: 40px; fill: rgba(200,56,42,0.25); }
    .review-img-placeholder span {
      font-size: 0.72rem;
      color: rgba(200,56,42,0.4);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .review-body { padding: 20px 20px 22px; }
    .review-stars { color: var(--red); font-size: 0.85rem; margin-bottom: 8px; letter-spacing: 2px; }
    .review-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
    .review-author { font-size: 0.8rem; font-weight: 700; }
    .review-company { font-size: 0.75rem; color: var(--muted); }

    /* ===== CONTACTS ===== */
    #contacts { background: var(--cream); }
    .contacts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .contact-block {
      background: white;
      border-radius: var(--radius);
      padding: 36px;
      border: 1.5px solid rgba(200,56,42,0.1);
    }
    .contact-block h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(200,56,42,0.1);
    }
    .contact-links { display: flex; flex-direction: column; gap: 14px; }
    .contact-link {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: var(--ink);
      font-weight: 600;
      font-size: 0.9rem;
      padding: 14px 18px;
      border-radius: 12px;
      border: 1.5px solid rgba(200,56,42,0.1);
      transition: all var(--transition);
    }
    .contact-link:hover { border-color: var(--red); color: var(--red); background: rgba(200,56,42,0.03); }
    .contact-link-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 1.2rem;
    }
    .contact-link-icon.wa { background: #25D366; }
    .contact-link-icon.tg { background: #229ED9; }
    .contact-link-icon.av { background: #ff6000; }
    .contact-link-icon svg { width: 22px; height: 22px; fill: white; }

    .contact-info-list { display: flex; flex-direction: column; gap: 16px; }
    .contact-info-item { display: flex; flex-direction: column; gap: 3px; }
    .contact-info-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
    .contact-info-value { font-size: 0.9rem; font-weight: 600; color: var(--ink); }

    /* ===== FLOATING CTA ===== */
    .floating-cta {
      position: fixed;
      bottom: 28px; right: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 500;
    }
    .float-btn {
      width: 52px; height: 52px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
    .float-btn.wa { background: #25D366; }
    .float-btn.tg { background: #229ED9; }
    .float-btn svg { width: 26px; height: 26px; fill: white; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,0.6);
      padding: 40px 5vw;
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    .footer-logo { display: flex; align-items: center; gap: 10px; }
    .footer-logo-icon {
      width: 34px; height: 34px;
      background: var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .footer-logo-icon svg { width: 18px; height: 18px; fill: white; }
    .footer-logo-text { font-family: 'Unbounded', sans-serif; font-size: 0.88rem; font-weight: 800; color: white; }
    .footer-logo-text span { color: var(--red-light); }
    .footer-ip {
      font-size: 0.78rem;
      line-height: 1.8;
      text-align: center;
    }
    .footer-ip strong { color: rgba(255,255,255,0.85); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 0.78rem;
      transition: color var(--transition);
    }
    .footer-links a:hover { color: var(--red-light); }

    /* ===== ANIMATIONS ===== */
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp 0.7s ease forwards; opacity: 0; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }

    /* observe fade-in for scroll */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
      .hero-sub { margin: 0 auto 38px; }
      .hero-stats { justify-content: center; }
      .hero-btns { justify-content: center; }
      .hero-visual { margin-top: 40px; }
      .order-inner { grid-template-columns: 1fr; }
      .contacts-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .burger { display: flex; }
      section { padding: 70px 5vw; }
      .hero-logo-ring-1 { width: 240px; height: 240px; }
      .hero-logo-ring-2 { width: 310px; height: 310px; }
      .hero-logo-main { width: 190px; height: 190px; }
      .steps-grid { grid-template-columns: 1fr; }
      .price-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .footer-ip { text-align: left; }
    }









    :root {
      --red: #C8382A;
      --red-dark: #9e2a1e;
      --red-light: #e05a4c;
      --cream: #FFF8F6;
      --white: #ffffff;
      --ink: #1a0a09;
      --muted: #8a6460;
      --radius: 18px;
      --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Mulish', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999;
    }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
    h1,h2,h3 { font-family: 'Unbounded', sans-serif; }

    /* ── LANG SWITCHER ── */
    .lang-switcher {
      display: flex;
      align-items: center;
      background: rgba(200,56,42,0.08);
      border: 1.5px solid rgba(200,56,42,0.15);
      border-radius: 30px;
      padding: 3px;
      gap: 2px;
      flex-shrink: 0;
    }
    .lang-btn {
      font-family: 'Unbounded', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 6px 14px;
      border-radius: 24px;
      border: none;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all var(--transition);
      line-height: 1;
    }
    .lang-btn.active {
      background: var(--red);
      color: white;
      box-shadow: 0 2px 10px rgba(200,56,42,0.35);
    }
    .lang-btn:not(.active):hover { color: var(--red); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 5vw;
      background: rgba(255,248,246,0.88);
      backdrop-filter: blur(14px); 
      border-bottom: 1.5px solid rgba(200,56,42,0.1);
      transition: box-shadow var(--transition);
      gap: 16px;
    }
    nav.scrolled { box-shadow: 0 4px 32px rgba(200,56,42,0.08); }
    .logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
    .logo-icon {
      width: 38px; height: 38px; background: var(--red); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-icon svg { width: 20px; height: 20px; fill: white; }
    .logo-text { font-family: 'Unbounded', sans-serif; font-size: 1rem; font-weight: 800; color: var(--ink); }
    .logo-text span { color: var(--red); }
    .nav-right { display: flex; align-items: center; gap: 28px; }
    .nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
    .nav-links a {
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
      text-decoration: none; color: var(--muted); text-transform: uppercase;
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--red); }
    .nav-cta {
      background: var(--red); color: white !important;
      padding: 9px 20px; border-radius: 30px;
      transition: background var(--transition), transform var(--transition) !important;
    }
    .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
    .burger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; background: none; border: none;
    }
    .burger span { display: block; width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
      display: none; position: fixed; top: 71px; left: 0; right: 0;
      background: var(--cream); padding: 20px 5vw 28px;
      border-bottom: 1.5px solid rgba(200,56,42,0.12); z-index: 999;
      flex-direction: column; gap: 4px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Unbounded', sans-serif; font-size: 0.88rem; font-weight: 600;
      text-decoration: none; color: var(--ink); padding: 12px 0;
      border-bottom: 1px solid rgba(200,56,42,0.08);
    }
    .mobile-menu a:hover { color: var(--red); }
    .mobile-menu .lang-switcher { margin-top: 10px; align-self: flex-start; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh; display: flex; align-items: center;
      padding: 120px 5vw 80px; position: relative; overflow: hidden;
    }
    .hero-bg-circle { position: absolute; border-radius: 50%; pointer-events: none; }
    .hero-bg-circle-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,56,42,0.08) 0%, transparent 70%); top: -100px; right: -100px; }
    .hero-bg-circle-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,56,42,0.05) 0%, transparent 70%); bottom: -80px; left: -80px; }
    .dots-pattern {
      position: absolute; top: 0; right: 0; width: 50%; height: 100%;
      pointer-events: none; opacity: 0.04;
      background-image: radial-gradient(circle, var(--red) 1.5px, transparent 1.5px);
      background-size: 28px 28px;
    }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: center; max-width: 1280px; margin: 0 auto; width: 100%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(200,56,42,0.1); border: 1px solid rgba(200,56,42,0.2);
      color: var(--red); font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 7px 16px; border-radius: 30px; margin-bottom: 24px;
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px; background: var(--red);
      border-radius: 50%; animation: pulse 2s infinite;
    }
    h1.hero-title {
      font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800;
      line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 22px; color: var(--ink);
    }
    h1.hero-title em { font-style: normal; color: var(--red); }
    .hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.65; max-width: 480px; margin-bottom: 38px; }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
    .btn-primary {
      background: var(--red); color: white; padding: 16px 32px; border-radius: 50px;
      font-family: 'Unbounded', sans-serif; font-size: 0.78rem; font-weight: 600;
      text-decoration: none; letter-spacing: 0.04em; border: none; cursor: pointer;
      transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,56,42,0.3); }
    .btn-outline {
      background: transparent; color: var(--ink); padding: 15px 30px; border-radius: 50px;
      font-family: 'Unbounded', sans-serif; font-size: 0.78rem; font-weight: 600;
      text-decoration: none; letter-spacing: 0.04em; border: 2px solid rgba(26,10,9,0.15);
      cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { border-color: var(--red); color: var(--red); }
    .hero-stats { display: flex; gap: 32px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(200,56,42,0.1); }
    .stat-num { font-family: 'Unbounded', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--red); }
    .stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
    .hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
    .hero-logo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
    .hero-logo-ring { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(200,56,42,0.2); animation: spin-slow 20s linear infinite; }
    .hero-logo-ring-1 { width: 340px; height: 340px; }
    .hero-logo-ring-2 { width: 440px; height: 440px; animation-direction: reverse; animation-duration: 30s; }
    .hero-logo-main {
      width: 260px; height: 260px; object-fit: contain; position: relative; z-index: 2;
      filter: drop-shadow(0 20px 60px rgba(200,56,42,0.2)); animation: float 5s ease-in-out infinite;
    }

    /* ── SECTIONS ── */
    section { padding: 100px 5vw; }
    .section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
    .section-title { font-family: 'Unbounded', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 16px; }
    .section-sub { font-size: 1rem; color: var(--muted); line-height: 1.65; max-width: 520px; margin-bottom: 56px; }
    .section-inner { max-width: 1280px; margin: 0 auto; }

    /* ── HOW ── */
    #how { background: white; }
    .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
    .step-card {
      background: var(--cream); border-radius: var(--radius); padding: 32px 28px;
      border: 1.5px solid transparent; transition: all var(--transition);
    }
    .step-card:hover { border-color: rgba(200,56,42,0.2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(200,56,42,0.08); }
    .step-num { font-family: 'Unbounded', sans-serif; font-size: 3.5rem; font-weight: 800; color: rgba(200,56,42,0.08); line-height: 1; margin-bottom: 18px; }
    .step-icon { width: 48px; height: 48px; background: var(--red); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
    .step-icon svg { width: 24px; height: 24px; fill: white; }
    .step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
    .step-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

    /* ── PORTFOLIO ── */
    #portfolio { background: var(--cream); }
    .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
    .portfolio-card {
      border-radius: var(--radius); overflow: hidden; background: white;
      border: 1.5px solid rgba(200,56,42,0.08); transition: all var(--transition); cursor: pointer;
    }
    .portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(200,56,42,0.12); border-color: rgba(200,56,42,0.2); }
    .portfolio-thumb {
      aspect-ratio: 16/9; background: linear-gradient(135deg, #c8382a15 0%, #c8382a30 100%);
      display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
    }
    .portfolio-thumb::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(200,56,42,0.03) 10px, rgba(200,56,42,0.03) 20px);
    }
    .play-btn {
      width: 56px; height: 56px; background: var(--red); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1; box-shadow: 0 8px 24px rgba(200,56,42,0.35); transition: transform var(--transition);
    }
    .portfolio-card:hover .play-btn { transform: scale(1.1); }
    .play-btn svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
    .portfolio-thumb-label {
      position: absolute; bottom: 12px; left: 12px; background: rgba(26,10,9,0.6); color: white;
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(8px);
    }
    .portfolio-info { padding: 22px 22px 24px; }
    .portfolio-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
    .portfolio-info p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

    /* ── PRICE ── */
    #price { background: white; }
    .price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
    .price-card {
      border-radius: var(--radius); padding: 36px 30px; border: 2px solid rgba(200,56,42,0.12);
      background: var(--cream); transition: all var(--transition); position: relative; overflow: hidden;
    }
    .price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background var(--transition); }
    .price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(200,56,42,0.1); }
    .price-card:hover::before { background: var(--red); }
    .price-card.featured { background: var(--red); border-color: var(--red); color: white; }
    .price-card.featured .price-desc, .price-card.featured .price-feature, .price-card.featured .price-note { color: rgba(255,255,255,0.75); }
    .price-card.featured .price-feature { border-bottom-color: rgba(255,255,255,0.1); }
    .price-tag { font-family: 'Unbounded', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
    .price-card.featured .price-tag { color: rgba(255,255,255,0.7); }
    .price-name { font-family: 'Unbounded', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
    .price-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin-bottom: 24px; }
    .price-amount { font-family: 'Unbounded', sans-serif; font-size: 2.2rem; font-weight: 800; margin-bottom: 4px; }
    .price-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 28px; }
    .price-features { list-style: none; margin-bottom: 30px; }
    .price-feature {
      font-size: 0.85rem; color: var(--ink); padding: 8px 0;
      display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(200,56,42,0.06);
    }
    .price-feature::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
    .price-card.featured .price-feature::before { background: rgba(255,255,255,0.6); }
    .btn-price {
      width: 100%; padding: 14px; border-radius: 50px; font-family: 'Unbounded', sans-serif;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-align: center;
      cursor: pointer; transition: all var(--transition); border: 2px solid var(--red);
      background: transparent; color: var(--red); text-decoration: none; display: block;
    }
    .btn-price:hover { background: var(--red); color: white; }
    .price-card.featured .btn-price { background: white; color: var(--red); border-color: white; }
    .price-card.featured .btn-price:hover { background: transparent; color: white; }
    .badge-popular {
      display: inline-block; background: rgba(255,255,255,0.2); color: white;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 3px 10px; border-radius: 20px; margin-bottom: 14px;
    }

    /* ── ORDER ── */
    #order { background: var(--cream); }
    .order-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .order-form-wrap {
      background: white; border-radius: var(--radius); padding: 40px;
      border: 1.5px solid rgba(200,56,42,0.1); box-shadow: 0 8px 40px rgba(200,56,42,0.06);
    }
    .form-group { margin-bottom: 20px; }
    .form-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; color: var(--ink); }
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 14px 18px; border-radius: 12px; border: 1.5px solid rgba(200,56,42,0.15);
      background: var(--cream); font-family: 'Mulish', sans-serif; font-size: 0.9rem; color: var(--ink);
      outline: none; transition: border-color var(--transition);
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); }
    .form-textarea { resize: vertical; min-height: 110px; }
    .form-submit {
      width: 100%; padding: 16px; background: var(--red); color: white; border: none; border-radius: 50px;
      font-family: 'Unbounded', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
      cursor: pointer; transition: all var(--transition); margin-top: 8px;
    }
    .form-submit:hover:not(:disabled) { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,56,42,0.3); }
    .form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
    .order-steps { list-style: none; display: flex; flex-direction: column; gap: 18px; }
    .order-step { display: flex; gap: 16px; align-items: flex-start; }
    .order-step-num {
      width: 36px; height: 36px; background: var(--red); color: white; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Unbounded', sans-serif; font-size: 0.75rem; font-weight: 800; flex-shrink: 0;
    }
    .order-step-text h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
    .order-step-text p { font-size: 0.83rem; color: var(--muted); }

    /* ── REVIEWS ── */
    #reviews { background: white; }
    .reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
    .review-card { border-radius: var(--radius); overflow: hidden; border: 1.5px solid rgba(200,56,42,0.1); transition: all var(--transition); background: var(--cream); }
    .review-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(200,56,42,0.1); }
    .review-img {
      aspect-ratio: 4/3; background: linear-gradient(135deg, #e8e0df 0%, #d4c8c6 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .review-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .review-img-placeholder svg { width: 40px; height: 40px; fill: rgba(200,56,42,0.25); }
    .review-img-placeholder span { font-size: 0.72rem; color: rgba(200,56,42,0.4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
    .review-body { padding: 20px 20px 22px; }
    .review-stars { color: var(--red); font-size: 0.85rem; margin-bottom: 8px; letter-spacing: 2px; }
    .review-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
    .review-author { font-size: 0.8rem; font-weight: 700; }
    .review-company { font-size: 0.75rem; color: var(--muted); }

    /* ── CONTACTS ── */
    #contacts { background: var(--cream); }
    .contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .contact-block { background: white; border-radius: var(--radius); padding: 36px; border: 1.5px solid rgba(200,56,42,0.1); }
    .contact-block h3 { font-size: 1rem; font-weight: 700; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid rgba(200,56,42,0.1); }
    .contact-links { display: flex; flex-direction: column; gap: 14px; }
    .contact-link {
      display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink);
      font-weight: 600; font-size: 0.9rem; padding: 14px 18px; border-radius: 12px;
      border: 1.5px solid rgba(200,56,42,0.1); transition: all var(--transition);
    }
    .contact-link:hover { border-color: var(--red); color: var(--red); background: rgba(200,56,42,0.03); }
    .contact-link-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-link-icon.wa { background: #25D366; }
    .contact-link-icon.tg { background: #229ED9; }
    .contact-link-icon.av { background: #ff6000; }
    .contact-link-icon svg { width: 22px; height: 22px; fill: white; }
    .contact-info-list { display: flex; flex-direction: column; gap: 16px; }
    .contact-info-item { display: flex; flex-direction: column; gap: 3px; }
    .contact-info-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
    .contact-info-value { font-size: 0.9rem; font-weight: 600; color: var(--ink); }

    /* ── FLOATING ── */
    .floating-cta { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 12px; z-index: 500; }
    .float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.15); transition: transform var(--transition), box-shadow var(--transition); }
    .float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
    .float-btn.wa { background: #25D366; }
    .float-btn.tg { background: #229ED9; }
    .float-btn svg { width: 26px; height: 26px; fill: white; }

    /* ── FOOTER ── */
    footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 40px 5vw; }
    .footer-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
    .footer-logo { display: flex; align-items: center; gap: 10px; }
    .footer-logo-icon { width: 34px; height: 34px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .footer-logo-icon svg { width: 18px; height: 18px; fill: white; }
    .footer-logo-text { font-family: 'Unbounded', sans-serif; font-size: 0.88rem; font-weight: 800; color: white; }
    .footer-logo-text span { color: var(--red-light); }
    .footer-ip { font-size: 0.78rem; line-height: 1.8; text-align: center; }
    .footer-ip strong { color: rgba(255,255,255,0.85); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.78rem; transition: color var(--transition); }
    .footer-links a:hover { color: var(--red-light); }

    /* ── ANIMATIONS ── */
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
    @keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
    @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
    .fade-up { animation: fadeUp 0.7s ease forwards; opacity: 0; }
    .delay-1{animation-delay:0.1s} .delay-2{animation-delay:0.2s} .delay-3{animation-delay:0.3s} .delay-4{animation-delay:0.4s}
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px){
      .hero-inner{grid-template-columns:1fr;text-align:center}
      .hero-sub{margin:0 auto 38px}
      .hero-stats{justify-content:center}
      .hero-btns{justify-content:center}
      .hero-visual{margin-top:40px}
      .order-inner{grid-template-columns:1fr}
      .contacts-grid{grid-template-columns:1fr}
    }
    @media(max-width:768px){
      .nav-links,.nav-right .lang-switcher{display:none}
      .burger{display:flex}
      section{padding:70px 5vw}
      .hero-logo-ring-1{width:240px;height:240px}
      .hero-logo-ring-2{width:310px;height:310px}
      .hero-logo-main{width:190px;height:190px}
      .steps-grid{grid-template-columns:1fr}
      .price-grid{grid-template-columns:1fr}
      .footer-inner{flex-direction:column;align-items:flex-start}
      .footer-ip{text-align:left}
    }