.qd-customs-container {
      --qd-text: #2a2230;
      --qd-text-soft: #292929;
      --qd-white: #ffffff;
      --qd-brand: #fa77b9;
      --qd-brand-strong: #f854a6;
      --qd-brand-soft: #fde6f1;
      --qd-brand-pale: #fff3f8;
      --qd-peach: #fff1ea;
      --qd-mint: #e9fbf4;
      --qd-line: rgba(248, 84, 166, 0.12);
      --qd-shadow: 0 20px 55px rgba(129, 89, 114, 0.08);
      --qd-shadow-soft: 0 10px 25px rgba(129, 89, 114, 0.06);
      --qd-shadow-hover: 0 28px 70px rgba(129, 89, 114, 0.14);
      --qd-transition: 0.35s cubic-bezier(.22,1,.36,1);

      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--qd-text);
      background: #ffffff;
      isolation: isolate;
      margin: 0 auto;
      width: 100%;
      max-width: 1240px;
      overflow-x: visible;
    }

    .qd-customs-container *,
    .qd-customs-container *::before,
    .qd-customs-container *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: inherit;
    }

    .qd-customs-container a {
      text-decoration: none;
      color: inherit;
    }

    .qd-customs-shell {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 28px 18px 96px;
    }

    .qd-reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      will-change: opacity, transform;
    }

    .qd-reveal.qd-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .qd-delay-1 { transition-delay: .08s; }
    .qd-delay-2 { transition-delay: .16s; }
    .qd-delay-3 { transition-delay: .24s; }

    .qd-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 34px;
    }

    .qd-brand {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .qd-brand img {
      display: block;
      width: auto;
      height: 50px;
      max-width: 220px;
    }

    .qd-button,
    .qd-topbar-button,
    .qd-coverage-btn,
    .qd-review-platform,
    .qd-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      font-weight: 800;
      transition: transform var(--qd-transition), box-shadow var(--qd-transition), background var(--qd-transition), color var(--qd-transition), border-color var(--qd-transition);
    }

    .qd-topbar-button {
      min-height: 46px;
      padding: 0 18px;
      font-size: 0.95rem;
      color: var(--qd-brand-strong);
      background: #ffffff;
      border: 1px solid rgba(248, 84, 166, 0.18);
      box-shadow: var(--qd-shadow-soft);
      flex-shrink: 0;
    }

    .qd-topbar-button:hover,
    .qd-coverage-btn:hover,
    .qd-review-platform:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, var(--qd-brand-strong), var(--qd-brand));
      color: #ffffff;
      border-color: transparent;
      box-shadow: 0 18px 34px rgba(248, 84, 166, 0.22);
    }

    .qd-customs-header {
      text-align: center;
      padding: 42px 0 82px;
    }

    .qd-header-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .qd-header-title {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(2.8rem, 5vw, 3.7rem);
      font-weight: 700;
      line-height: 1.12;
      color: #3a2436;
      margin-bottom: 20px;
      text-wrap: balance;
    }

    .qd-title-accent {
      color: var(--qd-brand-strong);
    }

    .qd-header-subtitle,
    .qd-section-subtitle {
      font-size: 1.25rem;
      max-width: 820px;
      margin: 0 auto;
      color: var(--qd-text-soft);
      line-height: 1.9;
    }

    .qd-section {
      margin-bottom: 118px;
    }

    .qd-section-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .qd-section-title {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(2.1rem, 4vw, 3.1rem);
      font-weight: 700;
      color: var(--qd-text);
      line-height: 1.12;
      text-wrap: balance;
    }

    .qd-section-title::after {
      content: "";
      display: block;
      width: 70px;
      height: 4px;
      margin: 18px auto 0;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--qd-brand-strong), var(--qd-brand));
    }

    .qd-section-subtitle {
      margin-top: 20px;
    }

    .qd-info-panel,
    .qd-cta-panel {
      border-radius: 32px;
      border: 1px solid rgba(248, 84, 166, 0.12);
      box-shadow: var(--qd-shadow);
      transition: transform var(--qd-transition), box-shadow var(--qd-transition);
    }

    .qd-info-panel {
      max-width: 1020px;
      margin: 0 auto;
      padding: 52px;
      background: linear-gradient(180deg, var(--qd-brand-pale) 0%, var(--qd-brand-soft) 100%);
    }

    .qd-info-panel:hover,
    .qd-cta-panel:hover {
      transform: translateY(-8px);
      box-shadow: var(--qd-shadow-hover);
    }

    .qd-rich-text p {
      color: var(--qd-text-soft);
      font-size: 1.18rem;
      line-height: 1.95;
      margin-bottom: 20px;
    }

    .qd-rich-text p:last-child {
      margin-bottom: 0;
    }

    .qd-rich-text strong {
      color: var(--qd-text);
      font-weight: 800;
    }

    .qd-process-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 34px;
      max-width: 1020px;
      margin: 0 auto;
    }

    .qd-step-card,
    .qd-country-card,
    .qd-solution-card,
    .qd-trust-card {
      border-radius: 28px;
      box-shadow: var(--qd-shadow-soft);
      border: 1px solid rgba(248, 84, 166, 0.1);
      transition: transform var(--qd-transition), box-shadow var(--qd-transition), border-color var(--qd-transition);
      min-height: 100%;
    }

    .qd-step-card {
      padding: 34px 28px;
      background: #ffffff;
    }

    .qd-step-card:nth-child(3n+1),
    .qd-trust-card:nth-child(3n+1) {
      background: linear-gradient(180deg, var(--qd-brand-pale) 0%, #fff2f8 100%);
    }

    .qd-step-card:nth-child(3n+2),
    .qd-trust-card:nth-child(3n+2) {
      background: linear-gradient(180deg, #fffaf4 0%, #fff1ea 100%);
    }

    .qd-step-card:nth-child(3n+3),
    .qd-trust-card:nth-child(3n+3) {
      background: linear-gradient(180deg, #f9fffc 0%, #e9fbf4 100%);
    }

    .qd-step-card:hover,
    .qd-country-card:hover,
    .qd-solution-card:hover,
    .qd-trust-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--qd-shadow-hover);
      border-color: rgba(248, 84, 166, 0.18);
    }

    .qd-step-number,
    .qd-solution-number,
    .qd-trust-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 92px;
      height: 56px;
      padding: 0 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--qd-brand-strong);
      box-shadow: inset 0 0 0 1px rgba(248, 84, 166, 0.08);
      font-family: "Plus Jakarta Sans", sans-serif;
      font-weight: 800;
      font-size: 1.02rem;
      margin-bottom: 24px;
    }

    .qd-solution-number,
    .qd-trust-icon {
      width: 72px;
      min-width: 72px;
      height: 72px;
      border-radius: 22px;
      font-size: 1.55rem;
    }

    .qd-step-title,
    .qd-country-card h3,
    .qd-solution-card h3,
    .qd-trust-title {
      font-family: "Plus Jakarta Sans", sans-serif;
      color: var(--qd-text);
      line-height: 1.35;
      font-weight: 700;
    }

    .qd-step-title {
      font-size: 1.25rem;
      margin-bottom: 14px;
    }

    .qd-step-card p,
    .qd-country-card p,
    .qd-solution-card p,
    .qd-trust-card p,
    .qd-faq-answer-content {
      color: var(--qd-text-soft);
      font-size: 1.03rem;
      line-height: 1.75;
    }

    .qd-coverage-section {
      padding: 68px 28px;
      border-radius: 36px;
      background: linear-gradient(180deg, var(--qd-brand-pale) 0%, var(--qd-brand-soft) 100%);
      border: 1px solid rgba(248, 84, 166, 0.12);
      box-shadow: 0 16px 46px rgba(129, 89, 114, 0.06);
    }

    .qd-coverage-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 28px;
      max-width: 1120px;
      margin: 0 auto;
    }

    .qd-country-card {
      padding: 28px 24px;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 14px;
      background: #ffffff;
      border-color: rgba(248, 84, 166, 0.08);
      box-shadow: 0 14px 34px rgba(129, 89, 114, 0.07);
    }

    .qd-country-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 4px;
    }

    .qd-country-flag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border-radius: 18px;
      background: var(--qd-brand-pale);
      box-shadow: inset 0 0 0 1px rgba(248, 84, 166, 0.08);
      font-size: 1.9rem;
      line-height: 1;
      flex-shrink: 0;
    }

    .qd-country-code {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      background: #ffffff;
      color: var(--qd-text-soft);
      border: 1px solid rgba(248, 84, 166, 0.08);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .qd-country-card h3 {
      font-size: 1.18rem;
      margin-top: 2px;
    }

    .qd-country-card p {
      flex: 1;
    }

    .qd-coverage-btn {
      align-self: flex-start;
      min-height: 42px;
      padding: 0 18px;
      background: #ffffff;
      color: var(--qd-brand-strong);
      border: 1px solid rgba(248, 84, 166, 0.16);
      box-shadow: 0 8px 22px rgba(129, 89, 114, 0.05);
      font-size: 0.92rem;
    }

    .qd-coverage-btn-muted,
    .qd-coverage-btn-muted:hover {
      background: #f5f3f5;
      color: var(--qd-text-soft);
      border-color: rgba(42, 34, 48, 0.08);
      box-shadow: none;
      transform: none;
      cursor: pointer;
    }

    .qd-country-finder {
      max-width: 1120px;
      margin: -20px auto 30px;
      padding: 22px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(248, 84, 166, 0.12);
      box-shadow: 0 14px 34px rgba(129, 89, 114, 0.06);
    }

    .qd-country-search-label {
      display: block;
      margin-bottom: 12px;
      color: var(--qd-text);
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1rem;
      font-weight: 700;
    }

    .qd-country-search {
      position: relative;
    }

    .qd-country-search input {
      width: 100%;
      min-height: 56px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid rgba(248, 84, 166, 0.18);
      background: #ffffff;
      color: var(--qd-text);
      font-size: 1rem;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
      transition: border-color var(--qd-transition), box-shadow var(--qd-transition);
    }

    .qd-country-search input:focus {
      border-color: rgba(248, 84, 166, 0.48);
      box-shadow: 0 0 0 4px rgba(248, 84, 166, 0.1);
    }

    .qd-country-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .qd-country-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-height: 34px;
      padding: 0 12px;
      border: 1px solid rgba(248, 84, 166, 0.14);
      border-radius: 999px;
      background: #ffffff;
      color: var(--qd-text-soft);
      font-size: 0.82rem;
      font-weight: 500;
      cursor: pointer;
      transition: transform var(--qd-transition), box-shadow var(--qd-transition), background var(--qd-transition), color var(--qd-transition), border-color var(--qd-transition);
    }

    .qd-country-chip-flag {
      font-size: 1.05rem;
      line-height: 1;
    }

    .qd-country-chip:hover,
    .qd-country-chip.qd-active {
      transform: translateY(-2px);
      background: linear-gradient(135deg, var(--qd-brand-strong), var(--qd-brand));
      color: #ffffff;
      border-color: transparent;
      box-shadow: 0 12px 24px rgba(248, 84, 166, 0.18);
    }

    .qd-country-empty {
      display: none;
      margin-top: 26px;
      color: var(--qd-text-soft);
      font-size: 0.98rem;
      line-height: 1.6;
      text-align: center;
    }

    .qd-country-empty.qd-active {
      display: block;
    }

    .qd-country-empty a {
      color: var(--qd-brand-strong);
      font-weight: 800;
    }

    .qd-country-card.qd-country-hidden {
      display: none;
    }

    .qd-country-card.qd-country-highlight {
      border-color: rgba(248, 84, 166, 0.45);
      box-shadow: var(--qd-shadow-hover);
    }

    .qd-solution-wrap {
      max-width: 980px;
      margin: 0 auto;
    }

    .qd-solution-intro {
      max-width: 820px;
      margin: 0 auto 34px;
      color: var(--qd-text-soft);
      font-size: 1.12rem;
      line-height: 1.9;
      text-align: center;
    }

    .qd-solution-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 30px;
    }

    .qd-solution-card {
      padding: 34px 28px;
      background: #ffffff;
    }

    .qd-solution-card:nth-child(1) {
      background: linear-gradient(180deg, var(--qd-brand-pale) 0%, #fff2f8 100%);
    }

    .qd-solution-card:nth-child(2) {
      background: linear-gradient(180deg, #fffaf4 0%, #fff1ea 100%);
    }

    .qd-solution-card h3 {
      font-size: 1.24rem;
      margin-bottom: 14px;
    }

    .qd-solution-note {
      margin-top: 28px;
      padding: 24px 26px;
      border-radius: 24px;
      border: 1px solid rgba(248, 84, 166, 0.14);
      background: linear-gradient(180deg, var(--qd-brand-pale) 0%, #fff2f8 100%);
      color: var(--qd-text-soft);
      font-size: 1.05rem;
      line-height: 1.8;
      text-align: center;
      box-shadow: var(--qd-shadow-soft);
    }

    .qd-support-panel {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      padding: 54px 28px;
      border-radius: 32px;
      background: linear-gradient(180deg, var(--qd-brand-pale) 0%, var(--qd-brand-soft) 100%);
      border: 1px solid rgba(248, 84, 166, 0.12);
      box-shadow: var(--qd-shadow);
    }

    .qd-rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #ffffff;
      padding: 9px 16px;
      border-radius: 999px;
      box-shadow: var(--qd-shadow-soft);
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--qd-text);
      margin-bottom: 20px;
    }

    .qd-rating-stars {
      color: #d7a649;
      letter-spacing: 1px;
    }

    .qd-support-panel h2 {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(2rem, 4vw, 2.9rem);
      line-height: 1.15;
      margin-bottom: 18px;
      color: var(--qd-text);
    }

    .qd-support-panel p {
      max-width: 720px;
      margin: 0 auto 28px;
      color: var(--qd-text-soft);
      font-size: 1.08rem;
      line-height: 1.8;
    }

    .qd-review-platforms {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .qd-review-platform {
      min-height: 42px;
      padding: 0 18px;
      background: #ffffff;
      color: var(--qd-text);
      border: 1px solid rgba(248, 84, 166, 0.14);
      box-shadow: var(--qd-shadow-soft);
      font-size: 0.9rem;
    }

    .qd-faq-section {
      max-width: 980px;
      margin: 0 auto 118px;
    }

    .qd-faq-list {
      display: grid;
      gap: 18px;
    }

    .qd-faq-item {
      overflow: hidden;
      border-radius: 28px;
      background: #ffffff;
      border: 1px solid rgba(248, 84, 166, 0.1);
      box-shadow: 0 14px 36px rgba(129, 89, 114, 0.07);
      transition: box-shadow var(--qd-transition), border-color var(--qd-transition), transform var(--qd-transition);
    }

    .qd-faq-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(129, 89, 114, 0.09);
      border-color: rgba(248, 84, 166, 0.16);
    }

    .qd-faq-item.qd-open {
      border-color: rgba(248, 84, 166, 0.18);
      box-shadow: var(--qd-shadow-hover);
    }

    .qd-faq-question {
      width: 100%;
      border: 0;
      background: #ffffff;
      padding: 22px 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      text-align: left;
      color: var(--qd-text);
      font-size: 1.05rem;
      font-weight: 800;
      line-height: 1.35;
      transition: background var(--qd-transition), color var(--qd-transition);
      appearance: none;
      -webkit-appearance: none;
    }

    .qd-faq-question::after {
      content: "+";
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: var(--qd-brand-pale);
      color: var(--qd-brand-strong);
      flex-shrink: 0;
      font-size: 1.4rem;
      line-height: 1;
      transition: transform var(--qd-transition), background var(--qd-transition), color var(--qd-transition);
    }

    .qd-faq-item.qd-open .qd-faq-question {
      background: #f854a6;
      color: #ffffff;
    }

    .qd-faq-item.qd-open .qd-faq-question::after {
      content: "-";
      background: #ffffff;
      color: #f854a6;
      transform: rotate(180deg);
    }

    .qd-faq-answer {
      height: 0;
      overflow: hidden;
      background: #ffffff;
      transition: height 0.32s ease;
    }

    .qd-faq-answer-content {
      padding: 24px;
      background: #ffffff;
    }

    .qd-faq-answer-content p {
      margin-bottom: 12px;
    }

    .qd-faq-answer-content p:last-child {
      margin-bottom: 0;
    }

    .qd-faq-answer-content ul {
      padding-left: 22px;
      margin-top: 8px;
    }

    .qd-faq-answer-content li {
      margin-bottom: 8px;
    }

    .qd-cta-panel {
      max-width: 980px;
      margin: 0 auto;
      background: linear-gradient(180deg, var(--qd-brand-pale) 0%, var(--qd-brand-soft) 100%);
      text-align: center;
      padding: 84px 32px;
    }

    .qd-cta-panel p {
      max-width: 760px;
      margin: 20px auto 0;
      color: var(--qd-text-soft);
      font-size: 1.2rem;
      line-height: 1.85;
    }

    .qd-cta-btn {
      min-height: 58px;
      background: linear-gradient(135deg, var(--qd-brand-strong), var(--qd-brand));
      color: #ffffff;
      padding: 0 30px;
      box-shadow: 0 18px 40px rgba(248, 84, 166, 0.22);
      margin-top: 32px;
      font-size: 1rem;
      border: 1px solid transparent;
    }

    .qd-cta-btn:hover {
      transform: translateY(-2px);
      background: #ffffff;
      color: var(--qd-brand-strong);
      border-color: rgba(248, 84, 166, 0.2);
      box-shadow: 0 24px 46px rgba(248, 84, 166, 0.28);
    }

    .seo-data {
      display: none;
    }

    @media (max-width: 1100px) {
      .qd-coverage-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 980px) {
      .qd-process-grid,
      .qd-coverage-grid,
      .qd-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
      }
    }

    @media (max-width: 768px) {
      .qd-customs-shell {
        padding: 24px 20px 78px;
      }

      .qd-topbar {
        margin-bottom: 34px;
      }

      .qd-brand img {
        height: 38px;
        max-width: 170px;
      }

      .qd-topbar-button {
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.9rem;
      }

      .qd-customs-header {
        padding: 34px 0 74px;
      }

      .qd-header-title {
        font-size: clamp(3rem, 12vw, 3.8rem);
        line-height: 1.12;
        margin-bottom: 18px;
      }

      .qd-header-subtitle,
      .qd-section-subtitle {
        font-size: 1.2rem;
        line-height: 1.78;
      }

      .qd-section,
      .qd-faq-section {
        margin-bottom: 104px;
      }

      .qd-section-header {
        margin-bottom: 42px;
      }

      .qd-section-title {
        font-size: clamp(2.25rem, 9vw, 2.9rem);
        line-height: 1.16;
      }

      .qd-info-panel {
        padding: 36px 24px;
      }

      .qd-rich-text p {
        font-size: 1.12rem;
      }

      .qd-coverage-section {
        padding: 52px 20px;
        border-radius: 30px;
      }

      .qd-country-finder {
        margin: -12px auto 28px;
        padding: 20px;
      }

      .qd-country-search input {
        min-height: 54px;
        font-size: 1.04rem;
      }

      .qd-country-chips {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 8px;
      }

      .qd-country-chip {
        min-height: 42px;
        padding: 0;
        border-radius: 16px;
      }

      .qd-country-chip-flag {
        font-size: 1.22rem;
      }

      .qd-country-chip-name {
        display: none;
      }

      .qd-process-grid,
      .qd-coverage-grid,
      .qd-solution-grid,
      .qd-trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .qd-step-card,
      .qd-country-card,
      .qd-solution-card,
      .qd-trust-card {
        padding: 30px 22px;
      }

      .qd-support-panel,
      .qd-cta-panel {
        padding: 62px 22px;
      }

      .qd-review-platform,
      .qd-coverage-btn,
      .qd-cta-btn {
        width: 100%;
      }

      .qd-faq-question {
        padding: 20px;
        font-size: 1rem;
      }

      .qd-faq-answer-content {
        padding: 22px 20px;
      }
    }

    @media (max-width: 480px) {
      .qd-customs-shell {
        padding-left: 18px;
        padding-right: 18px;
      }

      .qd-header-title {
        font-size: 2.75rem;
      }

      .qd-section-title {
        font-size: 2.15rem;
      }

      .qd-process-grid,
      .qd-coverage-grid,
      .qd-solution-grid,
      .qd-trust-grid {
        gap: 28px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .qd-reveal,
      .qd-step-card,
      .qd-country-card,
      .qd-solution-card,
      .qd-faq-item,
      .qd-trust-card,
      .qd-info-panel,
      .qd-cta-panel,
      .qd-button,
      .qd-topbar-button,
      .qd-coverage-btn,
      .qd-country-chip,
      .qd-review-platform {
        transition: none !important;
        animation: none !important;
      }

      .qd-faq-answer {
        transition: none !important;
      }
    }
/* Final customs page polish: shared local fonts, clearer typography, and full-width CTA rhythm. */
.qdepot-sticky-header {
  margin-top: 8px;
  margin-bottom: 18px;
}

.qd-customs-container {
  max-width: none;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.qd-customs-shell {
  width: min(100% - 36px, 1240px);
  padding-top: 44px;
}

.qd-customs-container .qd-header-title,
.qd-customs-container .qd-section-title,
.qd-customs-container .qd-step-title,
.qd-customs-container .qd-country-card h3,
.qd-customs-container .qd-solution-card h3,
.qd-customs-container .qd-support-panel h2,
.qd-customs-container .qd-faq-question {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  letter-spacing: -0.018em;
}

.qd-customs-container .qd-header-title {
  font-size: clamp(2.35rem, 4.7vw, 3.8rem);
  font-weight: 620;
  line-height: 1.12;
  color: #211923;
}

.qd-customs-container .qd-section-title,
.qd-customs-container .qd-support-panel h2 {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 620;
  line-height: 1.14;
  color: #211923;
}

.qd-customs-container .qd-header-subtitle,
.qd-customs-container .qd-section-subtitle,
.qd-customs-container .qd-rich-text,
.qd-customs-container .qd-step-card p,
.qd-customs-container .qd-country-card p,
.qd-customs-container .qd-solution-card p,
.qd-customs-container .qd-support-panel p,
.qd-customs-container .qd-faq-answer-content,
.qd-customs-container .qd-cta-panel p {
  color: #5f5360;
  font-weight: 400;
  line-height: 1.76;
}

.qd-customs-container .qd-header-subtitle,
.qd-customs-container .qd-section-subtitle {
  font-size: clamp(1.07rem, 1.35vw, 1.18rem);
}

.qd-customs-container .qd-faq-question {
  font-weight: 620;
}

.qd-customs-container #qd-contact {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 96px;
}

.qd-customs-container #qd-contact .qd-cta-panel {
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  padding: 94px max(28px, calc((100vw - 1120px) / 2));
  box-shadow: 0 24px 60px rgba(129, 89, 114, 0.08);
}

