*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue: #1D4ED8;
    --blue-light: #2563EB;
    --blue-pale: #EFF6FF;
    --dark: #0B1120;
    --gray: #64748B;
    --gray-light: #F4F6FB;
    --white: #FFFFFF;
    --accent: #F59E0B;
    --border: #E2E8F0;
    --text: #1E293B;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    height: 68px;
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
  }
  .nav-logo img{
max-width: 160px;
  }
  .nav-logo span { color: var(--blue); }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a {
    text-decoration: none; color: var(--gray);
    font-size: 0.9rem; font-weight: 600;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta {
    background: var(--blue); color: white;
    border: none; border-radius: 50px;
    padding: 10px 22px; font-size: 0.88rem;
    font-weight: 700; cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
  }
  .nav-cta-mobile {
    display: none;
    background: var(--blue); color: white;
    border: none; border-radius: 50%;
    width: 38px; height: 38px;
    font-weight: 700; cursor: pointer;
    font-family: 'Inter', sans-serif;
    align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  
  .nav-cta:hover { background: var(--blue-light); transform: translateY(-2px) scale(1.04); box-shadow: 0 6px 20px rgba(29,78,216,0.32); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background:
      radial-gradient(ellipse at 15% 60%, rgba(29,78,216,0.11) 0%, transparent 55%),
      radial-gradient(ellipse at 85% 15%, rgba(245,158,11,0.09) 0%, transparent 50%),
      radial-gradient(ellipse at 60% 90%, rgba(37,99,235,0.07) 0%, transparent 40%),
      linear-gradient(160deg, #eef4ff 0%, #ffffff 55%, #fffdf0 100%);
    display: flex; align-items: center;
    padding: 100px 5% 60px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -200px; right: -150px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(29,78,216,0.09) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.09) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-pale); color: var(--blue);
    border-radius: 50px; padding: 6px 16px;
    font-size: 0.82rem; font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(26,92,255,0.15);
  }
  .hero-badge::before { content: '✓'; font-size: 0.8rem; }
  .hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.8rem);
    line-height: 1.15; font-weight: 800;
    color: var(--dark); margin-bottom: 20px;
  }
  .hero h1 em { color: var(--blue); font-style: normal; }
  .hero-desc {
    color: var(--gray); font-size: 1.05rem;
    margin-bottom: 36px; max-width: 480px;
    line-height: 1.7;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
  .btn-primary {
    background: var(--blue); color: white;
    border: none; border-radius: 50px;
    padding: 15px 32px; font-size: 1rem;
    font-weight: 700; cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 30px rgba(29,78,216,0.32);
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    animation: shimmer-sweep 3.5s ease infinite;
  }
  .btn-primary:hover { background: var(--blue-light); transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 44px rgba(29,78,216,0.42); }
  .btn-secondary {
    background: white; color: var(--dark);
    border: 2px solid var(--border); border-radius: 50px;
    padding: 15px 32px; font-size: 1rem;
    font-weight: 700; cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(29,78,216,0.12); }
  .hero-stats {
    display: flex; gap: 32px;
  }
  .hero-stat { }
  .hero-stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem; font-weight: 800; color: var(--dark);
    line-height: 1;
  }
  .hero-stat-num span { color: var(--blue); }
  .hero-stat-label { font-size: 0.8rem; color: var(--gray); font-weight: 500; margin-top: 4px; }

  /* Hero visual */
  .hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
      flex-direction: column
  }
