/* CARCHECK CYPRUS, Landing page */
:root {
  --blue: #0047bb;
  --blue-dark: #003a99;
  --blue-light: #e8f0ff;
  --red: #c41e3a;
  --red-dark: #a01830;
  --red-light: #fff0f2;
  --navy: #121e31;
  --navy-light: #1a2d4a;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --green: #22c55e;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-icon svg {
  width: 48px;
  height: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f2744;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.12em;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: right;
}

.trust-icon svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.trust-text strong {
  color: var(--text);
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  padding: 1.5rem 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.28) 22%, transparent 48%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.8) 36%, rgba(255, 255, 255, 0.4) 52%, transparent 68%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.88) 88%),
    url('../assets/hero-bg.png') center/cover no-repeat;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 0.5rem;
}

.hero-content h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.hero-content .highlight {
  color: var(--blue);
}

.hero-lead {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-car {
  width: 100%;
  max-width: 520px;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 2;
}

.cy-flag {
  position: absolute;
  top: 0;
  right: 8%;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.flag-pole {
  width: 4px;
  height: 120px;
  background: linear-gradient(90deg, #94a3b8, #cbd5e1);
  border-radius: 2px;
  margin-top: 20px;
}

.flag-cy {
  width: 90px;
  height: 60px;
  background: #fff;
  border: 1px solid #cbd5e1;
  position: relative;
  margin-top: 24px;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  animation: wave 4s ease-in-out infinite;
  transform-origin: left center;
}

@keyframes wave {
  0%, 100% { transform: rotate(-2deg) skewY(1deg); }
  50% { transform: rotate(2deg) skewY(-1deg); }
}

.cy-map {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 18px;
  background: #d4a84b;
  border-radius: 40% 40% 35% 35%;
  box-shadow: inset 0 0 0 1px #b8923f;
}

.cy-stripe {
  position: absolute;
  bottom: 8px;
  height: 6px;
  background: #5b7c99;
}

.cy-stripe-1 {
  left: 12px;
  width: 22px;
  transform: rotate(-8deg);
}

.cy-stripe-2 {
  right: 12px;
  width: 22px;
  transform: rotate(8deg);
}

/* Feature cards */
.feature-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.72rem;
  margin-top: -2.75rem;
  padding-bottom: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.83rem 0.72rem 0.72rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  text-align: center;
  min-height: 0;
}

.fc-check {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.77rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.fc-icon {
  display: flex;
  justify-content: center;
  margin: 0.28rem 0 0.38rem;
}

.fc-icon svg {
  width: 44px;
  height: 44px;
}

.feature-card h3 {
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}

.feature-card p {
  font-size: 0.79rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
  line-height: 1.25;
}

/* Section titles */
.section {
  padding: 3rem 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-title span {
  white-space: nowrap;
  color: var(--text);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: -1rem 0 2rem;
}

/* Packages */
.packages {
  background: #f8fafc;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.package-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 42%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.package-uk {
  border-color: rgba(0, 71, 187, 0.3);
}

.package-jp {
  border-color: rgba(196, 30, 58, 0.3);
}

.package-body {
  position: relative;
  z-index: 4;
  padding: 1.5rem 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.package-body::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 48%,
    rgba(255, 255, 255, 0.88) 62%,
    rgba(255, 255, 255, 0.45) 78%,
    transparent 100%
  );
  z-index: -1;
  pointer-events: none;
}

.package-body > * {
  position: relative;
  z-index: 1;
}

.package-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #eef2f7;
  z-index: 1;
}

.package-landmark {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.65;
}

.package-landmark-uk {
  background-image: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=900&auto=format&fit=crop&q=75');
}

.package-landmark-jp {
  background-image: url('../assets/japan-bg.png');
  background-position: center center;
}

.package-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.75) 18%,
    rgba(255, 255, 255, 0.25) 38%,
    transparent 58%
  );
  z-index: 1;
  pointer-events: none;
}

.package-jp .package-visual::before {
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.7) 20%,
    rgba(255, 255, 255, 0.2) 40%,
    transparent 60%
  );
}

/* Car on card (desktop): overlaps blend between text & background */
.package-visual .package-car-img {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 155%;
  max-width: 520px;
  height: auto;
  max-height: 85%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 3;
  filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.3));
  pointer-events: none;
}

.package-uk .package-visual .package-car-img {
  width: 165%;
  max-width: 540px;
}

.package-jp .package-visual .package-car-img {
  width: 150%;
  max-width: 500px;
}

/* Desktop: car spans softly into text/photo blend */
@media (min-width: 993px) {
  .package-visual {
    overflow: visible;
  }

  .package-visual .package-car-img {
    left: 50%;
    bottom: 4%;
    transform: translateX(-56%);
    width: 195%;
    max-width: 560px;
  }

  .package-uk .package-visual .package-car-img {
    transform: translateX(-54%);
    width: 200%;
  }

  .package-jp .package-visual .package-car-img {
    transform: translateX(-58%);
    width: 185%;
  }
}

.package-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.flag-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-svg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.15);
}

.package-uk .package-header h3 {
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 800;
}

.package-jp .package-header h3 {
  color: var(--red);
  font-size: 1.15rem;
  font-weight: 800;
}

