﻿:root {
      --primary: #1e3a5f;
      --secondary: #2f2f2f;
      --accent: #f5b400;
      --bg: #f8f9fa;
      --bg-soft: #eef2f7;
      --surface: #fff;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #d8dee6;
      --header-bg: rgba(30, 58, 95, 0.92);
      --header-link: #fff;
      --hero-overlay: linear-gradient(120deg, rgba(30, 58, 95, 0.9), rgba(47, 47, 47, 0.84));
      --shadow: 0 12px 30px rgba(30, 58, 95, 0.14);
      --shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.09);
    }
    body[data-theme="minimal"] {
      --primary: #23466f;
      --secondary: #3f536c;
      --accent: #2f7fe6;
      --bg: #f4f8ff;
      --bg-soft: #eaf1fb;
      --surface: #fcfeff;
      --text: #111827;
      --muted: #5f7085;
      --border: #d7e1ee;
      --header-bg: rgba(244, 249, 255, 0.92);
      --header-link: #1f2937;
      --hero-overlay: linear-gradient(120deg, rgba(244, 249, 255, 0.62), rgba(230, 240, 252, 0.5));
      --shadow: 0 14px 28px rgba(68, 102, 145, 0.15);
      --shadow-soft: 0 8px 20px rgba(74, 111, 158, 0.1);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Prompt', sans-serif;
      color: var(--text);
      line-height: 1.6;
      background: radial-gradient(circle at 88% -2%, rgba(245,180,0,.12), transparent 30%), radial-gradient(circle at -10% 55%, rgba(30,58,95,.12), transparent 36%), var(--bg);
      transition: background .35s ease, color .35s ease;
      overflow-x: hidden;
    }
    body[data-theme="minimal"] {
      background:
        radial-gradient(circle at 88% -8%, rgba(47, 127, 230, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,255,255,0)),
        var(--bg);
    }

    h1, h2, h3, .brand-main, .hero-badge {
      font-family: 'Chakra Petch', 'Prompt', sans-serif;
      letter-spacing: 0.1px;
    }
    .container { width: min(1140px, 92%); margin: 0 auto; }
    .section { padding: 80px 0; content-visibility: auto; contain-intrinsic-size: 820px; }
    header { position: sticky; top: 0; z-index: 1000; background: var(--header-bg); border-bottom: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(9px); }
    body[data-theme="minimal"] header { border-bottom-color: rgba(17,24,39,.08); }
    .nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 0; }
    .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--header-link); }
    .brand-logo { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; background: #fff; box-shadow: var(--shadow-soft); }
    .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
    .brand-main { font-size: 1.06rem; font-weight: 700; }
    .brand-sub { font-size: .74rem; opacity: .84; }
    .nav-links { display: flex; gap: 18px; list-style: none; }
    .nav-links a { color: var(--header-link); text-decoration: none; font-size: .96rem; opacity: .95; transition: color .2s ease; }
    .nav-links a:hover { color: var(--accent); }
    .nav-actions { display: flex; gap: 8px; }
    .theme-toggle { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: var(--header-link); cursor: pointer; transition: transform .22s ease, border-color .22s ease; }
    body[data-theme="minimal"] .theme-toggle { background: rgba(255, 255, 255, .95); border-color: rgba(64, 103, 153, .3); }
    .theme-toggle:hover { transform: translateY(-2px) rotate(8deg); border-color: var(--accent); }
    .hamburger { display: none; border: 0; background: transparent; color: var(--header-link); font-size: 1.24rem; cursor: pointer; }
    .hero { min-height: 90vh; color: #fff; display: grid; place-items: center; text-align: center; position: relative; background: var(--hero-overlay), image-set(url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?fm=avif&w=1200&q=50') type('image/avif'), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?fm=webp&w=1200&q=60') type('image/webp'), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=60') type('image/jpeg')) center/cover; }
    body[data-theme="minimal"] .hero { color: var(--text); background: var(--hero-overlay), url('./logo/n1.webp') center/contain no-repeat; }
    body[data-theme="minimal"] .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--hero-overlay), url('./logo/n5.webp') center/contain no-repeat;
      opacity: 0;
      animation: minimalHeroSwap 18s linear infinite;
      pointer-events: none;
    }
    .hero-content { width: min(900px, 92%); position: relative; z-index: 1; }
    .promo-bar {
      display: grid;
      gap: 4px;
      justify-items: center;
      text-align: center;
      margin: 0 auto 14px;
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.36);
      background: linear-gradient(135deg, rgba(220,38,38,.95), rgba(249,115,22,.92));
      color: #fff;
      box-shadow: 0 16px 34px rgba(124, 45, 18, .28);
      backdrop-filter: blur(6px);
      position: relative;
      overflow: hidden;
      animation: fadeUp .65s both, promoLoop 5.8s ease-in-out infinite 1.1s;
    }
    .promo-bar::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.34) 50%, transparent 70%);
      transform: translateX(-130%);
      animation: promoSweep 3.6s ease-in-out infinite;
      pointer-events: none;
    }
    .promo-bar strong { font-size: 1.02rem; line-height: 1.2; }
    .promo-bar p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.95); }
    .promo-timer {
      margin-top: 4px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      font-size: .82rem;
      font-weight: 600;
    }
    .promo-chip {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(17,24,39,.3);
      border: 1px solid rgba(255,255,255,.22);
      padding: 4px 8px;
      border-radius: 999px;
    }
    body[data-theme="minimal"] .promo-bar {
      border-color: rgba(30,58,95,.25);
      background: linear-gradient(135deg, #ff8a5b, #ffc561);
      color: #0f172a;
      box-shadow: 0 14px 30px rgba(191, 128, 25, .22);
    }
    body[data-theme="minimal"] .promo-bar p { color: #1f2937; }
    body[data-theme="minimal"] .promo-chip {
      background: rgba(255,255,255,.6);
      border-color: rgba(30,58,95,.2);
    }
    .hero-badge { display: inline-flex; gap: 8px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: 6px 14px; margin-bottom: 14px; animation: fadeUp .74s both; }
    body[data-theme="minimal"] .hero-badge { border-color: rgba(35,70,111,.24); background: rgba(240, 247, 255, .78); }
    .hero h1 { font-size: clamp(1.95rem, 4.1vw, 3.35rem); line-height: 1.2; margin-bottom: 14px; animation: fadeUp .88s both; }
    .hero p { font-size: clamp(1rem, 2vw, 1.15rem); color: #e5e7eb; margin-bottom: 28px; animation: fadeUp 1.02s both; }
    body[data-theme="minimal"] .hero h1 { color: #173a5f; text-shadow: none; }
    body[data-theme="minimal"] .hero p { color: #2f4155; }
    .hero-intro { max-width: 820px; margin-left: auto; margin-right: auto; }
    .hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; animation: fadeUp 1.16s both; }
    .hero-offer-note {
      margin-top: 8px;
      font-size: .88rem;
      color: #fde68a;
      font-weight: 500;
      animation: fadeUp 1.22s both;
    }
    body[data-theme="minimal"] .hero-offer-note { color: #92400e; }
    .hero-proof { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; animation: fadeUp 1.28s both; }
    .hero-proof li {
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.46);
      background: rgba(255,255,255,.1);
      color: #f8fafc;
      font-size: .88rem;
      font-weight: 500;
    }
    .hero-proof i { margin-right: 6px; color: #facc15; }
    body[data-theme="minimal"] .hero-proof li {
      border-color: rgba(35,70,111,.2);
      background: rgba(255,255,255,.78);
      color: #1f3f62;
    }
    body[data-theme="minimal"] .hero-proof i { color: #2f7fe6; }
    .btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 9px; text-decoration: none; font-weight: 600; padding: 12px 18px; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease; }
    .btn i { width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,.22); font-size: .82rem; }
    .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
    .btn-primary { background: var(--accent); color: #1f2937; }
    .btn-secondary { color: inherit; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.62); }
    body[data-theme="minimal"] .btn-secondary { background: rgba(255, 255, 255, .9); border-color: rgba(50, 94, 145, .35); }
    .btn-line { background: #06c755; color: #fff; border-color: #06c755; }
    .btn-line i { background: rgba(255,255,255,.2); }
    .btn-line:hover { box-shadow: 0 8px 22px rgba(6,199,85,.3); }
    .btn-ghost {
      background: rgba(255,255,255,.92);
      border-color: rgba(255,255,255,.92);
      color: #0f172a;
    }
    body[data-theme="minimal"] .btn-ghost {
      background: #fff;
      border-color: #c8d7eb;
      color: #1f3f62;
    }
    .stats-wrap { margin-top: -40px; position: relative; z-index: 8; }
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
    .stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; text-align: center; box-shadow: var(--shadow-soft); }
    .stat-card h3 { font-size: 1.62rem; color: var(--primary); margin-bottom: 2px; }
    .stat-card p { color: var(--muted); font-size: .9rem; }
    .section-title { text-align: center; margin-bottom: 34px; }
    .section-title h2 { font-size: clamp(1.64rem, 3vw, 2.24rem); color: var(--primary); margin-bottom: 8px; }
    .section-title p { width: min(720px, 100%); margin: 0 auto; color: var(--muted); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
    .card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-soft); padding: 22px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
    .card:hover { transform: translateY(-6px); border-color: rgba(245,180,0,.48); box-shadow: var(--shadow); }
    .card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.12rem; }
    .card ul { padding-left: 16px; color: #374151; font-size: .96rem; }
    .card ul li { margin-bottom: 6px; }
    .note-box { margin-top: 14px; background: #fff7dd; border-left: 4px solid var(--accent); padding: 10px 12px; border-radius: 8px; color: #4b5563; font-size: .95rem; }
    body[data-theme="minimal"] .note-box { background: #edf5ff; border-left-color: #2f7fe6; }
    .why-section, .reviews-section { background: var(--bg-soft); }
    .why-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: center; }
    .why-list { list-style: none; display: grid; gap: 12px; }
    .why-list li { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 10px; font-weight: 500; transition: transform .22s ease; }
    .why-list li:hover { transform: translateX(4px); }
    .why-list i { color: var(--accent); }
    .why-image { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); min-height: 320px; background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=80') center/cover; transition: transform .3s ease; }
    .why-image:hover { transform: scale(1.01); }
    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
    .compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; margin-bottom: 16px; }
    .ba-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-soft); overflow: hidden; }
    .ba-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 10px 12px; border-bottom: 1px solid var(--border); }
    .ba-head h4 { color: var(--primary); font-size: .95rem; line-height: 1.35; min-width: 0; flex: 1; }
    .ba-head small { color: var(--muted); font-size: .78rem; white-space: nowrap; flex-shrink: 0; }
    .ba-wrap { position: relative; height: 230px; overflow: hidden; background: #0f172a; }
    .ba-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .ba-wrap img.fit-contain {
      object-fit: contain;
      background: #0f172a;
    }
    .ba-after { position: absolute; inset: 0; width: var(--pos, 50%); overflow: hidden; }
    .ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: rgba(255,255,255,.9); transform: translateX(-50%); pointer-events: none; }
    .ba-handle { position: absolute; top: 50%; left: var(--pos, 50%); transform: translate(-50%, -50%); width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; background: #fff; color: #111827; font-size: .85rem; box-shadow: 0 10px 25px rgba(0,0,0,.25); pointer-events: none; }
    .ba-range { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: ew-resize; touch-action: pan-y; }
    .ba-tag { position: absolute; top: 8px; font-size: .72rem; font-weight: 600; color: #fff; padding: 4px 8px; border-radius: 5px; z-index: 2; }
    .ba-tag.before { left: 8px; background: rgba(0,0,0,.56); }
    .ba-tag.after { right: 8px; background: rgba(15,118,110,.9); }
    .gallery-item { border-radius: 12px; overflow: hidden; position: relative; min-height: 220px; border: 1px solid var(--border); box-shadow: var(--shadow-soft); transition: transform .28s ease, box-shadow .28s ease; }
    .gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
    .gallery-item:hover img { transform: scale(1.07); }
    .gallery-item span { position: absolute; left: 10px; bottom: 10px; background: rgba(0,0,0,.64); color: #fff; font-size: .85rem; padding: 4px 8px; border-radius: 6px; }
    .gallery-placeholder {
      min-height: 220px;
      border-style: dashed;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #f8fafc, #eef2f7);
      color: var(--muted);
      text-align: center;
      padding: 16px;
    }
    .gallery-placeholder i {
      font-size: 1.4rem;
      color: var(--primary);
      margin-bottom: 8px;
      display: block;
    }
    .work-gallery {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    .work-gallery .gallery-item {
      min-height: auto;
      aspect-ratio: 4 / 3;
      opacity: 0;
      transform: translateY(18px) scale(.97);
      filter: saturate(.9);
      isolation: isolate;
      will-change: transform, opacity;
      transition:
        opacity .54s ease,
        transform .62s cubic-bezier(.21, .74, .25, 1),
        box-shadow .34s ease,
        filter .34s ease;
    }
    .work-gallery .gallery-item::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(110deg, rgba(255,255,255,.74), rgba(255,255,255,.22));
      transform: translateX(-125%);
      opacity: .9;
    }
    body[data-theme="minimal"] .work-gallery .gallery-item::before {
      background: linear-gradient(110deg, rgba(255,255,255,.84), rgba(225, 238, 255, .34));
    }
    .work-gallery .gallery-item.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: saturate(1);
    }
    .work-gallery .gallery-item.is-visible::before {
      animation: imageRevealMask .92s cubic-bezier(.2, .75, .25, 1) both;
      animation-delay: var(--item-delay, 0ms);
    }
    .work-gallery .gallery-item img {
      transition: transform .72s cubic-bezier(.2, .75, .25, 1), filter .3s ease;
    }
    .work-gallery .gallery-item:hover {
      transform: translateY(-6px) scale(1.014);
      box-shadow: 0 18px 30px rgba(15, 23, 42, .22);
    }
    .work-gallery .gallery-item:hover img { transform: scale(1.08); }
    .work-gallery .gallery-item span {
      backdrop-filter: blur(4px);
      background: linear-gradient(120deg, rgba(2,6,23,.78), rgba(15,23,42,.56));
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      padding: 4px 10px;
      font-weight: 500;
    }
    .work-gallery .is-extra { display: none; }
    .work-gallery.expanded .is-extra { display: grid; }
    .gallery-more-wrap { text-align: center; margin-top: 16px; }
    .gallery-more-btn {
      position: relative;
      overflow: hidden;
      border-radius: 999px;
      border: 1px solid rgba(30, 58, 95, .28);
      background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.22));
      color: var(--primary);
      box-shadow: 0 10px 24px rgba(30, 58, 95, .14);
      backdrop-filter: blur(6px);
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }
    .gallery-more-btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.45) 52%, transparent 78%);
      transform: translateX(-130%);
      transition: transform .7s ease;
      pointer-events: none;
    }
    .gallery-more-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(30, 58, 95, .46);
      box-shadow: 0 14px 26px rgba(30, 58, 95, .2);
    }
    .gallery-more-btn:hover::after { transform: translateX(130%); }
    .gallery-more-btn:active { transform: translateY(0) scale(.985); }
    body[data-theme="minimal"] .gallery-more-btn {
      border-color: rgba(35, 70, 111, .24);
      background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(234, 243, 255, .64));
      color: #1f3f62;
      box-shadow: 0 10px 24px rgba(69, 104, 145, .16);
    }
    body[data-theme="minimal"] .gallery-more-btn:hover {
      border-color: rgba(35, 70, 111, .44);
      box-shadow: 0 14px 26px rgba(69, 104, 145, .24);
    }
    .work-gallery .gallery-item { cursor: zoom-in; }
    body[data-theme="minimal"] .gallery-placeholder {
      background: linear-gradient(180deg, #f8fbff, #edf4ff);
    }
    .lightbox-modal {
      position: fixed;
      inset: 0;
      z-index: 2100;
      display: grid;
      place-items: center;
      padding: 18px;
      background: rgba(2, 6, 23, .72);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .24s ease, visibility .24s ease;
      backdrop-filter: blur(8px);
    }
    .lightbox-modal.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .lightbox-dialog {
      width: min(1080px, 100%);
      max-height: 88vh;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.2);
      background: rgba(15, 23, 42, .56);
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(2, 6, 23, .5);
      transform: translateY(12px) scale(.985);
      transition: transform .24s ease;
    }
    .lightbox-modal.open .lightbox-dialog { transform: translateY(0) scale(1); }
    .lightbox-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 12px;
      color: #f8fafc;
      border-bottom: 1px solid rgba(255,255,255,.16);
      background: linear-gradient(135deg, rgba(30,58,95,.72), rgba(15,23,42,.48));
    }
    .lightbox-title { font-size: .9rem; font-weight: 600; }
    .lightbox-close {
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 999px;
      color: #fff;
      background: rgba(255,255,255,.16);
      cursor: pointer;
    }
    .lightbox-body {
      display: grid;
      place-items: center;
      background: rgba(2, 6, 23, .5);
      padding: 10px;
    }
    .lightbox-image {
      max-width: 100%;
      max-height: calc(88vh - 74px);
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(15,23,42,.56);
    }
    body[data-theme="minimal"] .lightbox-dialog {
      border-color: rgba(191, 219, 254, .64);
      background: rgba(248, 251, 255, .88);
      box-shadow: 0 24px 60px rgba(30, 58, 95, .25);
    }
    body[data-theme="minimal"] .lightbox-head {
      color: #1f3f62;
      border-bottom-color: rgba(30,58,95,.15);
      background: linear-gradient(135deg, rgba(219, 234, 254, .95), rgba(240, 249, 255, .82));
    }
    body[data-theme="minimal"] .lightbox-close {
      color: #1f3f62;
      background: rgba(30,58,95,.12);
    }
    body[data-theme="minimal"] .lightbox-body { background: rgba(239, 246, 255, .74); }
    body[data-theme="minimal"] .lightbox-image {
      border-color: rgba(30,58,95,.14);
      background: #fff;
    }
    .portfolio-carousel {
      margin: 34px 0 0;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
    .carousel-stage { position: relative; background: #0f172a; overflow: hidden; }
    .carousel-track {
      display: flex;
      transform: translateX(0);
      transition: transform .5s ease;
      will-change: transform;
    }
    .carousel-slide {
      min-width: 100%;
      aspect-ratio: 16 / 9;
      margin: 0;
      display: grid;
      place-items: center;
      background: #0f172a;
    }
    .carousel-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 999px;
      color: #fff;
      background: rgba(15,23,42,.56);
      backdrop-filter: blur(3px);
      cursor: pointer;
      z-index: 3;
    }
    .carousel-btn.prev { left: 10px; }
    .carousel-btn.next { right: 10px; }
    .carousel-caption {
      padding: 10px 12px 6px;
      text-align: center;
      color: var(--primary);
      font-weight: 600;
    }
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 7px;
      padding: 0 0 12px;
    }
    .carousel-dot {
      width: 9px;
      height: 9px;
      border: 0;
      border-radius: 999px;
      background: #cbd5e1;
      cursor: pointer;
    }
    .carousel-dot.active { background: var(--primary); transform: scale(1.2); }
    .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
    .review { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; box-shadow: var(--shadow-soft); transition: transform .22s ease; }
    .review:hover { transform: translateY(-5px); }
    .review .stars { color: #f59e0b; margin-bottom: 8px; }
    .review p { color: #4b5563; margin-bottom: 8px; }
    .review strong { color: var(--primary); }
    .process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
    .process-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-soft); padding: 16px; position: relative; }
    .process-item .num { width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; font-weight: 700; color: #fff; background: var(--primary); margin-bottom: 8px; }
    .process-item img { width: 100%; height: 140px; object-fit: cover; border-radius: 10px; margin-bottom: 10px; border: 1px solid var(--border); }
    .process-item h4 { color: var(--primary); margin-bottom: 4px; font-size: 1rem; }
    .process-item p { color: var(--muted); font-size: .9rem; }
    .result-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
    .result-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-soft); overflow: hidden; }
    .result-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
    .result-card .txt { padding: 12px; }
    .result-card h4 { color: var(--primary); margin-bottom: 4px; font-size: 1rem; }
    .result-card p { color: #4b5563; font-size: .9rem; }
    .cta-strip { margin-top: 20px; background: linear-gradient(135deg, var(--primary), #1f4d82); color: #fff; border-radius: 14px; padding: 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; box-shadow: var(--shadow); }
    .cta-strip p { opacity: .95; font-size: .95rem; }
    .cta-strip .btn { white-space: nowrap; }
    body[data-theme="minimal"] .cta-strip { background: linear-gradient(135deg, #2f3b4a, #53616f); }
    .conversion-strip {
      margin-top: 16px;
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: linear-gradient(135deg, rgba(6, 199, 85, .14), rgba(255,255,255,.95));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      box-shadow: var(--shadow-soft);
    }
    .conversion-strip strong { color: #065f46; }
    .conversion-strip p { color: #14532d; font-size: .93rem; }
    body[data-theme="minimal"] .conversion-strip {
      background: linear-gradient(135deg, rgba(47,127,230,.14), rgba(255,255,255,.96));
    }
    body[data-theme="minimal"] .conversion-strip strong { color: #1e3a5f; }
    body[data-theme="minimal"] .conversion-strip p { color: #334155; }
    .promo-deal-section {
      background: linear-gradient(120deg, #fff7ed, #fff);
      border-top: 1px solid #fed7aa;
      border-bottom: 1px solid #fed7aa;
    }
    .promo-deal-wrap {
      background: #fff;
      border: 1px solid #fdba74;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 14px 30px rgba(194, 65, 12, 0.14);
      position: relative;
      overflow: hidden;
    }
    .promo-deal-wrap .promo-bar {
      max-width: 760px;
      margin: 0 0 14px;
      justify-items: start;
      text-align: left;
    }
    .promo-deal-wrap .promo-timer { justify-content: flex-start; }
    .promo-deal-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.45) 45%, transparent 70%);
      transform: translateX(-120%);
      animation: promoSweep 2.8s ease-in-out infinite;
      pointer-events: none;
    }
    .promo-ribbon {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      padding: 7px 12px;
      border-radius: 999px;
      color: #fff;
      font-weight: 700;
      background: linear-gradient(135deg, #dc2626, #f97316);
      box-shadow: 0 8px 22px rgba(220, 38, 38, 0.34);
      animation: promoPulse 1.7s ease-in-out infinite;
    }
    .promo-deal-wrap h2 {
      color: #9a3412;
      font-size: clamp(1.56rem, 2.7vw, 2.2rem);
      margin-bottom: 10px;
    }
    .promo-deal-list {
      list-style: none;
      display: grid;
      gap: 8px;
      margin-bottom: 14px;
      color: #7c2d12;
      font-weight: 500;
    }
    .promo-deal-list i { color: #ea580c; margin-right: 8px; }
    .promo-urgency {
      margin-top: 6px;
      background: #fff7ed;
      border: 1px dashed #fb923c;
      border-radius: 12px;
      padding: 12px;
      color: #7c2d12;
      display: grid;
      gap: 6px;
      font-size: .94rem;
    }
    .promo-urgency p::before {
      content: "⚠ ";
      font-weight: 700;
    }
    .promo-deal-actions { margin-top: 14px; }
    body[data-theme="minimal"] .promo-deal-section {
      background: linear-gradient(120deg, #eaf2ff, #f7fbff);
      border-top-color: #bfdbfe;
      border-bottom-color: #bfdbfe;
    }
    body[data-theme="minimal"] .promo-deal-wrap {
      border-color: #93c5fd;
      box-shadow: 0 14px 28px rgba(37, 99, 235, .15);
    }
    body[data-theme="minimal"] .promo-deal-wrap h2 { color: #1d4ed8; }
    body[data-theme="minimal"] .promo-deal-list { color: #1e3a8a; }
    body[data-theme="minimal"] .promo-deal-list i { color: #2563eb; }
    body[data-theme="minimal"] .promo-urgency {
      background: #eff6ff;
      border-color: #93c5fd;
      color: #1e40af;
    }
    .compare-table-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-soft); overflow-x: auto; }
    .compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
    .compare-table th, .compare-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; font-size: .94rem; }
    .compare-table thead th { background: #f8fbff; color: var(--primary); font-weight: 700; }
    .compare-table tr:last-child td { border-bottom: 0; }
    .compare-table td.good { color: #0f766e; font-weight: 600; }
    .compare-table td.bad { color: #b91c1c; font-weight: 600; }
    .pricing-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
    .calc-box { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-soft); padding: 18px; }
    .calc-box h3 { color: var(--primary); margin-bottom: 10px; }
    .calc-result { margin-top: 12px; padding: 12px; border-radius: 10px; background: #eef6ff; border: 1px solid #bfdbfe; }
    .calc-result p { font-size: .9rem; color: #334155; }
    .calc-price { font-size: 1.35rem; font-weight: 700; color: #0f4c81; }
    .booking-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .booking-grid .full { grid-column: 1 / -1; }
    .faq-list { display: grid; gap: 10px; }
    .faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-soft); overflow: hidden; }
    .faq-q { width: 100%; border: 0; background: transparent; text-align: left; padding: 13px 14px; font-family: inherit; font-size: .96rem; font-weight: 600; color: var(--primary); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
    .faq-q i { transition: transform .25s ease; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; padding: 0 14px; color: #4b5563; }
    .faq-item.active .faq-a { max-height: 160px; padding-bottom: 12px; }
    .faq-item.active .faq-q i { transform: rotate(180deg); }
    .contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-soft); padding: 22px; }
    .quick-links { display: grid; gap: 10px; margin: 16px 0; }
    .quick-links a { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 11px 12px; border-radius: 10px; font-weight: 600; border: 1px solid var(--border); color: var(--secondary); background: #f9fafb; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
    .quick-links a i { width: 24px; height: 24px; border-radius: 999px; display: grid; place-items: center; background: rgba(30,58,95,.08); }
    .quick-links a:hover { transform: translateX(3px); border-color: var(--accent); }
    .quick-links .btn-map { background: #eef6ff; border-color: #93c5fd; color: #1d4ed8; }
    .quick-links .btn-fb { background: #eef2ff; border-color: #a5b4fc; color: #1d4ed8; }
    .quick-links .btn-wa { background: #ecfdf3; border-color: #86efac; color: #166534; }
    .quick-links .btn-line { background: #06c755; border-color: #06c755; color: #fff; }
    .quick-links .btn-line i { background: rgba(255,255,255,.2); color: #fff; }
    .quick-links .btn-wa i { background: rgba(37,211,102,.16); color: #166534; }
    .quick-links .btn-fb i { background: rgba(24,119,242,.14); color: #1d4ed8; }
    .quick-links .btn-map i { background: rgba(29,78,216,.14); color: #1d4ed8; }
    .map-box { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); min-height: 220px; background: #e5e7eb; }
    .map-box iframe { width: 100%; height: 100%; min-height: 220px; border: 0; }
    .form-grid { display: grid; gap: 10px; }
    .contact-form-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 220px;
      gap: 12px;
      align-items: start;
    }
    .contact-qr-card {
      border: 1px solid var(--border);
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.94));
      box-shadow: var(--shadow-soft);
      padding: 12px;
      display: grid;
      gap: 8px;
      justify-items: center;
      text-align: center;
    }
    .contact-qr-card img {
      width: 100%;
      max-width: 180px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: #fff;
      box-shadow: 0 8px 18px rgba(15,23,42,.12);
    }
    .qr-kicker {
      font-size: .86rem;
      font-weight: 700;
      color: var(--primary);
    }
    .qr-note {
      margin: 0;
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .input { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 11px 12px; font-family: inherit; font-size: .95rem; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
    .input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,180,0,.22); }
    body[data-theme="minimal"] .input:focus { box-shadow: 0 0 0 3px rgba(47,127,230,.2); }
    textarea.input { min-height: 110px; resize: vertical; }
    footer { margin-top: 60px; background: var(--secondary); color: #e5e7eb; padding: 26px 0; text-align: center; font-size: .92rem; }
    body[data-theme="minimal"] footer { background: #eaf1fb; color: #4f6075; border-top: 1px solid var(--border); }
    body[data-theme="minimal"] .card,
    body[data-theme="minimal"] .review,
    body[data-theme="minimal"] .contact-card,
    body[data-theme="minimal"] .stat-card,
    body[data-theme="minimal"] .why-list li {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.94));
    }
    body[data-theme="minimal"] .btn-line {
      background: #dff9ea;
      color: #0f5132;
      border-color: #67d49a;
    }
    body[data-theme="minimal"] .btn-line i {
      background: rgba(6,199,85,.16);
      color: #0f5132;
    }
    body[data-theme="minimal"] .quick-links .btn-line {
      background: #eafff3;
      border-color: #67d49a;
      color: #0f5132;
    }
    body[data-theme="minimal"] .quick-links .btn-line i {
      background: rgba(6,199,85,.16);
      color: #0f5132;
    }
    body[data-theme="minimal"] .contact-qr-card {
      background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(236,244,255,.96));
    }
    .floating-cta { position: fixed; right: 14px; bottom: 16px; display: grid; gap: 10px; z-index: 1200; }
    .float-btn { width: 52px; height: 52px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 10px 24px rgba(15,23,42,.2); transition: transform .2s ease; animation: floatPulse 2.2s ease-in-out infinite; }
    .float-btn:hover { transform: translateY(-3px); }
    .float-main { display: none; border: 0; cursor: pointer; background: linear-gradient(135deg, #1e3a5f, #2f7fe6); }
    .float-main i { transition: transform .28s ease; }
    .float-phone { background: #0f766e; }
    .float-line { background: linear-gradient(135deg, #06c755, #07b34d); animation-delay: .4s; box-shadow: 0 10px 24px rgba(6,199,85,.35); }
    .float-estimate { background: linear-gradient(135deg, #f59e0b, #f97316); animation-delay: .2s; box-shadow: 0 10px 24px rgba(249,115,22,.32); }
    .float-fb { background: #1877f2; animation-delay: .6s; }
    .mobile-sticky-cta { display: none; }
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity .66s ease, transform .66s ease; }
    .reveal[data-anim="left"] { transform: translateX(-24px); }
    .reveal[data-anim="right"] { transform: translateX(24px); }
    .reveal[data-anim="zoom"] { transform: scale(.96); }
    .reveal.visible { opacity: 1; transform: translate(0,0) scale(1); }
    .stagger { transition-delay: calc(var(--delay, 0) * 70ms); }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes floatPulse { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
    @keyframes promoLoop {
      0%, 100% { transform: translateY(0) rotate(0deg) scale(1); box-shadow: var(--shadow); }
      20% { transform: translateY(-1px) rotate(-.25deg) scale(1.006); }
      35% { transform: translateY(0) rotate(.2deg) scale(1.003); }
      52% { transform: translateY(-2px) rotate(-.2deg) scale(1.008); box-shadow: 0 18px 36px rgba(15, 23, 42, .24); }
      70% { transform: translateY(-1px) rotate(.15deg) scale(1.004); }
      86% { transform: translateY(0) rotate(-.1deg) scale(1.002); }
    }
    @keyframes imageRevealMask {
      0% { transform: translateX(-125%); opacity: .95; }
      62% { transform: translateX(12%); opacity: .68; }
      100% { transform: translateX(130%); opacity: 0; }
    }
    @keyframes promoPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
    @keyframes promoSweep { 0% { transform: translateX(-120%); } 55%,100% { transform: translateX(120%); } }
    @keyframes minimalHeroSwap {
   0%, 45% { opacity: 0; }
      50%, 95% { opacity: 1; }
      100% { opacity: 0; }
    }
    @media (max-width: 1100px) {
      .work-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    @media (max-width: 960px) { .why-wrap, .contact-wrap, .process-grid, .pricing-grid, .result-grid { grid-template-columns: 1fr; } .why-image { min-height: 240px; } .stats-wrap { margin-top: -28px; } .booking-grid { grid-template-columns: 1fr; } }
    @media (max-width: 780px) {
      .nav-actions { order: 2; margin-left: auto; }
      .hamburger { display: block; order: 3; margin-left: 6px; margin-right: -2px; }
      .nav-links { position: absolute; right: 4%; top: 64px; width: min(92vw, 260px); background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px; display: none; flex-direction: column; box-shadow: var(--shadow-soft); }
      .nav-links a { color: var(--text); }
      .nav-links.show { display: flex; }
      .floating-cta { right: 10px; bottom: 12px; gap: 8px; justify-items: end; }
      .float-btn { width: 48px; height: 48px; }
      .float-main { display: inline-flex; width: 54px; height: 54px; z-index: 2; }
      .floating-cta .float-btn:not(.float-main) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px) scale(.92);
        transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
      }
      .floating-cta.open .float-btn:not(.float-main) {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
      }
      .floating-cta.open .float-main i { transform: rotate(90deg); }
      .floating-cta .float-phone { transition-delay: .02s; }
      .floating-cta .float-line { transition-delay: .06s; }
      .floating-cta .float-estimate { transition-delay: .1s; }
      .floating-cta .float-fb { transition-delay: .14s; }
      .brand-main { font-size: 1rem; }
      .brand-sub { font-size: .7rem; }
      .cta-strip { flex-direction: column; align-items: flex-start; }
      .conversion-strip { flex-direction: column; align-items: flex-start; }
      .hero-proof { justify-content: center; gap: 8px; }
      .hero-proof li { font-size: .82rem; padding: 7px 10px; }
      .hero-offer-note { font-size: .8rem; }
      .promo-deal-wrap { padding: 16px; }
      .promo-bar { padding: 9px 10px; }
      .promo-bar strong { font-size: .93rem; }
      .promo-bar p { font-size: .82rem; }
      .compare-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 2px 2px 10px;
        margin: 0 -2px 16px;
        -webkit-overflow-scrolling: touch;
      }
      .compare-grid .ba-card {
        flex: 0 0 min(86vw, 360px);
        scroll-snap-align: start;
      }
      .compare-grid::-webkit-scrollbar { height: 6px; }
      .compare-grid::-webkit-scrollbar-thumb {
        background: rgba(148,163,184,.68);
        border-radius: 999px;
      }
      .ba-head { align-items: flex-start; flex-wrap: wrap; }
      .ba-head h4 { flex-basis: 100%; font-size: .9rem; }
      .ba-head small { font-size: .72rem; }
      .ba-wrap { height: clamp(210px, 58vw, 270px); }
      .ba-tag { font-size: .68rem; padding: 3px 7px; }
      .ba-handle { width: 30px; height: 30px; font-size: .76rem; }
      .portfolio-carousel { margin-top: 24px; }
      .carousel-stage { touch-action: pan-y; }
      .work-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
      .work-gallery .gallery-item { aspect-ratio: 1 / 1; }
      .contact-form-layout { grid-template-columns: 1fr; }
      .contact-qr-card { max-width: 320px; justify-self: center; }
      .mobile-sticky-cta { display: none; }
      .mobile-sticky-cta a { text-decoration: none; font-size: .8rem; text-align: center; padding: 10px 6px; color: #111827; font-weight: 600; }
      .mobile-sticky-cta a i { display: block; margin-bottom: 3px; }
      .mobile-sticky-cta .cta-phone { color: #0f766e; }
      .mobile-sticky-cta .cta-line { color: #059669; }
      .mobile-sticky-cta .cta-estimate { color: #c2410c; }
      .mobile-sticky-cta .cta-fb { color: #1d4ed8; }
      body { padding-bottom: 0; }
    }
    @media (max-width: 640px) {
      .section { padding: 64px 0; }
      .container { width: min(1140px, 94%); }
      .hero { min-height: 82vh; padding: 90px 0 34px; }
      .hero-content { width: min(900px, 94%); }
      .hero h1 { font-size: clamp(1.62rem, 7.2vw, 2.1rem); }
      .hero p { font-size: .96rem; margin-bottom: 20px; }
      .hero-actions { width: 100%; display: grid; grid-template-columns: 1fr; gap: 10px; }
      .hero-actions .btn { width: 100%; justify-content: center; }
      .hero-proof { gap: 6px; }
      .hero-proof li { font-size: .78rem; padding: 6px 9px; }
      .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .stat-card h3 { font-size: 1.34rem; }
      .cta-strip .btn, .conversion-strip .btn { width: 100%; justify-content: center; }
      .promo-timer { gap: 4px; }
      .promo-chip { font-size: .76rem; padding: 3px 7px; }
      .compare-grid .ba-card { flex-basis: 90vw; }
      .ba-wrap { height: clamp(205px, 62vw, 250px); }
      .ba-tag { top: 7px; }
      .work-gallery .gallery-item span { font-size: .78rem; left: 8px; bottom: 8px; }
      .carousel-btn { width: 36px; height: 36px; }
      .carousel-caption { font-size: .92rem; }
      .lightbox-modal { padding: 10px; }
      .lightbox-dialog { border-radius: 12px; }
      .lightbox-head { padding: 8px 10px; }
      .lightbox-title { font-size: .84rem; }
      .lightbox-close { width: 32px; height: 32px; }
      .lightbox-image { max-height: calc(88vh - 68px); }
    }
    @media (max-width: 460px) {
      .stats-grid { grid-template-columns: 1fr; }
      .promo-bar strong { font-size: .88rem; }
      .promo-bar p { font-size: .78rem; }
      .compare-grid .ba-card { flex-basis: 92vw; }
      .work-gallery { grid-template-columns: 1fr; gap: 12px; }
      .work-gallery .gallery-item { aspect-ratio: 4 / 3; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
      .work-gallery .gallery-item { opacity: 1; transform: none; }
      .work-gallery .gallery-item::before { display: none; }
    }