.hero-visual img{
    max-width: 550px;
    width: 100%;
    filter: drop-shadow(0 8px 40px rgba(29,78,216,0.25));
}
  .window-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(15,22,35,0.12), 0 2px 8px rgba(15,22,35,0.06);
    padding: 32px;
    width: 100%; max-width: 510px;
    box-sizing: border-box;
    position: relative;
      margin-top: -100px;

  }

  .window-card-label {
    font-size: 0.8rem; color: var(--gray); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 6px;
  }
  .window-card-title {
    font-weight: 700; font-size: 1rem; color: var(--dark);
    margin-bottom: 12px;
  }
  .window-card-badges {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .window-card-badge {
    background: var(--blue-pale); color: var(--blue);
    border-radius: 50px; padding: 4px 12px;
    font-size: 0.78rem; font-weight: 700;
  }
  .hero-price-list {
    border-top: 1px solid var(--border);
    margin-top: 14px; padding-top: 12px;
    display: flex; flex-direction: column; gap: 7px;
  }
  .hero-price-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; color: var(--gray);
  }
  .hero-price-val { font-weight: 700; color: #16a34a; font-size: 0.88rem; }
  .floating-tag {
    position: absolute;
    background: white; border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15,22,35,0.12);
    padding: 10px 16px;
    font-size: 0.8rem; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
  }
  .floating-tag.tag1 { top: -12px; right: 12px; color: #16a34a; }
  .tag-dot { width: 8px; height: 8px; border-radius: 50%; }
  .tag-dot.green { background: #16a34a; animation: pulse-dot 2s ease-in-out infinite; }
  .tag-dot.orange { background: var(--accent); }

  /* SECTION */
  section { padding: 80px 5%; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-pale); color: var(--blue);
    border-radius: 50px; padding: 5px 14px;
    font-size: 0.78rem; font-weight: 700;
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em;
  }
  .section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    font-weight: 800; color: var(--dark);
    line-height: 1.2; margin-bottom: 14px;
  }
  .section-title em { color: var(--blue); font-style: normal; }
  .section-sub { color: var(--gray); font-size: 1rem; max-width: 560px; line-height: 1.7; }

  /* SERVICES — chess layout */
  .services-bg { background: var(--gray-light); }

  .svc-list { margin-top: 64px; display: flex; flex-direction: column; gap: 32px; }

  .svc-row {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 0;
    border-radius: 28px;
    overflow: visible;
    border: 1px solid var(--border);
    background: white;
    transition: box-shadow .4s ease, transform .4s ease, border-color .4s ease;
    will-change: transform;
  }
  .svc-row .svc-main { border-radius: 28px 0 0 28px; overflow: hidden; }
  .svc-row .svc-detail { border-radius: 0 28px 28px 0; overflow: hidden; }
  .svc-row--rev .svc-main { border-radius: 0 28px 28px 0; }
  .svc-row--rev .svc-detail { border-radius: 28px 0 0 28px; }
  .svc-row:hover {
    box-shadow: 0 24px 64px rgba(15,22,35,0.13);
    transform: translateY(-5px);
    border-color: rgba(29,78,216,0.25);
  }
  .svc-row--rev { grid-template-columns: 2.2fr 1fr; }
  .svc-row--rev .svc-main { order: 2; border-radius: 0 28px 28px 0; }
  .svc-row--rev .svc-detail { order: 1; border-radius: 28px 0 0 28px; }

  .svc-main {
    background: var(--gray-light);
    padding: 52px 40px;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: center;
    position: relative; overflow: hidden;
    border-right: 1px solid var(--border);
  }
  .svc-main--img { padding: 0; min-height: 280px; }
  .svc-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
  }
  .svc-main-content {
    position: absolute; inset: 0; z-index: 1;
    padding: 52px 40px;
    width: 100%;
    background: linear-gradient(to top, rgba(11,17,32,0.7) 0%, rgba(11,17,32,0.2) 55%, transparent 100%);
    height: 100%;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
  }
  .svc-main-content-inner { display: contents; }
  .svc-main--img .svc-name { color: white; text-shadow: 0 2px 12px rgba(0,0,0,0.7); margin-bottom: 6px; }
  .svc-main--img.svc-main--featured .svc-name { color: white; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
  .svc-main--img .svc-price { color: white; background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
  .svc-row--rev .svc-main {
    border-right: none;
    border-left: 1px solid var(--border);
  }
  .svc-main--featured {
    background: var(--gray-light);
    border-left: 4px solid var(--blue);
  }
  .svc-row--rev .svc-main--featured {
    border-left: none;
    border-right: 4px solid var(--blue);
  }
  .svc-main--featured .svc-name { color: var(--dark); }
  .svc-main--featured .svc-price { color: var(--blue); background: var(--blue-pale); border-color: rgba(29,78,216,0.2); }
  .svc-main--featured .svc-icon-wrap { background: transparent; }

  .svc-tag {
    background: var(--accent); color: white;
    border-radius: 50px; padding: 3px 14px;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 16px;
  }
  .svc-icon-wrap {
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1;
  }
  .svc-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--dark); line-height: 1.3;
    margin-bottom: 16px;
  }
  .svc-detail .svc-name {
    color: var(--dark);
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
  }
  .svc-price-plain {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #16a34a;
    white-space: nowrap;
  }
  .svc-price {
    display: inline-block;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 6px 18px;
    font-weight: 700; font-size: 0.9rem; color: var(--blue);
  }

  .svc-detail {
    padding: 52px 48px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .svc-row:not(.svc-row--rev) .svc-detail .svc-btn { align-self: flex-end; }
  .svc-detail > p {
    color: var(--gray); font-size: 0.95rem; line-height: 1.7;
    margin-bottom: 20px;
  }
  .svc-bullets {
    list-style: none;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 28px;
  }
  .svc-bullets li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.86rem; color: var(--text); font-weight: 500;
  }
  .svc-bullets li::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--blue);
    border-radius: 50%; flex-shrink: 0;
  }
  .svc-btn {
    align-self: flex-start;
    background: var(--blue); color: white;
    border: none; border-radius: 50px;
    padding: 13px 28px; font-size: 0.9rem; font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(29,78,216,0.28);
  }
  .svc-btn:hover {
    background: var(--blue-light);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 32px rgba(29,78,216,0.38);
  }

  @media (max-width: 760px) {
    .svc-row, .svc-row--rev { grid-template-columns: 1fr; }
    .svc-row--rev .svc-main { order: 0; border-left: none; border-top: 1px solid var(--border); }
    .svc-row--rev .svc-detail { order: 0; }
    .svc-btn { align-self: center; }
    .svc-main { border-right: none; border-bottom: 1px solid var(--border); }
    .svc-detail { padding: 28px 24px; }
    .svc-main { padding: 32px 28px; }
    .svc-bullets { grid-template-columns: 1fr; }
    .svc-row .svc-main,
    .svc-row--rev .svc-main { border-radius: 28px 28px 0 0; }
    .svc-row .svc-detail,
    .svc-row--rev .svc-detail { border-radius: 0 0 28px 28px; }
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 48px;
  }
  .service-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--blue);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15,22,35,0.1); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 54px; height: 54px;
    background: var(--blue-pale);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  .service-card h3 {
    font-weight: 800; font-size: 1.05rem;
    color: var(--dark); margin-bottom: 10px;
  }
  .service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
  .service-price {
    font-weight: 700; color: var(--blue);
    font-size: 0.9rem;
  }
  .service-card.featured {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
  }
  .service-card.featured::before { background: var(--accent); }
  .service-card.featured .service-icon { background: rgba(255,255,255,0.15); }
  .service-card.featured h3 { color: white; }
  .service-card.featured p { color: rgba(255,255,255,0.75); }
  .service-card.featured .service-price { color: rgba(255,255,255,0.9); }
  .service-card.featured .service-tag {
    display: inline-block;
    background: var(--accent); color: white;
    border-radius: 50px; padding: 3px 12px;
    font-size: 0.72rem; font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 0.05em;
  }

  /* WHY */
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; margin-top: 20px;
  }
  .why-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
  .why-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; border-radius: 16px;
    border: 1px solid var(--border);
    transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: white;
  }
  .why-item:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(26,92,255,0.08); }
  .why-item-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--blue-pale); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }
  .why-item-text h4 { font-weight: 800; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
  .why-item-text p { color: var(--gray); font-size: 0.87rem; line-height: 1.5; }
  .why-visual {
    background: linear-gradient(135deg, var(--blue-pale), #e8f4ff);
    border-radius: 24px; padding: 40px;
    text-align: center; position: relative; overflow: hidden;
  }
  .why-visual-inner {
    background: white; border-radius: 16px;
    padding: 32px; box-shadow: 0 12px 40px rgba(15,22,35,0.1);
  }
  .why-big-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 5rem; font-weight: 800;
    color: var(--blue); line-height: 1;
    margin-bottom: 8px;
  }
  .why-big-label { color: var(--gray); font-size: 0.9rem; font-weight: 600; margin-bottom: 24px; }
  .why-ratings { display: flex; flex-direction: column; gap: 12px; }
  .why-rating-row { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
  .why-rating-label { color: var(--dark); font-weight: 600; min-width: 140px; text-align: left; }
  .why-rating-bar { flex: 1; height: 8px; background: var(--border); border-radius: 50px; overflow: hidden; }
  .why-rating-fill { height: 100%; background: var(--blue); border-radius: 50px; }
  .why-rating-val { color: var(--gray); font-size: 0.8rem; min-width: 30px; }

  /* PROCESS */
  .process-bg {
    background:
      radial-gradient(ellipse at 25% 55%, rgba(29,78,216,0.2) 0%, transparent 60%),
      radial-gradient(ellipse at 78% 20%, rgba(37,99,235,0.12) 0%, transparent 50%),
      linear-gradient(145deg, #0B1120 0%, #0e1f40 50%, #0B1120 100%);
  }
  .process-bg .section-title { color: white; }
  .process-bg .section-sub { color: rgba(255,255,255,0.55); }
  .process-bg .section-label { background: rgba(26,92,255,0.25); color: #7aabff; }
  .steps {
    display: flex; gap: 0; margin-top: 56px;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute; top: 28px; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light), rgba(255,255,255,0.1));
  }
  .step {
    flex: 1; text-align: center; padding: 0 16px;
    position: relative;
  }
  .step-num {
    width: 56px; height: 56px;
    background: var(--blue); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; color: white;
    margin: 0 auto 20px;
    position: relative; z-index: 1;
    box-shadow: 0 0 0 6px rgba(29,78,216,0.25), 0 0 28px rgba(29,78,216,0.25);
  }
  .step h4, .step-title { color: white; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
  .step p { color: rgba(255,255,255,0.5); font-size: 0.83rem; line-height: 1.55; }

  /* REVIEWS — swiper */
  .reviews-swiper {
    margin-top: 48px;
    padding-bottom: 56px !important;
    overflow: visible;
  }
  .reviews-swiper .swiper-wrapper { align-items: stretch; }
  .reviews-swiper .swiper-slide { height: auto; }
  .review-card {
    background: white; border-radius: 20px;
    border: 1px solid var(--border); padding: 32px 28px;
    height: 100%;
    display: flex; flex-direction: column;
    transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .review-card:hover { box-shadow: 0 12px 36px rgba(15,22,35,0.09); transform: translateY(-4px); }
  .review-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
  .review-text { color: var(--text); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; flex: 1; }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--blue-pale); display: flex; align-items: center;
    justify-content: center; font-weight: 800; color: var(--blue);
    font-size: 1rem; flex-shrink: 0;
  }
  .review-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }

  .reviews-pagination { bottom: 6px !important; }
  .reviews-pagination .swiper-pagination-bullet-active { background: var(--blue) !important; }



  /* GALLERY */
  .gallery-bg { background: var(--gray-light); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px; margin-top: 48px;
  }
  .gallery-item {
    border-radius: 16px; overflow: hidden;
    background: linear-gradient(135deg, #dce8ff, #eef3ff);
    position: relative; aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s ease;
    cursor: pointer;
  }
  .gallery-item:hover { transform: scale(1.04); box-shadow: 0 16px 48px rgba(29,78,216,0.15); }
  .gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
  .gallery-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(15,22,35,0.7));
    color: white; padding: 16px 14px 12px;
    font-size: 0.8rem; font-weight: 700;
  }

  /* PRICING */
  .pricing-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 20px; margin-top: 48px;
  }
  .price-card {
    border-radius: 20px; padding: 32px 28px;
    border: 2px solid var(--border); background: white;
    position: relative; transition: all .25s;
  }
  .price-card:hover { border-color: var(--blue); box-shadow: 0 16px 48px rgba(26,92,255,0.1); }
  .price-card.popular {
    border-color: var(--blue);
    background: linear-gradient(160deg, #eff4ff, white);
    animation: glow-card 3s ease-in-out infinite;
  }
  .popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: white; border-radius: 50px;
    padding: 4px 18px; font-size: 0.75rem; font-weight: 800;
    white-space: nowrap; text-transform: uppercase; letter-spacing: 0.05em;
  }
  .price-service { font-size: 0.8rem; color: var(--gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
  .price-title { font-weight: 800; font-size: 1.1rem; color: var(--dark); margin-bottom: 20px; }
  .price-amount {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.4rem; font-weight: 800; color: var(--dark); margin-bottom: 4px;
    line-height: 1;
  }
  .price-amount span { font-size: 1rem; color: var(--gray); font-family: 'Inter', sans-serif; font-weight: 500; }
  .price-note { font-size: 0.8rem; color: var(--gray); margin-bottom: 24px; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--text); }
  .price-features li::before { content: '✓'; color: var(--blue); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
  .price-btn {
    width: 100%; padding: 13px; border-radius: 50px;
    font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem;
    cursor: pointer; transition: all .2s; border: 2px solid var(--blue);
    color: var(--blue); background: transparent;
  }
  .price-btn:hover, .price-card.popular .price-btn {
    background: var(--blue); color: white;
  }
  .price-card.popular .price-btn:hover { background: var(--blue-light); }

  /* FAQ */
  .faq-bg { background: var(--gray-light); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
  .faq-item {
    background: white; border-radius: 16px;
    border: 1px solid var(--border); padding: 24px 28px;
    cursor: pointer; transition: border-color .3s ease, box-shadow .3s ease;
  }
  .faq-item:hover { border-color: var(--blue); }
  .faq-item.faq-open { border-color: var(--blue); box-shadow: 0 4px 24px rgba(29,78,216,0.08); }
  .faq-q { font-weight: 700; font-size: 0.95rem; color: var(--dark); display: flex; justify-content: space-between; gap: 12px; user-select: none; }
  .faq-q::after { content: '+'; color: var(--blue); font-size: 1.2rem; flex-shrink: 0; transition: transform .3s ease; }
  .faq-item.faq-open .faq-q::after { transform: rotate(45deg); }
  .faq-a { color: var(--gray); font-size: 0.87rem; line-height: 1.6; }

  /* CTA */
  .cta-section {
    background:
      radial-gradient(ellipse at 18% 55%, rgba(245,158,11,0.14) 0%, transparent 50%),
      radial-gradient(ellipse at 82% 25%, rgba(255,255,255,0.06) 0%, transparent 40%),
      linear-gradient(135deg, var(--blue) 0%, #1e3a8a 100%);
    padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
  }
  .cta-img {
    position: absolute;
    right: 0; bottom: 0;
    height: 100%; width: auto;
    max-width: 45%;
    object-fit: cover;
    object-position: left center;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent 0%, black 35%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
  }
  .cta-section::before {
    content: '';
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
  }
  .cta-section .section-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); margin-bottom: 20px; }
  .cta-section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.3rem); font-weight: 800;
    color: white; margin-bottom: 16px; line-height: 1.2;
  }
  .cta-section p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
  .cta-form {
    display: flex; gap: 12px; max-width: 480px; margin: 0 auto 20px;
    flex-wrap: wrap; justify-content: center;
  }
  .cta-input {
    flex: 1; min-width: 200px;
    background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50px; padding: 14px 20px;
    color: white; font-family: 'Inter', sans-serif; font-size: 17px;
    outline: none; transition: border-color .2s;
  }
  .cta-input::placeholder { color: rgba(255,255,255,0.55); }
  .cta-input:focus { border-color: rgba(255,255,255,0.6); }
  .btn-white {
    background: white; color: var(--blue);
    border: none; border-radius: 50px;
    padding: 14px 28px; font-size: 0.95rem;
    font-weight: 800; cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .2s; white-space: nowrap;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .cta-note { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

  .cta-contacts {
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: center; margin-top: 28px;
  }
  .cta-contact-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.22);
    color: white; text-decoration: none;
    border-radius: 50px; padding: 11px 22px;
    font-size: 0.9rem; font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(6px);
  }
  .cta-contact-btn:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .cta-contact-btn.viber { border-color: rgba(126,76,195,0.6); background: rgba(126,76,195,0.25); }
  .cta-contact-btn.viber:hover { background: rgba(126,76,195,0.45); border-color: #7e4cc3; }
  .cta-contact-btn.telegram { border-color: rgba(0,136,204,0.6); background: rgba(0,136,204,0.25); }
  .cta-contact-btn.telegram:hover { background: rgba(0,136,204,0.45); border-color: #0088cc; }

  /* CONTACTS */
  .contacts-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    margin-top: 48px; align-items: start;
  }
  .contact-info { display: flex; flex-direction: column; gap: 20px; }
  .contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; border-radius: 16px; border: 1px solid var(--border); background: white;
  }
  .contact-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--blue-pale); display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; flex-shrink: 0;
  }
  .contact-label { font-size: 0.78rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
  .contact-val { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
  .contact-form {
    background: white; border-radius: 24px;
    border: 1px solid var(--border); padding: 36px;
    box-shadow: 0 8px 32px rgba(15,22,35,0.06);
  }
  .contact-form h3 { font-weight: 800; font-size: 1.2rem; color: var(--dark); margin-bottom: 24px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border); border-radius: 12px;
    font-family: 'Inter', sans-serif; font-size: 17px;
    color: var(--dark); outline: none; transition: border-color .2s;
    background: var(--gray-light);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: white; }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-submit {
    width: 100%; padding: 14px;
    background: var(--blue); color: white; border: none;
    border-radius: 50px; font-family: 'Inter', sans-serif;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1); margin-top: 4px;
    box-shadow: 0 6px 20px rgba(29,78,216,0.3);
  }
  .form-submit:hover { background: var(--blue-light); transform: translateY(-2px) scale(1.01); box-shadow: 0 10px 30px rgba(29,78,216,0.38); }

  /* MODAL */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(11,17,32,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
  }
  .modal-overlay.active {
    opacity: 1; pointer-events: all;
  }
  .modal-box {
    background: white; border-radius: 28px;
    padding: 44px 40px 36px;
    width: 100%; max-width: 480px;
    position: relative;
    box-shadow: 0 40px 100px rgba(11,17,32,0.3);
    transform: translateY(24px) scale(0.97);
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .3s ease;
    opacity: 0;
  }
  .modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .modal-close {
    position: absolute; top: 18px; right: 20px;
    background: var(--gray-light); border: none;
    width: 36px; height: 36px; border-radius: 50%;
    font-size: 1.3rem; line-height: 1; cursor: pointer;
    color: var(--gray); display: flex; align-items: center; justify-content: center;
    transition: all .2s;
  }
  .modal-close:hover { background: var(--border); color: var(--dark); transform: scale(1.1); }
  .modal-icon {
    font-size: 2.2rem; margin-bottom: 12px;
  }
  .modal-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.35rem; font-weight: 800; color: var(--dark);
    margin-bottom: 6px;
  }
  .modal-sub {
    color: var(--gray); font-size: 0.88rem; margin-bottom: 24px; line-height: 1.5;
  }
  .modal-submit { margin-top: 8px; }

  /* Modal form hidden during success */
  .modal-form-hidden > *:not(.modal-close):not(#modal-success) { display: none !important; }

  /* Modal success state */
  .modal-success {
    display: none;
    flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 48px 32px;
  }
  .modal-success--show { display: flex; }
  .modal-success-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: #dcfce7; color: #16a34a;
    font-size: 2rem; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .modal-success-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem; font-weight: 800; color: var(--dark);
    margin-bottom: 10px;
  }
  .modal-success-text {
    color: var(--gray); font-size: 0.92rem; line-height: 1.6;
  }
  .modal-contacts {
    display: flex; justify-content: center; gap: 20px;
    margin: 16px 0 0;
  }
  .modal-contact-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
    flex-shrink: 0;
  }
  .modal-contact-btn:hover { transform: scale(1.1); opacity: 0.85; }
  .modal-contact-phone { background: rgba(29,78,216,0.12); }
  .modal-contact-viber { background: rgba(115,96,242,0.12); }
  .modal-contact-telegram { background: rgba(42,171,238,0.12); }
  .modal-contact-phone svg { stroke: var(--blue); fill: none; }
  .modal-contact-viber { color: #7360f2; }
  .modal-contact-telegram { color: #2aabee; }
  .modal-note {
    text-align: center; color: var(--gray);
    font-size: 0.78rem; margin-top: 14px; line-height: 1.5;
  }

  /* ABOUT — SEO text block */
  .about-section {
    background: var(--gray-light);
    padding: 48px 5%;
    border-top: 1px solid var(--border);
  }
  .about-section .container { max-width: 1200px; margin: 0 auto; }
  .about-inner { max-width: 1200px; margin: 0 auto; }
  .about-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
  }
  .about-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 10px;
  }

  /* FOOTER */
  footer {
padding: 48px 5% 28px;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    margin-bottom: 40px;
  }
  .footer-brand { max-width: 100%; }
  .footer-logo-img { height: 48px; width: auto; margin-bottom: 16px; display: block; }
  .footer-desc { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.65; margin-bottom: 20px; }
  .footer-desc p { margin-bottom: 8px; }
  .footer-desc strong { color: rgba(255,255,255,0.65); font-weight: 600; }
  .footer-phones a {
    display: block; color: rgba(255,255,255,0.8); text-decoration: none;
    font-weight: 700; font-size: 0.95rem; margin-bottom: 6px;
    transition: color .2s;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px; display: flex; justify-content: space-between;
    align-items: center; max-width: 1200px; margin: 0 auto;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-copy { color: #929292; font-size: 0.8rem; }
  .footer-privacy { color: #929292; font-size: 0.8rem; text-decoration: none; transition: color .2s; }
  .footer-privacy:hover { color: #c0c0c0; }

  /* Keyframes */
  @keyframes shimmer-sweep {
    0% { left: -100%; }
    45%, 100% { left: 150%; }
  }
  @keyframes float-tag {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-9px); }
  }
  @keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.55); }
    60% { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
  }
  @keyframes glow-card {
    0%, 100% { box-shadow: 0 0 0 0 rgba(29,78,216,0.18), 0 16px 48px rgba(29,78,216,0.08); }
    50% { box-shadow: 0 0 0 7px rgba(29,78,216,0), 0 20px 64px rgba(29,78,216,0.22); }
  }
  @keyframes hero-in-left {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes hero-in-right {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .hero-inner > div:first-child {
    animation: hero-in-left 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
  }
  .hero-visual {
    animation: hero-in-right 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s both;
  }

  /* Scroll animations */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* Responsive */
  @media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: flex; width: 100%; max-width: 100%; margin: 0 auto; padding: 20px 0 20px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .contacts-grid { grid-template-columns: 1fr; }
    .footer-inner { max-width: 100%; }
    .steps { flex-direction: column; gap: 24px; }
    .steps::before { display: none; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-inner { position: relative; }
    .nav-cta-mobile { display: inline-flex; align-items: center; justify-content: center; position: absolute; right: 0; }
    .nav-logo { flex: 1; display: flex; justify-content: center; }
    .nav-logo img { max-width: 120px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }

  }
  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    section { padding: 60px 5%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-visual img{
      max-width: 350px;
    }
    .cta-section {
      padding-bottom: 340px;
    }
    .cta-img {
      height: auto;
      width: 70%;
      max-width: 320px;
      right: 50%;
      transform: translateX(50%);
      bottom: 0;
      mask-image: linear-gradient(to top, black 60%, transparent 100%);
      -webkit-mask-image: linear-gradient(to top, black 60%, transparent 100%);
    }
        .app-develop {

  gap: 0px!important;
}
  }
  .app-develop {
    font-size: 10px;
    display: flex;
    gap:10px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    max-width: 220px;
    color: #929292;
    margin: 10px auto;
    text-decoration: none;
  }