 :root {
      --yellow: #F5A623;
      --yellow-dark: #D4891A;
      --yellow-light: #FFBA45;
      --graphite: #1C2030;
      --graphite-mid: #2D3447;
      --steel: #4A5568;
      --steel-light: #8A96A8;
      --bg: #FFFFFF;
      --bg-section: #F4F5F7;
      --bg-dark: #111520;
      --border: #E0E4EC;
      --text: #1C2030;
      --text-muted: #5A6475;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Manrope', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    /* NAVBAR */
    .navbar-main {
      background: var(--graphite);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid var(--yellow);
    }
    .navbar-main .navbar-brand {
      color: #fff;
      font-weight: 800;
      font-size: 1.2rem;
      letter-spacing: -0.02em;
      padding: 17px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brand-mark {
      width: 28px; height: 28px;
      background: var(--yellow);
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .brand-mark svg { width: 15px; height: 15px; fill: var(--graphite); }
.logo{max-height:45px;}
    .navbar-main .nav-link {
      color: rgba(255,255,255,0.62) !important;
      font-size: 0.875rem; font-weight: 500;
      padding: 21px 13px !important;
      transition: color 0.2s;
    }
    .navbar-main .nav-link:hover { color: #fff !important; }
    .navbar-phone {
      color: #fff; font-weight: 700; font-size: 0.92rem;
      text-decoration: none;
      display: flex; align-items: center; gap: 8px;
      padding: 8px 15px;
      border: 1px solid rgba(245,166,35,0.35);
      border-radius: 3px;
      transition: all 0.2s;
    }
    .navbar-phone:hover { border-color: var(--yellow); color: var(--yellow); }
    .navbar-toggler { border-color: rgba(255,255,255,0.2); padding: 6px 10px; }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* HERO */
    .hero {
      background: var(--graphite);
      min-height: 91vh;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 80% at 0% 50%, rgba(245,166,35,0.07) 0%, transparent 65%),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.011) 60px, rgba(255,255,255,0.011) 61px);
      pointer-events: none;
    }
    .hero-divider {
      position: absolute; right: 42%; top: 0; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, transparent 0%, rgba(245,166,35,0.22) 30%, rgba(245,166,35,0.22) 70%, transparent 100%);
    }
    .hero h1 {
      font-size: clamp(1.9rem, 3.5vw, 2.75rem);
      font-weight: 800; color: #fff;
      line-height: 1.14; letter-spacing: -0.035em; margin-bottom: 18px;
    }
    .hero-accent { color: var(--yellow); }
    .hero-sub {
      font-size: 1rem; color: rgba(255,255,255,0.52);
      max-width: 470px; margin-bottom: 36px; line-height: 1.72;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,166,35,0.11);
      border: 1px solid rgba(245,166,35,0.32);
      color: var(--yellow-light);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 2px; margin-bottom: 26px;
    }
    .hero-dot {
      width: 6px; height: 6px;
      background: var(--yellow); border-radius: 50%;
      animation: blink 2.4s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

    .btn-yellow {
      background: var(--yellow); color: var(--graphite);
      border: none; padding: 14px 28px;
      font-family: 'Manrope',sans-serif; font-weight: 800; font-size: 0.9rem;
      border-radius: 3px; text-decoration: none;
      display: inline-flex; align-items: center; gap: 9px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-yellow:hover { background: var(--yellow-light); color: var(--graphite); transform: translateY(-1px); }

    .btn-ghost {
      background: transparent; color: rgba(255,255,255,0.68);
      border: 1px solid rgba(255,255,255,0.18); padding: 13px 24px;
      font-family: 'Manrope',sans-serif; font-weight: 600; font-size: 0.9rem;
      border-radius: 3px; text-decoration: none;
      display: inline-flex; align-items: center; gap: 9px;
      transition: all 0.2s;
    }
    .btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.38); background: rgba(255,255,255,0.04); }

    /* Hero advantages panel */
    .hero-adv-panel {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 5px; overflow: hidden;
    }
    .hero-adv-header {
      background: rgba(245,166,35,0.12);
      border-bottom: 1px solid rgba(245,166,35,0.2);
      padding: 15px 22px;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--yellow);
    }
    .hero-adv-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 17px 22px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: background 0.2s;
    }
    .hero-adv-item:last-child { border-bottom: none; }
    .hero-adv-item:hover { background: rgba(255,255,255,0.03); }
    .hero-adv-num {
      width: 30px; height: 30px; flex-shrink: 0;
      background: var(--yellow); border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; font-weight: 800; color: var(--graphite);
      margin-top: 2px;
    }
    .hero-adv-title { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
    .hero-adv-desc { font-size: 0.77rem; color: rgba(255,255,255,0.42); line-height: 1.5; margin: 0; }

    /* TRUST BAR */
    .trust-bar { background: #fff; border-bottom: 1px solid var(--border); }
    .trust-bar-inner { display: flex; align-items: stretch; min-height: 62px; }
    .trust-bar-label {
      display: flex; align-items: center;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-muted); white-space: nowrap;
      padding: 0 26px 0 0; margin-right: 6px;
      border-right: 1px solid var(--border); flex-shrink: 0;
    }
    .partners-row { display: flex; align-items: center; flex: 1; }
    .partner-logo {
      display: flex; align-items: center;
      padding: 0 20px; height: 100%;
      font-weight: 800; font-size: 0.86rem;
      color: var(--steel-light); letter-spacing: -0.01em;
      border-right: 1px solid var(--border); white-space: nowrap;
      transition: color 0.2s;
    }
    .partner-logo:last-child { border-right: none; }
    .partner-logo:hover { color: var(--graphite); }

    /* SECTIONS */
    .section-label {
      display: inline-block; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--yellow-dark); margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.55rem, 3vw, 2.1rem);
      font-weight: 800; letter-spacing: -0.03em;
      line-height: 1.2; color: var(--graphite);
    }
    .section-title span { color: var(--yellow-dark); }
    section { padding: 86px 0; }

    /* ABOUT */
    .about-section { background: var(--bg-section); }
    .about-text { font-size: 1rem; color: var(--steel); line-height: 1.78; }
    .about-text strong { color: var(--graphite); font-weight: 700; }
    .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-stat {
      background: #fff; border: 1px solid var(--border);
      border-radius: 4px; padding: 20px 22px;
      border-top: 3px solid var(--yellow);
    }
    .about-stat-num { font-size: 2rem; font-weight: 800; color: var(--graphite); line-height: 1; letter-spacing: -0.04em; }
    .about-stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-top: 5px; line-height: 1.4; }

    /* PRODUCTS */
    .product-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: 4px; padding: 26px; height: 100%;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      position: relative; overflow: hidden;
    }
    .product-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--yellow); transform: scaleX(0);
      transition: transform 0.3s ease; transform-origin: left;
    }
    .product-card:hover { border-color: rgba(245,166,35,0.38); box-shadow: 0 6px 26px rgba(0,0,0,0.07); transform: translateY(-3px); }
    .product-card:hover::after { transform: scaleX(1); }
    .product-icon {
      width: 44px; height: 44px; background: rgba(245,166,35,0.1);
      border-radius: 4px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 15px; font-size: 1.25rem; color: var(--yellow-dark);
    }
    .product-title { font-size: 0.95rem; font-weight: 700; color: var(--graphite); margin-bottom: 7px; }
    .product-desc { font-size: 0.845rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

    /* ADVANTAGES */
    .advantages-section { background: var(--graphite); }
    .advantages-section .section-title { color: #fff; }
    .advantages-section .section-label { color: var(--yellow); }
    .adv-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 4px; padding: 22px; height: 100%;
      display: flex; gap: 15px; align-items: flex-start;
      transition: background 0.2s, border-color 0.2s;
    }
    .adv-card:hover { background: rgba(245,166,35,0.07); border-color: rgba(245,166,35,0.2); }
    .adv-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: rgba(245,166,35,0.14); border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--yellow);
    }
    .adv-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
    .adv-desc { font-size: 0.81rem; color: rgba(255,255,255,0.42); line-height: 1.58; margin: 0; }

    /* WORKSHOP */
    .workshop-section { background: var(--bg-section); }
    .photo-slot {
      background: #CDD2DE; border-radius: 4px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: #8A93A8; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; gap: 7px;
		overflow:hidden;
    }
	.photo-slot img{object-fit:cover;min-height:100%; min-width:100%;}
    .photo-slot i { font-size: 1.7rem; color: #A5AFBF; }
    .photo-slot.large { height: 370px; }
    .photo-slot.small { height: 176px; }
    .workshop-highlight {
      background: var(--graphite); border-radius: 4px;
      padding: 20px 24px; margin-top: 22px;
      display: flex; gap: 13px; align-items: flex-start;
    }
    .workshop-highlight i { color: var(--yellow); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
    .workshop-highlight p { margin: 0; font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.62); }
    .workshop-highlight strong { color: var(--yellow); }

    /* PROCESS */
    .process-step { display: flex; gap: 18px; }
    .step-line-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
    .step-num {
      width: 44px; height: 44px;
      background: var(--yellow); border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; font-weight: 800; color: var(--graphite); flex-shrink: 0;
    }
    .step-line { width: 2px; flex: 1; background: var(--border); margin: 5px 0; min-height: 24px; }
    .process-step:last-child .step-line { display: none; }
    .step-body { padding-bottom: 30px; padding-top: 9px; }
    .step-title { font-size: 0.95rem; font-weight: 700; color: var(--graphite); margin-bottom: 5px; }
    .step-desc { font-size: 0.845rem; color: var(--text-muted); line-height: 1.62; margin: 0; }

    /* PORTFOLIO */
    .portfolio-section { background: #fff; }
    .portfolio-card {
      border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s; background: #fff;
    }
    .portfolio-card:hover { box-shadow: 0 10px 34px rgba(0,0,0,0.09); transform: translateY(-4px); }
    .portfolio-img { height: 190px; position: relative; }
    .portfolio-img-slot {
      width: 100%; height: 100%; background: #CDD2DE;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: #8A93A8; font-size: 0.67rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; gap: 6px;
		overflow:hidden;
    }
	.portfolio-img-slot img{ object-fit:cover;min-height:100%; min-width:100%; }
    .portfolio-img-slot i { font-size: 1.7rem; color: #A5AFBF; }
    .portfolio-badge {
      position: absolute; top: 12px; left: 12px;
      background: var(--yellow); color: var(--graphite);
      font-size: 0.67rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 2px;
    }
    .portfolio-body { padding: 20px; }
    .portfolio-title { font-size: 0.94rem; font-weight: 700; color: var(--graphite); margin-bottom: 7px; }
    .portfolio-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.58; margin-bottom: 14px; }
    .portfolio-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; }
    .meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--steel-light); font-weight: 600; }
    .meta-item i { color: var(--yellow-dark); font-size: 0.82rem; }

    /* STATS */
    .stats-section { background: var(--graphite); }
    .stat-item { text-align: center; padding: 44px 20px; border-right: 1px solid rgba(255,255,255,0.06); }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-size: clamp(2.3rem, 5vw, 3.1rem); font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.04em; margin-bottom: 10px; }
    .stat-num em { color: var(--yellow); font-style: normal; }
    .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.38); font-weight: 500; line-height: 1.45; max-width: 140px; margin: 0 auto; }

    /* CTA */
    .cta-section { background: var(--bg-section); }
    .cta-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 52px; }
    .form-lbl { display: block; font-size: 0.77rem; font-weight: 700; color: var(--steel); margin-bottom: 6px; letter-spacing: 0.02em; }
    .form-inp {
      width: 100%; border: 1px solid var(--border); border-radius: 3px;
      padding: 12px 14px; font-family: 'Manrope',sans-serif; font-size: 0.88rem;
      color: var(--text); background: var(--bg-section);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-inp:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,166,35,0.11); background: #fff; }
    .form-inp::placeholder { color: #AAB0BD; }
    textarea.form-inp { resize: none; }
    .file-label {
      display: flex; align-items: center; gap: 10px;
      border: 1.5px dashed var(--border); border-radius: 3px;
      padding: 12px 14px; cursor: pointer;
      font-size: 0.84rem; color: var(--text-muted);
      transition: border-color 0.2s;
    }
    .file-label:hover { border-color: var(--yellow); color: var(--graphite); }
    .file-label i { color: var(--yellow-dark); }
    .btn-submit {
      width: 100%; background: var(--yellow); color: var(--graphite);
      border: none; padding: 15px;
      font-family: 'Manrope',sans-serif; font-weight: 800; font-size: 0.95rem;
      border-radius: 3px; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      transition: background 0.2s;
    }
    .btn-submit:hover { background: var(--yellow-light); }
    .form-note { font-size: 0.71rem; color: #AAB0BD; text-align: center; margin-top: 11px; line-height: 1.5; }
    .contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
    .contact-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
    .contact-icon.yellow { background: rgba(245,166,35,0.1); color: var(--yellow-dark); }
    .contact-icon.green { background: rgba(37,211,102,0.1); color: #25D366; }
    .contact-icon.steel { background: rgba(74,85,104,0.08); color: var(--steel); }
    .contact-lbl { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 2px; }
    .contact-val { font-size: 0.95rem; font-weight: 700; color: var(--graphite); text-decoration: none; }
    .contact-val:hover { color: var(--yellow-dark); }

    /* FOOTER */
    footer { background: var(--bg-dark); padding: 56px 0 30px; }
    .footer-brand { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
    .footer-brand-mark { width: 22px; height: 22px; background: var(--yellow); border-radius: 3px; flex-shrink: 0; }
    .footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.28); line-height: 1.68; max-width: 240px; }
    .footer-heading { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 14px; }
    .footer-link { display: block; color: rgba(255,255,255,0.48); text-decoration: none; font-size: 0.86rem; margin-bottom: 9px; transition: color 0.2s; }
    .footer-link:hover { color: #fff; }
    .footer-ci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; }
    .footer-ci i { color: var(--yellow); font-size: 0.84rem; margin-top: 3px; flex-shrink: 0; }
    .footer-ci a, .footer-ci span { color: rgba(255,255,255,0.48); font-size: 0.86rem; line-height: 1.55; text-decoration: none; transition: color 0.2s; }
    .footer-ci a:hover { color: #fff; }
    .footer-hr { border-color: rgba(255,255,255,0.06); margin: 42px 0 20px; }
    .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.18); }

    /* WA FLOAT */
    .wa-btn {
      position: fixed; bottom: 26px; right: 26px;
      width: 52px; height: 52px; background: #25D366;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: #fff; text-decoration: none;
      box-shadow: 0 4px 18px rgba(37,211,102,0.38);
      z-index: 999; transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-btn:hover { color: #fff; transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* RESPONSIVE */
    @media (max-width: 991px) {
      .hero { min-height: auto; padding: 58px 0 50px; }
      .hero-divider { display: none; }
      section { padding: 62px 0; }
      .cta-card { padding: 36px 26px; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 16px; }
      .stat-item:last-child { border-bottom: none; }
    }
    @media (max-width: 767px) {
      .trust-bar-label { display: none; }
      .partner-logo { padding: 0 13px; font-size: 0.82rem; }
    }