.qd-customs-container #qd-contact .qd-cta-panel > * {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.qd-customs-container .qd-country-empty a {
  margin-left: 4px;
}

@media (max-width: 768px) {
  .qd-customs-shell {
    width: min(100% - 28px, 1240px);
    padding-top: 34px;
  }

  .qd-customs-container .qd-header-title {
    font-size: clamp(2rem, 8.8vw, 2.8rem);
  }

  .qd-customs-container .qd-section-title,
  .qd-customs-container .qd-support-panel h2 {
    font-size: clamp(1.85rem, 7.2vw, 2.35rem);
  }

  .qd-customs-container #qd-contact {
    padding-bottom: 72px;
  }

  .qd-customs-container #qd-contact .qd-cta-panel {
    padding: 70px 22px;
  }
}

/* Safety fallback: content must remain visible even if the page JS is cached or missing. */
.qd-customs-container .qd-reveal {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Alignment and footer/CTA corrections. */
.qd-customs-container .qd-section-header,
.qd-customs-container .qd-info-panel .qd-section-header,
.qd-customs-container .qd-support-panel,
.qd-customs-container .qd-faq-section .qd-section-header,
.qd-customs-container #qd-contact .qd-cta-panel {
  text-align: center;
}

.qd-customs-container .qd-info-panel .qd-section-title,
.qd-customs-container .qd-section-header .qd-section-title,
.qd-customs-container .qd-section-header .qd-section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.qd-customs-container .qd-section-header .qd-section-subtitle {
  max-width: 780px;
}

