/* ─── Freeline Mobile eSIMs — shared styles ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #cc1f1f;
  --red-dark: #a01818;
  --red-light: #fff0f0;
  --blue: #0046aa;
  --gold: #c8922a;
  --black: #111111;
  --dark-text: #1a1a1a;
  --mid-text: #444444;
  --muted: #777777;
  --border: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f8f8f9;
  --green: #16a34a;
  --green-bg: #f0fff4;
  --amber: #f59e0b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.13);
  --maxw: 1140px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark-text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
nav.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 20px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
}
.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.hp-logo { height: 44px; width: auto; display: block; }
.logo-lg .hp-logo { height: 56px; }
.logo-icon {
  width: 40px; height: 40px; border: 2.5px solid var(--black);
  border-radius: 9px; position: relative; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon::before { content: ''; width: 24px; height: 28px; border: 2px solid var(--black); border-radius: 4px; }
.logo-icon::after { content: ''; position: absolute; bottom: 5px; width: 9px; height: 2px; background: var(--black); border-radius: 2px; }
.logo-text { line-height: 1; }
.logo-hello { font-family: 'Dancing Script', cursive; font-size: 1.35rem; color: var(--red); display: block; line-height: 1; }
.logo-prepay { font-size: .62rem; font-weight: 800; letter-spacing: 2px; color: var(--black); text-transform: uppercase; display: block; }
.logo-esims { font-size: .62rem; font-weight: 800; letter-spacing: 2px; color: var(--red); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: .92rem; color: var(--mid-text); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  background: var(--red); color: #fff; font-weight: 700; font-size: .9rem;
  padding: 10px 22px; border-radius: 50px; text-decoration: none; transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--black); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 16px;
    align-items: flex-start; display: none; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
}

/* ─── BUTTONS ─── */
.btn { display: inline-block; font-weight: 700; text-decoration: none; cursor: pointer; border: none; font-family: inherit; transition: all .18s; text-align: center; }
.btn-primary { background: var(--red); color: #fff; padding: 14px 32px; border-radius: 50px; font-size: 1rem; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-dark { background: var(--black); color: #fff; padding: 14px 32px; border-radius: 50px; font-size: 1rem; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--black); padding: 13px 30px; border-radius: 50px; border: 1.6px solid var(--border); font-size: 1rem; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-block { display: block; width: 100%; }

/* ─── HERO ─── */
.hero { padding: 76px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero-badge { display: inline-block; background: var(--red-light); color: var(--red); font-size: .75rem; font-weight: 800; padding: 6px 15px; border-radius: 50px; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); font-weight: 800; line-height: 1.12; letter-spacing: -1.4px; color: var(--black); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero .lead { font-size: 1.12rem; color: var(--muted); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-pay { margin-top: 26px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-pay span { font-size: .8rem; color: var(--muted); font-weight: 600; }
.pay-chip { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; font-size: .78rem; font-weight: 700; color: var(--mid-text); }

.hero-visual { position: relative; }
.globe-card { background: linear-gradient(160deg, #1a1a1a, #2b2b2b); border-radius: 28px; padding: 34px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.globe-card::after { content: '🌍'; position: absolute; right: -30px; bottom: -30px; font-size: 200px; opacity: .12; }
.globe-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.globe-card p { color: #bbb; font-size: .9rem; margin-bottom: 22px; }
.mini-plan { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mini-plan .mp-left { display: flex; align-items: center; gap: 12px; }
.mini-plan .mp-flag { font-size: 1.5rem; }
.mini-plan .mp-name { font-weight: 700; font-size: .92rem; }
.mini-plan .mp-sub { font-size: .76rem; color: #aaa; }
.mini-plan .mp-price { font-weight: 800; color: #fff; }

/* ─── STATS ─── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat { text-align: center; }
.stat .num { font-size: 2rem; font-weight: 800; color: var(--red); letter-spacing: -1px; }
.stat .label { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* ─── SECTIONS ─── */
.section { padding: 72px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-label { font-size: .74rem; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 12px; }
.section h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; letter-spacing: -.8px; color: var(--black); line-height: 1.18; }
.section h2 span { color: var(--red); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.04rem; }

/* ─── DESTINATIONS GRID ─── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; }
.dest-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; text-decoration: none; transition: all .18s; display: block; }
.dest-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow); }
.dest-card .flag { font-size: 2.2rem; margin-bottom: 10px; }
.dest-card .name { font-weight: 700; color: var(--black); font-size: 1rem; }
.dest-card .from { font-size: .82rem; color: var(--muted); margin-top: 3px; }
.dest-card .from b { color: var(--red); font-weight: 800; }

/* ─── HOW IT WORKS ─── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: border-color .18s; }
.step:hover { border-color: var(--red); }
.step-num { width: 42px; height: 42px; background: var(--red); color: #fff; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.05rem; }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.step p { font-size: .9rem; color: var(--muted); }

/* ─── FEATURES ─── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .fi { font-size: 1.6rem; flex-shrink: 0; width: 52px; height: 52px; background: var(--red-light); border-radius: 13px; display: flex; align-items: center; justify-content: center; }
.feature h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 5px; }
.feature p { font-size: .9rem; color: var(--muted); }

/* ─── REVIEWS ─── */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 26px; }
.review .stars { color: #f5a623; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review p { font-size: .94rem; color: var(--mid-text); margin-bottom: 16px; }
.review .who { font-weight: 700; font-size: .88rem; }
.review .who span { display: block; color: var(--muted); font-weight: 500; font-size: .8rem; }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--black); border-radius: 24px; padding: 56px 40px; text-align: center; color: #fff; }
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner h2 span { color: var(--red); }
.cta-banner p { color: #aaa; margin-bottom: 28px; font-size: 1.05rem; }

/* ─── PROMO BAR ─── */
.promo-bar { background: var(--red); color: #fff; text-align: center; padding: 9px 20px; font-size: .85rem; font-weight: 700; letter-spacing: .3px; }
.promo-bar b { background: rgba(255,255,255,0.2); padding: 2px 8px; border-radius: 5px; }

/* ─── FOOTER ─── */
footer.site-footer { background: var(--black); color: #fff; padding: 56px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-hello { font-size: 1.7rem; }
.footer-brand .logo-prepay, .footer-brand .logo-esims { color: #fff; }
.footer-brand p { color: #999; font-size: .9rem; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; color: #ccc; text-decoration: none; font-size: .9rem; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2a2a2a; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: #777; font-size: .82rem; }
.footer-contact { text-align: right; }
.footer-contact .phone { font-size: 1.3rem; font-weight: 800; }
.footer-contact .email { color: #ccc; font-size: .88rem; text-decoration: underline; }

/* ─── BADGES / TAGS ─── */
.tag { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; border: 1px solid; }
.tag-data { background: #eef5ff; border-color: #cfe0fb; color: var(--blue); }
.tag-us { background: #dde9ff; border-color: #9bb8e8; color: var(--blue); }
.tag-uk { background: #fff3d6; border-color: #f1c869; color: #8b5a00; }
.tag-voice { background: var(--green-bg); border-color: #b6e8c6; color: var(--green); }
.tag-unl { background: var(--red-light); border-color: #f3c0c0; color: var(--red); }

/* ─── PAGE HEADER ─── */
.page-head { padding: 56px 0 28px; text-align: center; }
.page-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -1px; color: var(--black); }
.page-head h1 span { color: var(--red); }
.page-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ─── UTILITY ─── */
.center { text-align: center; }
.mt-2 { margin-top: 18px; } .mt-4 { margin-top: 36px; }
.hide { display: none !important; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-contact { text-align: left; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
}
