* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --orange: #ff6b35;
      --orange-dark: #e8531f;
      --orange-light: #fff1ec;
      --navy: #0f1b2d;
      --text: #1f2937;
      --muted: #6b7280;
      --light: #f7f8fa;
      --light2: #eef0f3;
      --border: #e5e7eb;
      --white: #fff;
      --green: #22c55e;
      --yellow: #fbbf24;
      --red: #ef4444;
      --blue: #3b82f6;
      --shadow: 0 4px 20px rgba(15, 27, 45, .08);
      --shadow-lg: 0 16px 48px rgba(15, 27, 45, .16);
      --radius: 16px;
      --radius-lg: 24px;
    }

    html {
      -webkit-tap-highlight-color: transparent;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Manrope', sans-serif;
      background: var(--white);
      color: var(--text);
      font-size: 15px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button {
      font-family: 'Manrope', sans-serif;
      cursor: pointer;
      border: none;
      outline: none;
      background: none;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Outfit', sans-serif;
    }

    .topbar {
      background: var(--navy);
      color: rgba(255, 255, 255, .85);
      padding: 9px 16px;
      font-size: 13px;
      font-weight: 600;
    }

    .topbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }

    header {
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 500;
    }

    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .logo-icon {
      width: 46px;
      height: 46px;
      border-radius: 13px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 6px 16px rgba(255, 107, 53, .3);
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    }

    .logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .logo-text .ln {
      font-size: 20px;
      font-weight: 900;
      color: var(--navy);
      letter-spacing: -.4px;
      line-height: 1.1;
    }

    .logo-text .ln em {
      color: var(--orange);
      font-style: normal;
    }

    .logo-text .ls {
      font-size: 11px;
      color: var(--muted);
      font-weight: 700;
      margin-top: 1px;
    }

    nav.main-nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-link {
      padding: 10px 16px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      transition: .15s;
    }

    .nav-link:hover {
      background: var(--light2);
      color: var(--orange-dark);
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .cta-call {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 800;
      font-size: 14px;
      color: var(--navy);
    }

    .cta-call .ico {
      width: 38px;
      height: 38px;
      background: var(--orange-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--orange);
      flex-shrink: 0;
    }

    .cta-call .small {
      display: block;
      font-size: 10.5px;
      color: var(--muted);
      font-weight: 600;
    }

    .btn-order {
      background: var(--orange);
      color: #fff;
      border-radius: 11px;
      padding: 12px 22px;
      font-size: 14px;
      font-weight: 800;
      transition: .2s;
      white-space: nowrap;
      box-shadow: 0 6px 16px rgba(255, 107, 53, .3);
    }

    .btn-order:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

    .mob-menu-btn {
      display: none;
      font-size: 24px;
      color: var(--navy);
      padding: 6px;
    }

    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, #142436 60%, #1d3450 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 107, 53, .18), transparent 70%);
      border-radius: 50%;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -100px;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(34, 197, 94, .1), transparent 70%);
      border-radius: 50%;
    }

    .hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 64px 16px 80px;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      color: #fff;
      border-radius: 50px;
      padding: 7px 16px;
      font-size: 12.5px;
      font-weight: 700;
      margin-bottom: 22px;
    }

    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .4;
      }
    }

    .hero h1 {
      font-size: clamp(1.7rem, 4.2vw, 3.2rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 18px;
      letter-spacing: -1px;
    }

    .hero h1 em {
      color: var(--orange);
      font-style: normal;
    }

    .hero p {
      font-size: 16px;
      color: rgba(255, 255, 255, .65);
      max-width: 480px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 34px;
    }

    .btn-primary {
      background: var(--orange);
      color: #fff;
      border-radius: 13px;
      padding: 15px 28px;
      font-size: 15px;
      font-weight: 800;
      transition: .2s;
      box-shadow: 0 8px 24px rgba(255, 107, 53, .35);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .08);
      border: 1.5px solid rgba(255, 255, 255, .18);
      color: #fff;
      border-radius: 13px;
      padding: 15px 26px;
      font-size: 15px;
      font-weight: 800;
      transition: .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, .14);
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
    }

    .hero-stat .num {
      font-size: 1.8rem;
      font-weight: 900;
      color: #fff;
      font-family: 'Outfit', sans-serif;
    }

    .hero-stat .num em {
      color: var(--orange);
      font-style: normal;
    }

    .hero-stat .lbl {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .5);
      font-weight: 600;
      margin-top: 2px;
    }

    .hero-visual {
      position: relative;
    }

    .hero-img-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
      aspect-ratio: 4/3.4;
    }

    .hero-img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 70px 16px;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--orange-light);
      color: var(--orange-dark);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-head {
      margin-bottom: 42px;
    }

    .section-head h2 {
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      font-weight: 900;
      color: var(--navy);
      letter-spacing: -.6px;
      margin-bottom: 10px;
    }

    .section-head h2 em {
      color: var(--orange);
      font-style: normal;
    }

    .section-head p {
      color: var(--muted);
      font-size: 15px;
      max-width: 540px;
    }

    .section-head.center {
      text-align: center;
    }

    .section-head.center p {
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 20px;
    }

    .svc-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: .25s;
      position: relative;
      overflow: hidden;
    }

    .svc-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: transparent;
    }

    .svc-card .svc-ico {
      width: 56px;
      height: 56px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 18px;
    }

    .svc-card.t1 .svc-ico {
      background: linear-gradient(135deg, #fff1ec, #ffe2d6);
    }

    .svc-card.t2 .svc-ico {
      background: linear-gradient(135deg, #e8f5ff, #d6ecff);
    }

    .svc-card h3 {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .svc-card p {
      font-size: 13.5px;
      color: var(--muted);
      margin-bottom: 16px;
      line-height: 1.65;
    }

    .svc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 18px;
    }

    .svc-list li {
      font-size: 13px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
    }

    .svc-list li::before {
      content: '✓';
      color: var(--green);
      font-weight: 900;
    }

    .svc-price {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      border-top: 1px solid var(--border);
      padding-top: 14px;
    }

    .svc-price .from {
      font-size: 11.5px;
      color: var(--muted);
      font-weight: 700;
      text-transform: uppercase;
    }

    .svc-price .val {
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--navy);
      font-family: 'Outfit', sans-serif;
    }

    .svc-price .val small {
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
    }

    .svc-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      background: var(--orange);
      color: #fff;
      font-size: 10.5px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 7px;
    }

    .process-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }

    .process-num {
      width: 54px;
      height: 54px;
      border-radius: 15px;
      background: var(--navy);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      font-weight: 900;
      font-family: 'Outfit', sans-serif;
      margin-bottom: 16px;
    }

    .process-step:nth-child(odd) .process-num {
      background: var(--orange);
    }

    .process-step h4 {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 7px;
    }

    .process-step p {
      font-size: 13.5px;
      color: var(--muted);
    }

    .order-section {
      background: var(--light);
    }

    .order-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 36px;
      align-items: start;
    }

    .order-info h2 {
      font-size: clamp(1.5rem, 3vw, 2.3rem);
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 14px;
    }

    .order-info h2 em {
      color: var(--orange);
      font-style: normal;
    }

    .order-info p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .order-benefit {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .ob-ico {
      width: 42px;
      height: 42px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      flex-shrink: 0;
    }

    .order-benefit strong {
      display: block;
      font-size: 14px;
      color: var(--navy);
      font-weight: 800;
      margin-bottom: 2px;
    }

    .order-benefit span {
      font-size: 13px;
      color: var(--muted);
    }

    .order-form-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-lg);
    }

    .order-form-card h3 {
      font-size: 1.25rem;
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 5px;
    }

    .order-form-card .sub {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 24px;
    }

    .fgroup {
      margin-bottom: 16px;
    }

    .fgroup label {
      display: block;
      font-size: 12.5px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 7px;
    }

    .fgroup label .req {
      color: var(--orange);
    }

    .fgroup input,
    .fgroup select,
    .fgroup textarea {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 11px;
      padding: 12px 14px;
      font-family: 'Manrope', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: .2s;
      background: #fff;
    }

    .fgroup input:focus,
    .fgroup select:focus,
    .fgroup textarea:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(255, 107, 53, .1);
    }

    .frow2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .device-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .device-opt {
      border: 1.5px solid var(--border);
      border-radius: 11px;
      padding: 13px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      transition: .15s;
      font-weight: 700;
      font-size: 13.5px;
    }

    .device-opt:hover {
      border-color: var(--orange);
    }

    .device-opt.active {
      border-color: var(--orange);
      background: var(--orange-light);
      color: var(--orange-dark);
    }

    .device-opt input {
      display: none;
    }

    .device-opt .dico {
      font-size: 22px;
    }

    .submit-btn {
      width: 100%;
      background: var(--orange);
      color: #fff;
      border-radius: 12px;
      padding: 15px;
      font-size: 15.5px;
      font-weight: 900;
      transition: .2s;
      margin-top: 6px;
      box-shadow: 0 8px 20px rgba(255, 107, 53, .3);
    }

    .submit-btn:hover {
      background: var(--orange-dark);
    }

    .submit-btn:disabled {
      opacity: .6;
      cursor: not-allowed;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 30px 10px;
    }

    .form-success.show {
      display: block;
    }

    .form-success .fs-ico {
      font-size: 54px;
      margin-bottom: 14px;
    }

    .form-success h4 {
      font-size: 1.2rem;
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .form-success p {
      color: var(--muted);
      font-size: 13.5px;
    }

    .masters-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 22px;
    }

    .master-card {
      text-align: center;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 20px;
      transition: .25s;
    }

    .master-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .master-photo {
      width: 104px;
      height: 104px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 16px;
      border: 4px solid var(--orange-light);
    }

    .master-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .master-card h4 {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 3px;
    }

    .master-role {
      font-size: 12.5px;
      color: var(--orange-dark);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .master-meta {
      display: flex;
      justify-content: center;
      gap: 16px;
      font-size: 12.5px;
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .master-stars {
      color: var(--yellow);
      font-size: 14px;
    }

    .master-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
    }

    .mtag {
      background: var(--light2);
      border-radius: 7px;
      padding: 3px 9px;
      font-size: 11px;
      font-weight: 700;
      color: var(--muted);
    }

    .reviews-section {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .reviews-section::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -100px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(255, 107, 53, .12), transparent 70%);
      border-radius: 50%;
    }

    .reviews-section .section-head h2 {
      color: #fff;
    }

    .reviews-section .section-head p {
      color: rgba(255, 255, 255, .5);
    }

    .reviews-section .section-tag {
      background: rgba(255, 107, 53, .15);
      color: var(--orange);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      position: relative;
      z-index: 1;
    }

    .review-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--radius-lg);
      padding: 24px;
    }

    .review-stars {
      color: var(--yellow);
      font-size: 14px;
      margin-bottom: 12px;
    }

    .review-text {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .75);
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .rauthor-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 15px;
      flex-shrink: 0;
    }

    .rauthor-name {
      font-size: 13.5px;
      font-weight: 800;
      color: #fff;
    }

    .rauthor-meta {
      font-size: 11.5px;
      color: rgba(255, 255, 255, .4);
      font-weight: 600;
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: .2s;
    }

    .faq-item.open {
      border-color: var(--orange);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      cursor: pointer;
      font-weight: 800;
      font-size: 14.5px;
      color: var(--navy);
      gap: 14px;
    }

    .faq-q .fplus {
      font-size: 20px;
      color: var(--orange);
      transition: .25s;
      flex-shrink: 0;
    }

    .faq-item.open .fplus {
      transform: rotate(45deg);
    }

    .faq-a {
      padding: 0 22px;
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease, padding .3s ease;
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.7;
    }

    .faq-item.open .faq-a {
      padding: 0 22px 20px;
      max-height: 400px;
    }

    .cta-band {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }

    .cta-band::after {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 240px;
      height: 240px;
      background: rgba(255, 255, 255, .1);
      border-radius: 50%;
    }

    .cta-band-text h3 {
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 6px;
    }

    .cta-band-text p {
      color: rgba(255, 255, 255, .85);
      font-size: 14px;
    }

    .cta-band .btn-secondary {
      background: #fff;
      color: var(--orange-dark);
      border: none;
    }

    footer {
      background: var(--navy);
      color: rgba(255, 255, 255, .6);
    }

    .footer-top {
      max-width: 1280px;
      margin: 0 auto;
      padding: 54px 16px 36px;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 36px;
    }

    .footer-brand .ln {
      font-size: 21px;
      font-weight: 900;
      color: #fff;
    }

    .footer-brand .ln em {
      color: var(--orange);
      font-style: normal;
    }

    .footer-desc {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .4);
      margin-top: 12px;
      line-height: 1.7;
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-col ul a {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .45);
      transition: .2s;
    }

    .footer-col ul a:hover {
      color: var(--orange);
    }

    .footer-social {
      display: flex;
      gap: 8px;
      margin-top: 14px;
    }

    .fsoc {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: .2s;
    }

    .fsoc:hover {
      background: var(--orange);
    }

    .footer-bot {
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding: 18px 16px;
      text-align: center;
      font-size: 11.5px;
      color: rgba(255, 255, 255, .25);
      max-width: 1280px;
      margin: 0 auto;
    }

    .toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(12px);
      background: var(--navy);
      color: #fff;
      padding: 12px 24px;
      border-radius: 12px;
      font-size: 13.5px;
      font-weight: 700;
      z-index: 99999;
      opacity: 0;
      transition: .35s;
      pointer-events: none;
      border-left: 4px solid var(--orange);
      max-width: 90vw;
      text-align: center;
    }

    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .admin-fab {
      position: fixed;
      bottom: 22px;
      right: 18px;
      background: var(--navy);
      color: #fff;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 21px;
      box-shadow: var(--shadow-lg);
      z-index: 900;
      transition: .25s;
    }

    .admin-fab:hover {
      background: var(--orange);
      transform: rotate(90deg);
    }

    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .45);
      z-index: 7500;
    }

    .overlay.open {
      display: block;
    }

    .mob-drawer {
      position: fixed;
      right: -110%;
      top: 0;
      bottom: 0;
      width: 280px;
      max-width: 85vw;
      background: #fff;
      z-index: 8000;
      transition: right .35s;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-lg);
    }

    .mob-drawer.open {
      right: 0;
    }

    .mob-drawer-head {
      padding: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
    }

    .mob-close {
      font-size: 22px;
      color: var(--muted);
    }

    .mob-links {
      list-style: none;
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .mob-links a {
      display: block;
      padding: 13px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      transition: .15s;
    }

    .mob-links a:hover {
      background: var(--light2);
      color: var(--orange-dark);
    }

    .loading-row {
      text-align: center;
      color: var(--muted);
      padding: 30px;
      grid-column: 1/-1;
      font-weight: 600;
    }

    @media(max-width:1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 16px 60px;
      }

      .hero p {
        margin: 0 auto 30px;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-stats {
        justify-content: center;
      }

      .hero-visual {
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
      }

      .order-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:768px) {
      nav.main-nav {
        display: none;
      }

      .header-cta .cta-call {
        display: none;
      }

      .mob-menu-btn {
        display: flex;
      }

      .section {
        padding: 50px 16px;
      }

      .frow2 {
        grid-template-columns: 1fr;
      }

      .cta-band {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    @media(max-width:480px) {
      body {
        font-size: 14px;
      }

      .header-inner {
        padding: 12px 14px;
      }

      .logo-icon {
        width: 40px;
        height: 40px;
      }

      .logo-text .ln {
        font-size: 17px;
      }

      .btn-order {
        padding: 10px 14px;
        font-size: 13px;
      }

      .hero-inner {
        padding: 36px 14px 48px;
        gap: 28px;
      }

      .hero-actions {
        flex-direction: column;
        gap: 10px;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px;
      }

      .hero-stats {
        gap: 18px 24px;
      }

      .hero-stat .num {
        font-size: 1.4rem;
      }

      .section {
        padding: 42px 14px;
      }

      .section-head {
        margin-bottom: 30px;
      }

      .svc-card {
        padding: 22px;
      }

      .order-form-card {
        padding: 20px;
      }

      .device-options {
        grid-template-columns: 1fr;
      }

      .topbar-inner {
        justify-content: center;
      }

      .cta-band-text h3 {
        font-size: 1.3rem;
      }

      .cta-band .btn-secondary {
        width: 100%;
        justify-content: center;
      }

      .masters-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============ ADMIN PANEL ============ */
    .admin-screen {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--light);
      z-index: 9000;
      overflow-y: auto;
    }

    .admin-screen.show {
      display: block;
    }

    #login-screen {
      position: fixed;
      inset: 0;
      background: linear-gradient(135deg, #0f1b2d 0%, #1d3450 100%);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9500;
      padding: 16px;
    }

    #login-screen.show {
      display: flex;
    }

    .login-card {
      background: #fff;
      border-radius: 22px;
      padding: 40px 36px;
      width: 100%;
      max-width: 380px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
    }

    .login-logo {
      font-size: 22px;
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 3px;
    }

    .login-logo em {
      color: var(--orange);
      font-style: normal;
    }

    .login-sub {
      font-size: 12.5px;
      color: var(--muted);
      margin-bottom: 26px;
    }

    .lfield {
      margin-bottom: 13px;
      position: relative;
    }

    .lfield label {
      display: block;
      font-size: 11px;
      font-weight: 800;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .4px;
      margin-bottom: 5px;
    }

    .lfield input {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 11px 42px 11px 13px;
      font-family: 'Manrope', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: .2s;
    }

    .lfield input:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(255, 107, 53, .12);
    }

    .eye-btn {
      position: absolute;
      right: 12px;
      bottom: 10px;
      font-size: 17px;
      color: var(--muted);
      cursor: pointer;
      user-select: none;
    }

    .login-btn {
      width: 100%;
      background: var(--orange);
      color: #fff;
      border-radius: 11px;
      padding: 12px;
      font-size: 14.5px;
      font-weight: 900;
      margin-top: 4px;
      transition: .2s;
    }

    .login-btn:hover {
      background: var(--orange-dark);
    }

    .login-btn:disabled {
      opacity: .6;
      cursor: not-allowed;
    }

    .login-err {
      color: var(--red);
      font-size: 12.5px;
      font-weight: 700;
      margin-top: 9px;
      display: none;
      text-align: center;
    }

    .login-back {
      display: block;
      text-align: center;
      font-size: 12.5px;
      color: var(--muted);
      margin-top: 14px;
      font-weight: 700;
      cursor: pointer;
    }

    .alayout {
      display: flex;
      min-height: 100vh;
    }

    .aside {
      width: 235px;
      background: var(--navy);
      flex-shrink: 0;
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      z-index: 9200;
      display: flex;
      flex-direction: column;
      transition: left .3s;
    }

    .aside-logo {
      padding: 18px 16px 14px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .aside-logo .aln {
      font-size: 18px;
      font-weight: 900;
      color: #fff;
    }

    .aside-logo .aln em {
      color: var(--orange);
      font-style: normal;
    }

    .aside-logo small {
      display: block;
      font-size: 10px;
      color: rgba(255, 255, 255, .3);
      margin-top: 2px;
    }

    .aside-nav {
      flex: 1;
      padding: 10px 8px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      overflow-y: auto;
    }

    .anav {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 10px 12px;
      border-radius: 10px;
      color: rgba(255, 255, 255, .55);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      width: 100%;
      text-align: left;
      transition: .15s;
    }

    .anav:hover {
      background: rgba(255, 255, 255, .06);
      color: #fff;
    }

    .anav.on {
      background: rgba(255, 107, 53, .14);
      color: var(--orange);
    }

    .anav .aico {
      font-size: 16px;
      width: 20px;
      text-align: center;
      flex-shrink: 0;
    }

    .anav .acount {
      margin-left: auto;
      background: var(--red);
      color: #fff;
      border-radius: 20px;
      font-size: 10.5px;
      font-weight: 800;
      min-width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 5px;
    }

    .anav-spacer {
      flex: 1;
    }

    .aside-bot {
      padding: 10px 8px;
      border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .alogout {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 10px 12px;
      border-radius: 10px;
      color: rgba(255, 255, 255, .4);
      font-size: 13px;
      font-weight: 700;
      width: 100%;
      transition: .15s;
    }

    .alogout:hover {
      color: var(--red);
      background: rgba(239, 68, 68, .08);
    }

    .mob-topbar {
      display: none;
      background: var(--navy);
      padding: 12px 14px;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 9100;
    }

    .mob-topbar .aln {
      font-size: 17px;
      font-weight: 900;
      color: #fff;
    }

    .mob-topbar .aln em {
      color: var(--orange);
      font-style: normal;
    }

    .amenu-btn {
      color: #fff;
      font-size: 22px;
      padding: 4px;
    }

    .amain {
      margin-left: 235px;
      flex: 1;
      padding: 26px;
      min-height: 100vh;
    }

    .apage {
      display: none;
    }

    .apage.on {
      display: block;
    }

    .apage-title {
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--navy);
    }

    .apage-sub {
      font-size: 12.5px;
      color: var(--muted);
      margin-top: 2px;
    }

    .apage-header {
      margin-bottom: 22px;
    }

    .apage-header-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 14px;
      margin-bottom: 24px;
    }

    .scard {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 13px;
    }

    .scard-ico {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }

    .scard-val {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
    }

    .scard-lbl {
      font-size: 11.5px;
      color: var(--muted);
      font-weight: 600;
      margin-top: 2px;
    }

    .panel {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      margin-bottom: 22px;
    }

    .panel-head {
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .panel-title {
      font-size: 14px;
      font-weight: 800;
      color: var(--navy);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 15px;
      border-radius: 9px;
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      transition: .15s;
      white-space: nowrap;
    }

    .btn-orange {
      background: var(--orange);
      color: #fff;
    }

    .btn-orange:hover {
      background: var(--orange-dark);
    }

    .btn-red {
      background: var(--red);
      color: #fff;
    }

    .btn-red:hover {
      opacity: .85;
    }

    .btn-gray {
      background: var(--light2);
      color: var(--navy);
    }

    .btn-gray:hover {
      background: var(--border);
    }

    .btn-sm {
      padding: 5px 10px;
      font-size: 12px;
    }

    .tbl-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 640px;
    }

    th {
      padding: 10px 16px;
      font-size: 11px;
      font-weight: 800;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .4px;
      background: var(--light);
      text-align: left;
      white-space: nowrap;
    }

    td {
      padding: 12px 16px;
      font-size: 13px;
      border-bottom: 1px solid var(--border);
      vertical-align: middle;
    }

    tr:last-child td {
      border-bottom: none;
    }

    tr.new-order {
      background: #fff8f5;
    }

    .tbadge {
      display: inline-flex;
      align-items: center;
      padding: 3px 8px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 800;
    }

    .tbadge-green {
      background: #dcfce7;
      color: #166534;
    }

    .tbadge-blue {
      background: #dbeafe;
      color: #1e40af;
    }

    .tbadge-orange {
      background: #ffedd5;
      color: #9a3412;
    }

    .tbadge-red {
      background: #fee2e2;
      color: #991b1b;
    }

    .tbadge-gray {
      background: var(--light2);
      color: var(--muted);
    }

    .tactions {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
    }

    .status-select {
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 5px 9px;
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
      font-family: 'Manrope', sans-serif;
      background: #fff;
    }

    .phone-link {
      color: var(--orange-dark);
      font-weight: 800;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 14px;
      padding: 18px;
    }

    .item-card {
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
      position: relative;
    }

    .item-card .ic-photo {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
      background: var(--light2);
    }

    .item-card .ic-ico {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--orange-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .item-card h4 {
      font-size: 13.5px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 3px;
    }

    .item-card .ic-sub {
      font-size: 11.5px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .item-card .ic-actions {
      display: flex;
      gap: 6px;
      margin-top: 10px;
    }

    .item-card .ic-stars {
      color: #fbbf24;
      font-size: 12.5px;
      margin-bottom: 6px;
    }

    .item-card .ic-text {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .mwrap {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(15, 27, 45, .6);
      backdrop-filter: blur(4px);
      z-index: 9800;
      align-items: center;
      justify-content: center;
      padding: 14px;
    }

    .mwrap.open {
      display: flex;
    }

    .mbox {
      background: #fff;
      border-radius: 18px;
      padding: 28px;
      width: 94vw;
      max-width: 540px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
    }

    .mbox-title {
      font-size: 1.05rem;
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .mclose {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--light2);
      border-radius: 50%;
      width: 32px;
      height: 32px;
      font-size: 17px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .detail-row {
      display: flex;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }

    .detail-row:last-child {
      border-bottom: none;
    }

    .detail-row .dk {
      font-size: 11.5px;
      font-weight: 800;
      color: var(--muted);
      width: 120px;
      flex-shrink: 0;
      text-transform: uppercase;
      letter-spacing: .3px;
    }

    .detail-row .dv {
      font-size: 13.5px;
      color: var(--navy);
      font-weight: 700;
    }

    .mactions {
      display: flex;
      gap: 8px;
      justify-content: flex-end;
      margin-top: 18px;
    }

    .photo-preview {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-top: 10px;
      border: 2px solid var(--border);
      display: none;
    }

    .search-input {
      border: 1.5px solid var(--border);
      border-radius: 9px;
      padding: 7px 12px;
      font-family: 'Manrope', sans-serif;
      font-size: 13px;
      width: 200px;
      color: var(--text);
      outline: none;
    }

    .search-input:focus {
      border-color: var(--orange);
    }

    .filter-tabs {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .setting-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 24px;
      margin-bottom: 18px;
    }

    .setting-card h3 {
      font-size: .95rem;
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .setting-desc {
      font-size: 12.5px;
      color: var(--muted);
      margin-bottom: 14px;
      line-height: 1.6;
    }

    .amob-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .45);
      z-index: 9150;
    }

    .amob-overlay.open {
      display: block;
    }

    @media(max-width:768px) {
      .aside {
        left: -260px;
      }

      .aside.mob-open {
        left: 0;
      }

      .mob-topbar {
        display: flex;
      }

      .amain {
        margin-left: 0;
        padding: 14px;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .search-input {
        width: 140px;
      }

      .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }
    }

    @media(max-width:480px) {
      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .mbox {
        padding: 20px;
      }

      .panel-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }

      .login-card {
        padding: 30px 22px;
      }

      .search-input {
        width: 100%;
      }
    }

    /* ============================================================
       BUYURTMA FORMASI — yangi chiroyli ko'rinish (faqat shu bo'lim)
       ============================================================ */
    .order-form-card {
      position: relative;
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .order-form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    }

    .order-form-card .order-form-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 24px;
    }

    .order-form-card .order-form-headtext h3 {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .order-form-card .order-form-headtext h3::before {
      content: '🛠';
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 11px;
      background: var(--orange-light);
      font-size: 18px;
      flex-shrink: 0;
    }

    /* Til almashtirish tugmasi */
    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      background: var(--light2);
      border-radius: 50px;
      padding: 3px;
      flex-shrink: 0;
    }

    .lang-switch button {
      padding: 6px 13px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 800;
      color: var(--muted);
      transition: .2s;
    }

    .lang-switch button.active {
      background: #fff;
      color: var(--orange-dark);
      box-shadow: 0 2px 8px rgba(15, 27, 45, .08);
    }

    /* Header ichidagi til tugmasi */
    .header-lang {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      background: var(--light2);
      border-radius: 50px;
      padding: 3px;
      flex-shrink: 0;
      margin-right: 4px;
    }

    .header-lang button {
      padding: 6px 12px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 800;
      color: var(--muted);
      transition: .2s;
    }

    .header-lang button.active {
      background: #fff;
      color: var(--orange-dark);
      box-shadow: 0 2px 8px rgba(15, 27, 45, .08);
    }

    /* Mobil drawer ichida - chap tomonda joylashadi */
    .mob-drawer-lang {
      display: flex;
      align-items: center;
      gap: 2px;
      background: var(--light2);
      border-radius: 50px;
      padding: 3px;
    }

    .mob-drawer-lang button {
      padding: 7px 14px;
      border-radius: 50px;
      font-size: 12.5px;
      font-weight: 800;
      color: var(--muted);
      transition: .2s;
    }

    .mob-drawer-lang button.active {
      background: #fff;
      color: var(--orange-dark);
      box-shadow: 0 2px 8px rgba(15, 27, 45, .08);
    }

    .mob-drawer-head {
      justify-content: space-between;
    }

    .mob-drawer-head .mob-drawer-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* Fgroup'larga ikonkali label */
    .order-form-card .fgroup label {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Telefon input + bayroqcha prefiks */
    .phone-field-wrap {
      position: relative;
      display: flex;
      align-items: stretch;
      border: 1.5px solid var(--border);
      border-radius: 11px;
      overflow: hidden;
      transition: .2s;
      background: #fff;
    }

    .phone-field-wrap:focus-within {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(255, 107, 53, .1);
    }

    .phone-field-wrap .phone-flag {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 0 12px;
      background: var(--light2);
      font-size: 18px;
      flex-shrink: 0;
      border-right: 1px solid var(--border);
    }

    .phone-field-wrap input {
      border: none !important;
      border-radius: 0 !important;
      box-shadow: none !important;
    }

    .phone-field-wrap input:focus {
      box-shadow: none !important;
    }

    @media(max-width:480px) {
      .order-form-card .order-form-head {
        flex-direction: column;
      }

      .lang-switch {
        align-self: flex-start;
      }
    }