.qd-customs-container #qd-contact {
  margin-bottom: 66px;
  padding-bottom: 0;
}

.qd-customs-container #qd-contact .qd-cta-panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(250, 119, 185, 0.2), transparent 34%),
    linear-gradient(180deg, #fff8fc 0%, #fde6f1 100%);
}

.qd-customs-container #qd-contact .qd-cta-btn,
.qd-customs-container #qd-contact .qd-cta-btn:visited,
.qd-customs-container #qd-contact .qd-cta-btn:hover,
.qd-customs-container #qd-contact .qd-cta-btn:focus {
  color: #ffffff;
}

.qd-customs-container + .qdepot-footer,
.qdepot-footer {
  width: min(100% - 36px, 1640px);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .qd-customs-container #qd-contact {
    margin-bottom: 48px;
    padding-bottom: 0;
  }

  .qd-customs-container + .qdepot-footer,
  .qdepot-footer {
    width: min(100% - 28px, 1640px);
  }
}

/* Final requested layout corrections. */
.qd-customs-container .qd-customs-header {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 78px max(28px, calc((100vw - 1120px) / 2)) 92px !important;
  background:
    radial-gradient(circle at 12% 12%, rgba(248, 84, 166, 0.16), transparent 34%),
    linear-gradient(135deg, #fff3f8 0%, #fde6f1 48%, #ffffff 100%) !important;
  border: 1px solid rgba(248, 84, 166, 0.13);
  border-left: 0;
  border-right: 0;
}

.qd-customs-container .qd-customs-header .qd-header-content {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.qd-customs-container .qd-info-panel {
  max-width: 1040px !important;
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 34px 0 0 !important;
}

.qd-customs-container .qd-info-panel:hover {
  transform: none !important;
  box-shadow: none !important;
}

.qd-customs-container .qd-section-header,
.qd-customs-container .qd-info-panel .qd-section-header,
.qd-customs-container .qd-faq-section .qd-section-header {
  width: 100%;
  max-width: 900px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.qd-customs-container .qd-section-title,
.qd-customs-container .qd-section-subtitle,
.qd-customs-container .qd-section-header h2,
.qd-customs-container .qd-section-header p {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.qd-customs-container .qd-rich-text {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.qd-customs-container #qd-contact {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-bottom: 46px !important;
  padding: 0 !important;
}

.qd-customs-container #qd-contact .qd-cta-panel {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 84, 166, 0.22), transparent 34%),
    linear-gradient(180deg, #111111 0%, #050505 100%) !important;
  color: #ffffff !important;
  padding: 96px max(28px, calc((100vw - 1120px) / 2)) !important;
  box-shadow: none !important;
  text-align: center !important;
}

.qd-customs-container #qd-contact .qd-section-title,
.qd-customs-container #qd-contact .qd-cta-panel h2 {
  color: #ffffff !important;
}

.qd-customs-container #qd-contact .qd-cta-panel p,
.qd-customs-container #qd-contact .qd-cta-panel p a {
  color: #ffffff !important;
}

.qd-customs-container #qd-contact .qd-cta-btn,
.qd-customs-container #qd-contact .qd-cta-btn:visited,
.qd-customs-container #qd-contact .qd-cta-btn:hover,
.qd-customs-container #qd-contact .qd-cta-btn:focus {
  color: #ffffff !important;
}

.qd-customs-container + .qdepot-footer,
.qdepot-footer {
  display: block;
  width: min(100% - 36px, 1640px) !important;
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  .qd-customs-container .qd-customs-header {
    padding: 64px 22px 76px !important;
  }

  .qd-customs-container .qd-info-panel {
    padding-top: 18px !important;
  }

  .qd-customs-container #qd-contact {
    margin-bottom: 36px !important;
  }

  .qd-customs-container #qd-contact .qd-cta-panel {
    padding: 76px 22px !important;
  }

  .qd-customs-container + .qdepot-footer,
  .qdepot-footer {
    width: min(100% - 28px, 1640px) !important;
  }
}

/* Keep the first content section separate from the full-width hero. */
.qd-customs-container #qd-overview {
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
  margin: 92px auto 118px !important;
  padding: 0 !important;
  background: #ffffff !important;
}

.qd-customs-container #qd-overview .qd-info-panel {
  width: 100% !important;
  max-width: 1040px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: #ffffff !important;
}

.qd-customs-container #qd-overview .qd-section-title {
  max-width: 980px;
}

.qd-customs-container #qd-overview .qd-rich-text {
  max-width: 940px;
  margin-top: 64px;
}

@media (max-width: 768px) {
  .qd-customs-container #qd-overview {
    width: min(100% - 28px, 1040px) !important;
    margin-top: 62px !important;
    margin-bottom: 88px !important;
  }

  .qd-customs-container #qd-overview .qd-rich-text {
    margin-top: 42px;
  }
}
