    :root {
      --red: #E53935;
      --red-lt: #FFEBEE;
      --red-dk: #B71C1C;
      --bg: #F8FAFC;
      --white: #FFFFFF;
      --subtle: #F1F5F9;
      --t900: #0F172A;
      --t700: #334155;
      --t500: #64748B;
      --t300: #CBD5E1;
      --border: #E2E8F0;
      --display: 'Plus Jakarta Sans', sans-serif;
      --body: 'Inter', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--body);
      background: var(--white);
      color: var(--t700);
      -webkit-font-smoothing: antialiased;
    }

    /* ── SHARED ── */
    .wct-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .wct-chip-red {
      color: var(--red);
      background: var(--red-lt);
      border: 1px solid rgba(229, 57, 53, .18);
    }

    .wct-chip .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
    }

    .wct-h2 {
      font-family: var(--display);
      font-weight: 800;
      line-height: 1.12;
      font-size: clamp(1.8rem, 3.8vw, 2.8rem);
      color: var(--t900);
    }

    .wct-h2 em {
      color: var(--red);
      font-style: normal;
    }

    /* ══════════════════════════════════════════
       § 1  HERO — light bg, image right
    ══════════════════════════════════════════ */
    .wct-hero {
      background: var(--bg);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }

    /* very subtle red tint top-left only */
    .wct-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(229, 57, 53, .07) 0%, transparent 70%);
      pointer-events: none;
    }

    .wct-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red-lt);
      border: 1px solid rgba(229, 57, 53, .2);
      color: var(--red);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: 100px;
      padding: 6px 16px;
      margin-bottom: 22px;
    }

    .wct-hero-badge .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--red);
      animation: wct-pulse 1.8s ease-in-out infinite;
    }

    @keyframes wct-pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, .4);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(229, 57, 53, 0);
      }
    }

    .wct-hero-title {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      color: var(--t900);
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .wct-hero-title em {
      color: var(--red);
      font-style: normal;
    }

    .wct-hero-desc {
      font-size: 1.05rem;
      color: var(--t500);
      line-height: 1.82;
      max-width: 480px;
      margin-bottom: 32px;
    }

    /* CTA buttons */
    .wct-btn-red {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--red);
      color: #fff;
      font-family: var(--display);
      font-size: .92rem;
      font-weight: 700;
      padding: 13px 26px;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(229, 57, 53, .3);
      transition: background .25s, transform .25s;
    }

    .wct-btn-red:hover {
      background: var(--red-dk);
      color: #fff;
      transform: translateY(-2px);
    }

    .wct-btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: #fff;
      color: var(--t700);
      font-family: var(--display);
      font-size: .92rem;
      font-weight: 700;
      padding: 13px 26px;
      border-radius: 12px;
      text-decoration: none;
      border: 1.5px solid var(--border);
      transition: border-color .25s, color .25s;
    }

    .wct-btn-wa:hover {
      border-color: #25D366;
      color: #25D366;
    }

    .wct-btn-wa i {
      color: #25D366;
    }

    /* hero image side */
    .wct-hero-img {
      border-radius: 22px;
      overflow: hidden;
      position: relative;
      height: 440px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
    }

    .wct-hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* floating card on image */
    .wct-img-float {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .wct-img-float .ico {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--red-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .wct-img-float strong {
      display: block;
      font-family: var(--display);
      font-size: .88rem;
      font-weight: 700;
      color: var(--t900);
    }

    .wct-img-float span {
      font-size: .76rem;
      color: var(--t500);
    }

    .wct-response {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: .8rem;
      font-weight: 600;
      color: #16a34a;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: 100px;
      padding: 5px 14px;
      margin-top: 18px;
    }

    .wct-response .rdot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      animation: wct-pulse 2s ease-in-out infinite;
    }

    /* ══════════════════════════════════════════
       § 2  FORM + INFO — white bg
    ══════════════════════════════════════════ */
    .wct-main {
      padding: 80px 0;
      background: var(--white);
    }

    /* FORM */
    .wct-form-card {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 22px;
      padding: 44px 40px;
    }

    @media(max-width:575.98px) {
      .wct-form-card {
        padding: 28px 20px;
      }
    }

    .wct-form-card h3 {
      font-family: var(--display);
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--t900);
      margin-bottom: 4px;
    }

    .wct-form-card>p {
      font-size: .85rem;
      color: var(--t500);
      margin-bottom: 28px;
    }

    .wct-field {
      margin-bottom: 18px;
    }

    .wct-field label {
      display: block;
      font-size: .78rem;
      font-weight: 700;
      color: var(--t700);
      margin-bottom: 6px;
      letter-spacing: .04em;
    }

    .wct-field label .req {
      color: var(--red);
    }

    .wct-field label .opt {
      font-size: .7rem;
      font-weight: 400;
      color: var(--t300);
      margin-left: 4px;
    }

    .wct-input,
    .wct-select,
    .wct-textarea {
      width: 100%;
      font-family: var(--body);
      font-size: .9rem;
      color: var(--t900);
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 11px;
      padding: 11px 15px;
      outline: none;
      transition: border-color .22s, box-shadow .22s;
      appearance: none;
    }

    .wct-input::placeholder,
    .wct-textarea::placeholder {
      color: var(--t300);
    }

    .wct-input:focus,
    .wct-select:focus,
    .wct-textarea:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(229, 57, 53, .08);
    }

    .wct-textarea {
      resize: vertical;
      min-height: 120px;
      line-height: 1.7;
    }

    .wct-sel-wrap {
      position: relative;
    }

    .wct-sel-wrap::after {
      content: '\F282';
      font-family: 'bootstrap-icons';
      position: absolute;
      right: 13px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--t500);
      pointer-events: none;
      font-size: .85rem;
    }

    .wct-sel-wrap .wct-select {
      padding-right: 38px;
      cursor: pointer;
    }

    .wct-phone-wrap {
      position: relative;
    }

    .wct-phone-pre {
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-50%);
      font-size: .85rem;
      color: var(--t500);
      font-weight: 600;
      pointer-events: none;
    }

    .wct-phone-wrap .wct-input {
      padding-left: 66px;
    }

    .wct-submit {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      background: var(--red);
      color: #fff;
      font-family: var(--display);
      font-size: .96rem;
      font-weight: 700;
      padding: 14px 24px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(229, 57, 53, .28);
      transition: background .22s, transform .22s;
    }

    .wct-submit:hover {
      background: var(--red-dk);
      transform: translateY(-2px);
    }

    .wct-privacy {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: .74rem;
      color: var(--t500);
      margin-top: 12px;
    }

    .wct-privacy i {
      color: var(--red);
    }

    /* success */
    .wct-success {
      display: none;
      text-align: center;
      padding: 36px 16px;
    }

    .wct-sico {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: #f0fdf4;
      border: 2px solid #bbf7d0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #22c55e;
      margin: 0 auto 18px;
      animation: wct-pop .4s cubic-bezier(.34, 1.56, .64, 1);
    }

    @keyframes wct-pop {
      from {
        transform: scale(0);
      }

      to {
        transform: scale(1);
      }
    }

    .wct-success h4 {
      font-family: var(--display);
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--t900);
      margin-bottom: 8px;
    }

    .wct-success p {
      color: var(--t500);
      font-size: .9rem;
      margin-bottom: 20px;
    }

    /* RIGHT INFO */
    .wct-info-stack {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .wct-icard {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 22px 20px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      transition: border-color .25s, box-shadow .25s;
    }

    .wct-icard:hover {
      border-color: rgba(229, 57, 53, .25);
      box-shadow: 0 4px 20px rgba(229, 57, 53, .06);
    }

    .wct-icard-ico {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: 12px;
      background: var(--red-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      color: var(--red);
    }

    .wct-icard strong {
      display: block;
      font-family: var(--display);
      font-size: .9rem;
      font-weight: 700;
      color: var(--t900);
      margin-bottom: 3px;
    }

    .wct-icard a {
      font-size: .84rem;
      color: var(--red);
      text-decoration: none;
      font-weight: 600;
      display: block;
    }

    .wct-icard a:hover {
      color: var(--red-dk);
    }

    .wct-icard span {
      font-size: .84rem;
      color: var(--t500);
    }

    /* hours block */
    .wct-hours {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 22px 20px;
    }

    .wct-hours h6 {
      font-family: var(--display);
      font-size: .88rem;
      font-weight: 700;
      color: var(--t900);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .wct-hours h6 i {
      color: var(--red);
    }

    .wct-hrow {
      display: flex;
      justify-content: space-between;
      font-size: .82rem;
      padding: 7px 0;
      border-bottom: 1px solid var(--border);
    }

    .wct-hrow:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .wct-hrow .day {
      color: var(--t500);
    }

    .wct-hrow .time {
      font-weight: 600;
      color: var(--t900);
    }

    .wct-hrow .time.off {
      color: var(--red);
    }

    /* socials */
    .wct-soc-row {
      display: flex;
      gap: 9px;
      margin-top: 4px;
    }

    .wct-soc-row a {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--subtle);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--t500);
      font-size: .95rem;
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s, transform .2s;
    }

    .wct-soc-row a:hover {
      transform: translateY(-3px);
    }

    .wct-soc-row a.wa:hover {
      background: #25D366;
      border-color: #25D366;
      color: #fff;
    }

    .wct-soc-row a.li:hover {
      background: #0077B5;
      border-color: #0077B5;
      color: #fff;
    }

    .wct-soc-row a.ig:hover {
      background: #E1306C;
      border-color: #E1306C;
      color: #fff;
    }

    .wct-soc-row a.fb:hover {
      background: #1877F2;
      border-color: #1877F2;
      color: #fff;
    }

    /* ══════════════════════════════════════════
       § 3  FAQ — light bg
    ══════════════════════════════════════════ */
    .wct-faq {
      padding: 80px 0;
      background: var(--bg);
    }

    .wct-acc {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      margin-bottom: 10px;
    }

    .wct-acc-btn {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      cursor: pointer;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      font-family: var(--display);
      font-size: .95rem;
      font-weight: 700;
      color: var(--t900);
    }

    .wct-acc-ico {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      border-radius: 8px;
      background: var(--subtle);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .78rem;
      color: var(--t500);
      transition: background .22s, color .22s, transform .3s;
    }

    .wct-acc-btn.open .wct-acc-ico {
      background: var(--red-lt);
      border-color: rgba(229, 57, 53, .2);
      color: var(--red);
      transform: rotate(45deg);
    }

    .wct-acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .32s ease, padding .32s;
      padding: 0 22px;
    }

    .wct-acc-body.open {
      max-height: 240px;
      padding: 0 22px 18px;
    }

    .wct-acc-body p {
      font-size: .88rem;
      color: var(--t500);
      line-height: 1.78;
      margin: 0;
    }

    /* ══════════════════════════════════════════
       § 4  CTA — only ONE dark section (bottom)
    ══════════════════════════════════════════ */
    .wct-cta {
      padding: 80px 0;
      background: var(--t900);
      position: relative;
      overflow: hidden;
    }

    .wct-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
      background-size: 26px 26px;
    }

    .wct-cta::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(229, 57, 53, .15) 0%, transparent 70%);
    }

    .wct-cta>.container {
      position: relative;
      z-index: 2;
    }

    .wct-cta-wrap {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 60px;
      align-items: center;
    }

    @media(max-width:991.98px) {
      .wct-cta-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    .wct-cta-wrap h2 {
      font-family: var(--display);
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.15;
    }

    .wct-cta-wrap h2 em {
      color: var(--red);
      font-style: normal;
    }

    .wct-cta-wrap p {
      color: rgba(255, 255, 255, .6);
      font-size: .98rem;
      line-height: 1.78;
    }

    .wct-cta-btns {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .wct-cta-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 14px;
      padding: 16px 20px;
      text-decoration: none;
      transition: background .22s, border-color .22s;
    }

    .wct-cta-btn:hover {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(229, 57, 53, .35);
    }

    .wct-cta-btn-ico {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .wct-cta-btn-ico.r {
      background: rgba(229, 57, 53, .15);
      color: var(--red);
    }

    .wct-cta-btn-ico.g {
      background: rgba(37, 211, 102, .15);
      color: #25D366;
    }

    .wct-cta-btn-ico.b {
      background: rgba(59, 130, 246, .15);
      color: #60a5fa;
    }

    .wct-cta-btn strong {
      display: block;
      font-family: var(--display);
      font-size: .88rem;
      font-weight: 700;
      color: #fff;
    }

    .wct-cta-btn span {
      font-size: .78rem;
      color: rgba(255, 255, 255, .45);
    }