.package-list {
  list-style: none;
  flex: 1;
}

.package-list li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.4;
}

.package-list li strong {
  font-weight: 700;
}

.package-uk .package-list li strong {
  color: var(--blue);
}

.package-jp .package-list li strong {
  color: var(--red);
}

.package-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-uk .package-list li::before {
  background: var(--blue);
}

.package-jp .package-list li::before {
  background: var(--red);
}

.package-price {
  font-size: 1rem;
  margin: 0.75rem 0 0.65rem;
  color: var(--text-muted);
}

.package-uk .package-price strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
}

.package-jp .package-price strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-uk {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 71, 187, 0.35);
}

.btn-uk:hover {
  background: var(--blue-dark);
}

.btn-jp {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}

.btn-jp:hover {
  background: var(--red-dark);
}

/* Checkout forms */
.checkout {
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.order-form {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-uk {
  border: 2px solid rgba(0, 71, 187, 0.35);
}

.form-jp {
  border: 2px solid rgba(196, 30, 58, 0.35);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.form-header .flag-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-header .flag-svg {
  width: 40px;
  height: 40px;
}

.form-uk .form-header h3 {
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-jp .form-header h3 {
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 700;
}

.order-form label {
  display: block;
  margin-bottom: 0.85rem;
}

.order-form label span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.order-form input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  background: #fafbfc;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.order-form input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 71, 187, 0.12);
  background: var(--white);
}

.form-error-banner {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: formErrorIn 0.25s ease;
}

@keyframes formErrorIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.order-form label.has-error span:first-child,
.order-checkout-form label.has-error span:first-child {
  color: #b91c1c;
}

.order-form input.input-invalid,
.order-checkout-form input.input-invalid {
  border-color: #c41e3a;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}

.field-error-msg {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b91c1c;
}

.form-jp input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}

.btn-pay {
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 0.8rem;
}

.payment-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.payment-note-text {
  display: block;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.logo-stripe {
  font-weight: 700;
  font-size: 1rem;
  color: #635bff;
  letter-spacing: -0.03em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(99, 91, 255, 0.08);
}

.card-brands {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-icon {
  display: block;
  height: 22px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

/* Payment success modal */
.payment-modal[hidden] {
  display: none;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.payment-modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
  animation: scaleIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
}

.payment-modal-icon.is-error {
  background: #fef2f2;
  color: #dc2626;
}

.payment-modal-box h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.payment-modal-box p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.payment-modal-order {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  font-size: 0.85rem;
}

.payment-modal-close {
  margin-top: 1.25rem;
  max-width: 200px;
  margin-inline: auto;
}

/* How it works */
.how-it-works {
  background: #f8fafc;
  padding-bottom: 3.5rem;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.step {
  flex: 0 1 200px;
  text-align: center;
  position: relative;
  padding-top: 0.5rem;
}

.step-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid #f8fafc;
}

.step-icon {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 0.75rem;
}

.step-icon svg {
  width: 56px;
  height: 56px;
}

.step p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.step-arrow {
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 300;
  align-self: center;
  margin-top: 2.5rem;
  opacity: 0.6;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 2.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-col h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.faq-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  margin-right: 0.35rem;
}

.faq-question {
  font-size: 0.88rem;
  color: #e2e8f0;
  margin-bottom: 0.65rem;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.faq-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer strong {
  color: var(--green);
}

.footer-legal p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: #94a3b8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    justify-content: center;
  }

  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -0.5rem;
    gap: 0.55rem;
  }

  .package-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      'visual'
      'content';
    min-height: auto;
  }

  .package-visual {
    grid-area: visual;
    order: unset;
    min-height: 200px;
    max-height: 240px;
    overflow: hidden;
  }

  .package-visual::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.35) 0%,
      transparent 35%,
      transparent 100%
    );
  }

  .package-visual .package-car-img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 95%;
    max-width: 340px;
    max-height: 75%;
    margin: 0;
  }

  .package-body {
    grid-area: content;
    background: #fff;
  }

  .package-body::before {
    background: #fff;
  }

  .package-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: none;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .header-inner {
    gap: 0.5rem;
  }

  .logo-icon svg {
    width: 40px;
    height: 40px;
  }

  .logo-title {
    font-size: 1.05rem;
  }

  .logo-sub {
    font-size: 0.6rem;
  }

  .trust-badge .trust-text {
    font-size: 0.65rem;
  }

  .trust-icon svg {
    width: 28px;
    height: 28px;
  }

  .hero-content h1 {
    font-size: 1.45rem;
  }

  .hero-lead {
    font-size: 0.9rem;
  }

  .hero-car {
    max-width: 100%;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .package-visual {
    min-height: 175px;
    max-height: 200px;
  }

  .package-visual .package-car-img {
    width: 100%;
    max-width: 300px;
    max-height: 70%;
  }

  .package-body {
    padding: 1.15rem 1rem 1.25rem;
  }

  .package-list li {
    font-size: 0.88rem;
    white-space: normal;
  }

  .package-uk .package-price strong,
  .package-jp .package-price strong {
    font-size: 1.65rem;
  }

  .btn {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }

  .section-title span {
    font-size: 1rem;
  }
}
