/* ── Scoped additions – do not override business-waitlist.css ── */

/* Page shell */
.intl-page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 16px 56px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Section cards */
/* .intl-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    animation: intlFadeUp 0.4s ease both;
} */
 .intl-card {
    background: #fff;
    border-radius: 10px;

    /* softer/dissolving shadow */
    box-shadow:
        0 -12px 24px rgba(255, 255, 255, 0.95), /* dissolve into white at top */
        0 4px 10px rgba(0, 0, 0, 0.04),
        0 10px 30px rgba(0, 0, 0, 0.06);

    /* border: 1px solid #e2e8f0; */
    overflow: hidden;
    animation: intlFadeUp 0.4s ease both;
}
.intl-card:nth-child(2) { animation-delay: 0.1s; }
.intl-card:nth-child(3) { animation-delay: 0.18s; }

@keyframes intlFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Card header */
.intl-card-header {
    padding: 26px 30px 18px;
    border-bottom: 1px solid #e8ecf0;
}
.intl-card-header h2 {
    /* font-family: 'Nunito', sans-serif; */
    /* font-size: clamp(1.05rem, 2.8vw, 1.3rem); */
    font-weight: 700;
    color: #69C9CD;
    margin: 0 0 8px;
}
.intl-card-header p {
    /* font-family: 'Nunito', sans-serif; */
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    /* max-width: 620px; */
}

/* Country tabs row */
.intl-country-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 30px;
    background: #fafbfc;
    border-bottom: 1px solid #e8ecf0;
}
.intl-country-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    border: 1.5px solid #dde3ea;
    border-radius: 8px;
    background: #fff;
    /* font-family: 'Nunito', sans-serif; */
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: border-color .18s, color .18s, background .18s;
}
.intl-country-tab img {
    width: 40px;
    height: 25px;
    border: 1px solid #ccc;
    border-radius:4px;
    object-fit: cover;
}
.intl-country-tab .ext {
    font-size: 0.65rem;
    color: #aaa;
    margin-left: 5px;
    vertical-align: middle;
}
.intl-country-tab:hover {
    border-color: #69C9CD;
    /* color: #69C9CD; */
    /* background: #f0fbfb; */
    text-decoration: none;
}

.intl-country-tab:hover .ext {
    color: #69C9CD;
}

.country-name{
    display: flex;
    flex-direction: column;
}

.country-name .name{
    font-size: medium;
    font-weight: 800;
}

.country-name-usca .name{
    font-size: medium;
    font-weight: 800;
}

/* Plan items */
.intl-plans {
    padding: 8px 30px 16px;
}
.intl-plan {
    display: grid;
    grid-template-columns: 3px 1fr;
    gap: 0 18px;
    padding: 18px 0;
    border-bottom: 1px solid #eff1f4;
}
.intl-plan:last-of-type { border-bottom: none; }

.intl-plan-bar { border-radius: 3px; }
.intl-plan--premium .intl-plan-bar  { background: #69C9CD; }
.intl-plan--pro     .intl-plan-bar  { background: #69C9CD; }
.intl-plan--platinum .intl-plan-bar { background: #69C9CD; }

.intl-plan-body { display: flex; flex-direction: column; gap: 5px; }

.intl-plan-title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
}
.intl-plan-name {
    /* font-family: 'Nunito', sans-serif; */
    font-weight: 700;
    font-size: large;
}
.intl-plan--premium  .intl-plan-name  { color: #000000; }
.intl-plan--pro      .intl-plan-name  { color: #000000; }
.intl-plan--platinum .intl-plan-name  { color: #000000; }

.intl-plan-price {
    /* font-family: 'Nunito', sans-serif; */
    font-size: 0.82rem;
    color: #888;
}
.intl-plan-price strong {
    font-weight: 700;
    color: #69C9CD;
    font-size: large;
}
.intl-plan-desc {
    /* font-family: 'Nunito', sans-serif; */
    font-size: 0.84rem;
    color: #666;
    line-height: 1.55;
}
.intl-plan-includes {
    /* font-family: 'Nunito', sans-serif; */
    font-size: 0.79rem;
    color: #888;
    line-height: 1.55;
}
.intl-plan-includes strong { color: #444; }

/* Card footer links */
.intl-card-footer {
    padding: 10px 30px 20px;
    /* font-family: 'Nunito', sans-serif; */
    font-size: 0.8rem;
    color: #999;
}
.intl-card-footer a {
    color: #69C9CD !important;
    text-decoration: none !important;
    font-weight: 600;
}
.intl-card-footer a:hover { text-decoration: underline !important; }

/* Country tile grid (AU/MX/NZ/ZA) */
.intl-tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    border-top: 1px solid #e8ecf0;
}
.intl-tile {
    padding: 18px 20px;
    border-right: 1px solid #e8ecf0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background .15s;
}
.intl-tile:last-child { border-right: none; }
.intl-tile:hover { background: #f0fbfb; text-decoration: none; }
.intl-tile img {
    width: 28px;
    height: 19px;
    border: 1px solid #ccc;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}
.intl-tile-info { display: flex; flex-direction: column; }
.intl-tile-name {
    /* font-family: 'Nunito', sans-serif; */
    font-weight: 700;
    font-size: 0.87rem;
    color: #333;
}
.intl-tile-rate {
    /* font-family: 'Nunito', sans-serif; */
    font-size: 0.73rem;
    color: #888;
}
.intl-tile-ext {
    font-size: 0.65rem;
    color: #aaa;
    margin-left: auto;
    align-self: center;
}

/* Page-level footer note */
.intl-page-note {
    text-align: center;
    /* font-family: 'Nunito', sans-serif; */
    font-size: 0.8rem;
    color: #aaa;
    padding-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .intl-card-header,
    .intl-plans,
    .intl-card-footer,
    .intl-country-tabs { padding-left: 18px; padding-right: 18px; }

    .intl-tile { padding: 14px 14px; }
    .intl-tile-grid { grid-template-columns: repeat(2, 1fr); }
    .intl-tile:nth-child(2) { border-right: none; }
}

.intl-card {
  /* width: 500px;           */
  /* padding: 20px;         */
  border-radius: 16px;
}

.intl-card h2 {
  font-size: 32px;       /* bigger heading */
  font-weight: 600;      /* bold */
  /* text-align: center; */
  margin-bottom: 16px;
}

.intl-card p {
  font-size: 1.125rem;       /* bigger text */
  font-weight: 500;      /* semi-bold/bold */
  line-height: 1.75rem;
  /* text-align: center; */
}

.intl-card button {
  font-size: 18px;
  font-weight: 700;
  padding: 14px 24px;
}
