/* manaMOBILE Modern Tropical — Design System v2 */
/* Design Tokens */
:root {
  --brand: #0ea5a0;
  --brand-dark: #0d7374;
  --accent-warm: #f4823a;
  --accent-gold: #f5a623;
  --bg: #fdfaf5;
  --bg-white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e8e2d8;
  --card-border: #e8e2d8;
  --success: #1b8a4a;
  --success-bg: #e6f5ec;
  --warn: #e65100;
  --warn-bg: #fff8e1;
  --cta: var(--accent-warm);
  --cta-hover: #d97030;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.09);
  --transition: 0.2s ease;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --max-width: 1120px;
  --content-narrow: 680px;
}

/* Per-country accent overrides — used on country pages */
[data-country="JP"] { --brand: #c0392b; --warm: #223a70; --bg: #faf7f5; }
[data-country="KR"] { --brand: #00a86b; --warm: #cd2e3a; --bg: #f7faf8; }
[data-country="MX"] { --brand: #cc5533; --warm: #2d6a4f; --bg: #fcf8f5; }
[data-country="BR"] { --brand: #009c3b; --warm: #fedd00; --bg: #f8faf5; }
[data-country="PH"] { --brand: #0038a8; --warm: #fcd116; --bg: #f5f7fc; }
[data-country="AU"] { --brand: #507a4c; --warm: #d4a353; --bg: #f8faf5; }
[data-country="FR"] { --brand: #1b2a4a; --warm: #c9a96e; --bg: #f7f5f2; }
[data-country="IT"] { --brand: #c45a3c; --warm: #5a7247; --bg: #faf6f2; }
[data-country="GB"] { --brand: #1d3557; --warm: #b8956a; --bg: #f6f5f2; }
[data-country="CA"] { --brand: #c62828; --warm: #2e5c3a; --bg: #faf6f5; }
[data-country="DE"] { --brand: #1a1a1a; --warm: #c9a400; --bg: #f7f7f5; }
[data-country="SG"] { --brand: #c6363c; --warm: #1a3a5c; --bg: #faf6f5; }
[data-country="HK"] { --brand: #ba2c3a; --warm: #d4a017; --bg: #faf6f5; }
[data-country="TW"] { --brand: #1b5e8a; --warm: #c53939; --bg: #f5f7fa; }
[data-country="NZ"] { --brand: #1a3a3a; --warm: #4a8c5c; --bg: #f5f7f5; }
[data-country="VN"] { --brand: #c53939; --warm: #d4a017; --bg: #faf6f5; }
[data-country="TH"] { --brand: #1b5e8a; --warm: #c53939; --bg: #f5f7fa; }

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.section-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text); }
.section-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; }
.card-title { font-size: 1.05rem; font-weight: 600; }
.body-text { font-size: 1.05rem; line-height: 1.7; }
.caption { font-size: 0.8rem; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--content-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-alt { background: var(--bg); }
.section-white { background: var(--bg-white); }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 50px; }
.nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  background: var(--accent-warm); color: #fff !important;
  padding: 10px 24px; border-radius: var(--radius); font-weight: 600;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--cta-hover) !important; color: #fff !important; }

/* Mega-dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > summary { list-style: none; cursor: pointer; font-size: 0.88rem; color: var(--text-muted); font-weight: 500; user-select: none; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after { content: ' ▾'; font-size: 0.7rem; }
.nav-dropdown[open] > summary { color: var(--brand); }
.mega-grid {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; min-width: 560px; box-shadow: var(--shadow-lg);
}
.mega-grid a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 0.85rem; color: var(--text); white-space: nowrap;
}
.mega-grid a:hover { background: var(--bg); color: var(--brand); }
.mega-grid .flag { font-size: 1.2rem; }

/* Mobile nav */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 200; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-drawer {
  position: fixed; top: 0; right: 0; width: 320px; max-width: 85vw; height: 100vh; height: 100dvh;
  background: var(--bg-white); z-index: 150;
  transform: translateX(100%); transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg); overflow-y: auto;
  padding: 80px 24px 32px;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 149;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-drawer a { display: block; padding: 12px 0; font-size: 1.05rem; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-drawer .region-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 20px; margin-bottom: 4px; }

/* Hero */
.hero { padding: 80px 0 48px; display: flex; gap: 48px; align-items: center; }
.hero-content { flex: 1; }
.hero-visual { flex: 0 0 320px; display: flex; justify-content: center; align-items: center; }
.hero-badge { display: inline-block; background: var(--success-bg); color: var(--success); font-size: 0.8rem; padding: 4px 14px; border-radius: 100px; font-weight: 600; margin-bottom: 16px; }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.hero-compare { background: var(--warn-bg); border: 1px solid #ffe0b2; border-radius: var(--radius); padding: 14px 18px; margin-bottom: 24px; font-size: 0.9rem; color: var(--warn); }
.hero-compare strong { color: var(--cta); }

/* Phone mockup */
.phone-mockup {
  width: 240px; height: 480px; border-radius: 32px;
  background: var(--bg-white); border: 3px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.phone-mockup .notch { width: 100px; height: 24px; background: var(--text); border-radius: 0 0 16px 16px; margin: 0 auto; }
.phone-mockup .screen { padding: 20px 16px; text-align: center; }
.phone-mockup .qr { width: 80px; height: 80px; background: var(--text); margin: 16px auto; border-radius: 8px; }
.phone-mockup .bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 8px; }
.phone-mockup .bar-short { width: 60%; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-warm); color: #fff;
  border: none; padding: 14px 32px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: var(--shadow); color: #fff; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1.5px solid var(--border);
  padding: 13px 32px; border-radius: var(--radius);
  font-size: 0.95rem; color: var(--text-muted); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin: 24px 0; }

/* Stat strip */
.stat-strip {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-value { font-size: 1.4rem; font-weight: 800; color: var(--brand); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* Feature strip */
.feature-strip { display: flex; gap: 40px; justify-content: center; padding: 40px 0; flex-wrap: wrap; }
.feat { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.feat .icon { font-size: 1.3rem; }

/* Destination scroll */
.dest-scroll {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 0 24px; -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, black 85%, transparent 98%);
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 98%);
}
.dest-scroll::-webkit-scrollbar { display: none; }
.dest-card {
  flex: 0 0 220px; scroll-snap-align: start;
  border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  padding: 24px 20px; text-align: center; text-decoration: none; color: inherit;
  background: var(--bg-white); position: relative;
  transition: all var(--transition);
}
.dest-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.dest-card .flag { font-size: 2.6rem; margin-bottom: 8px; display: block; }
.dest-card .name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.dest-card .cities { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.dest-card .price { font-size: 1.1rem; font-weight: 700; color: var(--accent-warm); }
.dest-card .top-badge {
  position: absolute; top: -8px; right: 12px;
  background: var(--accent-warm); color: #fff;
  font-size: 0.68rem; padding: 2px 10px; border-radius: 100px; font-weight: 600;
}

/* Country grid */
.country-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.country-card {
  border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  padding: 30px 20px; text-align: center; text-decoration: none; color: inherit;
  background: var(--bg-white); display: block; position: relative;
  transition: all var(--transition);
}
.country-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.country-card .flag { font-size: 2.8rem; margin-bottom: 12px; display: block; }
.country-card .name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.country-card .cities { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.country-card .price { font-size: 1.15rem; font-weight: 700; color: var(--accent-warm); }
.country-card .network { display: inline-block; background: var(--success-bg); color: var(--success); font-size: 0.68rem; padding: 2px 10px; border-radius: 4px; margin-top: 8px; }
.country-card .top-badge { position: absolute; top: -8px; right: 12px; background: var(--accent-warm); color: #fff; font-size: 0.68rem; padding: 2px 10px; border-radius: 100px; font-weight: 600; }

/* Plan cards */
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.plan-card {
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 16px; cursor: pointer; transition: all var(--transition);
  position: relative; background: var(--bg-white);
}
.plan-card:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.plan-card.selected { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand); }
.plan-card .data { font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.plan-card .days { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.plan-card .price { font-size: 1.3rem; font-weight: 700; color: var(--accent-warm); margin-top: 12px; }
.plan-card .perday { font-size: 0.75rem; color: var(--brand); margin-top: 4px; font-weight: 600; }
.plan-card .badge-popular { position: absolute; top: -8px; right: 12px; background: var(--accent-warm); color: #fff; font-size: 0.7rem; padding: 2px 10px; border-radius: 100px; font-weight: 600; }
.plan-card .network-badge { display: inline-block; background: var(--success-bg); color: var(--success); font-size: 0.7rem; padding: 2px 8px; border-radius: 4px; margin-top: 8px; }

/* Country switcher pills */
.country-switcher { display: flex; gap: 8px; flex-wrap: wrap; }
.country-switcher button {
  padding: 8px 18px; border: 1.5px solid var(--border); border-radius: 100px;
  background: var(--bg-white); font-size: 0.85rem; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition); font-weight: 500;
}
.country-switcher button.active,
.country-switcher button:hover { border-color: var(--brand); color: var(--brand); background: var(--bg); }

/* Comparison cards */
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.compare-card {
  padding: 28px 20px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg-white);
  text-align: center;
}
.compare-card.winner {
  border-color: var(--brand); background: linear-gradient(180deg, rgba(14,165,160,0.06) 0%, var(--bg-white) 100%);
  box-shadow: var(--shadow);
}
.compare-card h3 { font-size: 1rem; margin-bottom: 16px; color: var(--text); }
.compare-card .metric { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.compare-card .metric.win { color: var(--brand); }
.compare-card .metric.lose { color: var(--text-muted); }
.compare-card .sub { font-size: 0.8rem; color: var(--text-muted); }

/* Steps */
.steps { display: flex; gap: 24px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 42px; left: 58px; right: 58px;
  height: 2px; background: var(--border); z-index: 0;
}
.step { flex: 1; text-align: center; position: relative; z-index: 1; }
.step .num {
  display: inline-flex; width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand); color: #fff; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; margin-bottom: 12px;
}
.step .icon { font-size: 1.6rem; margin-bottom: 6px; display: block; }
.step h3 { font-size: 0.95rem; margin-bottom: 4px; }
.step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-item {
  padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-white); transition: all var(--transition);
}
.feature-item:hover { border-color: var(--brand); }
.feature-item .icon { font-size: 1.5rem; margin-bottom: 8px; }
.feature-item h3 { font-size: 0.92rem; margin-bottom: 6px; }
.feature-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* Social proof */
.testimonial-scroll { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.testimonial-scroll::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 340px; scroll-snap-align: start;
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px;
}
.testimonial-card .stars { color: var(--accent-gold); font-size: 1rem; margin-bottom: 8px; }
.testimonial-card .quote { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.testimonial-card .author { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* FAQ */
.faq { margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; color: var(--text);
  user-select: none;
}
.faq-q::after { content: '+'; color: var(--text-muted); font-size: 1.2rem; font-weight: 300; transition: transform 0.2s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; padding: 0 0 20px; display: none; }
.faq-item.open .faq-a { display: block; }

/* Blog */
.blog-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  padding: 20px; background: var(--bg-white);
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.blog-card .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; color: var(--brand);
  background: var(--bg); padding: 2px 10px; border-radius: 20px; margin-bottom: 8px;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--text); }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Blog article */
.article-body { font-size: 1.08rem; line-height: 1.8; }
.article-body h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.article-body p { margin-bottom: 16px; }
.article-body .pull-quote {
  border-left: 3px solid var(--brand); padding: 12px 20px; margin: 24px 0;
  font-size: 1.1rem; font-style: italic; color: var(--text-muted);
  background: var(--bg);
}
.article-body .inline-cta {
  display: block; text-align: center; padding: 20px; margin: 32px 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-white) 100%);
  border: 2px solid var(--brand); border-radius: var(--radius-lg);
  font-weight: 600; color: var(--brand); text-decoration: none;
  transition: all var(--transition);
}
.article-body .inline-cta:hover { background: var(--brand); color: #fff; }

/* Category filter pills */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-pill {
  padding: 8px 18px; border: 1.5px solid var(--border); border-radius: 100px;
  background: var(--bg-white); font-size: 0.85rem; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition); font-weight: 500;
}
.filter-pill:hover, .filter-pill.active { border-color: var(--brand); color: var(--brand); background: var(--bg); }

/* Article card (blog index) */
.article-card {
  display: block; text-decoration: none; color: inherit;
  border: 1.5px solid var(--card-border); border-radius: var(--radius);
  padding: 24px; margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.article-card:hover { border-color: var(--brand); box-shadow: 0 2px 12px rgba(14,165,160,0.1); }
.article-card h2 { font-size: 20px; margin: 0 0 6px; color: var(--text); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 48px 0 32px; background: var(--bg-white); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; color: var(--text); text-transform: uppercase; letter-spacing: 0.03em; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-muted); padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-muted); }
.footer-brand { color: var(--brand); font-weight: 600; }

/* Tagline badge */
.tagline-badge {
  display: inline-block; background: var(--bg); color: var(--brand-dark);
  font-size: 0.78rem; padding: 4px 16px; border-radius: 100px; font-weight: 600; margin-top: 8px;
}

/* Form elements */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 1rem; font-family: var(--font); outline: none; transition: border-color var(--transition);
  background: var(--bg-white);
}
.form-group input:focus, .form-group select:focus { border-color: var(--brand); }

/* Checkout */
.checkout-card {
  border: 2px solid var(--brand); border-radius: var(--radius-lg);
  padding: 24px; background: var(--bg-white); margin: 24px 0; text-align: center;
}
.checkout-card .flag { font-size: 2.8rem; margin-bottom: 8px; display: block; }
.checkout-card .country { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.checkout-card .specs { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.checkout-card .price { font-size: 2.2rem; font-weight: 800; color: var(--accent-warm); }

/* Trust chips */
.trust-chips { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.trust-chip { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-muted); }
.trust-chip .icon { font-size: 1rem; }

/* Error & promo */
.error-msg { background: #fff0f0; border: 1px solid #ffcdd2; border-radius: var(--radius); padding: 12px; color: #c62828; font-size: 0.85rem; margin: 12px 0; display: none; }
.promo-success { display: none; align-items: center; gap: 10px; background: var(--success-bg); border: 1px solid #a5d6a7; border-radius: var(--radius); padding: 12px 16px; margin: 0 0 20px; font-size: 0.85rem; color: var(--success); }

/* Blog header */
.blog-header { padding: 24px 0; border-bottom: 1px solid var(--border); }
.blog-header .inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.blog-header .logo { font-weight: 700; color: var(--brand); font-size: 1.1rem; }
.blog-header .back { font-size: 0.85rem; color: var(--text-muted); }
.blog-footer { padding: 32px 0; text-align: center; font-size: 0.78rem; color: var(--text-muted); border-top: 1px solid var(--border); margin-top: 48px; }
.intro { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

/* Compare table (legacy) */
.compare-section { margin: 40px 0 48px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--bg); font-weight: 600; color: var(--text-muted); }
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table .win { color: var(--brand); font-weight: 700; }
.compare-table .lose { color: var(--text-muted); }

/* Trust bar (legacy) */
.trust-bar { display: flex; gap: 32px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.trust-item .icon { font-size: 1.2rem; }

/* Blog article specific */
.article-body .meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; display: flex; gap: 16px; }
.article-body .meta span { display: flex; align-items: center; gap: 4px; }
.article-body ol.steps { padding-left: 20px; }
.article-body ol.steps li { margin-bottom: 8px; line-height: 1.7; }
.article-body .info-box {
  background: linear-gradient(135deg, rgba(14,165,160,0.06) 0%, var(--bg-white) 100%);
  border: 2px solid var(--brand); border-radius: var(--radius-lg); padding: 24px; margin: 24px 0;
}
.article-body .info-box.warn {
  background: var(--warn-bg); border-color: #ffe0b2;
}
.article-body .info-box h3 { font-size: 1rem; margin-bottom: 8px; }
.article-body .info-box .btn-cta {
  display: inline-block; margin-top: 12px; padding: 12px 28px;
  background: var(--accent-warm); color: #fff; border-radius: var(--radius);
  font-weight: 600; text-decoration: none; transition: background var(--transition);
}
.article-body .info-box .btn-cta:hover { background: var(--cta-hover); }
.article-body details.faq { margin-bottom: 8px; border-bottom: 1px solid var(--border); padding: 12px 0; }
.article-body details.faq summary { font-weight: 600; cursor: pointer; font-size: 0.95rem; padding: 4px 0; }
.article-body details.faq p { padding: 8px 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.article-body .compare-table { margin: 20px 0; }
.article-body .compare-table tr.highlight td { color: var(--brand); font-weight: 600; background: rgba(14,165,160,0.04); }

/* More destinations select */
.more-destinations { text-align: center; margin-bottom: 60px; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.more-select-wrap { max-width: 420px; margin: 0 auto; }
.more-select-wrap select {
  width: 100%; padding: 14px 40px 14px 16px; border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; font-family: var(--font); outline: none; background: var(--bg-white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.more-select-wrap select:focus { border-color: var(--brand); }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; padding: 48px 0 32px; gap: 32px; }
  .hero-visual { flex: 0 0 auto; }
  .phone-mockup { width: 180px; height: 360px; border-radius: 24px; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .plan-card { padding: 18px 12px; }
  .plan-card .data { font-size: 1.3rem; }
  .plan-card .price { font-size: 1.1rem; }
  .steps { flex-direction: column; gap: 16px; }
  .steps::before { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .blog-preview { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .dest-scroll { gap: 12px; }
  .dest-card { flex: 0 0 180px; }
  .testimonial-card { flex: 0 0 300px; }
  .section { padding: 48px 0; }
  .stat-strip { gap: 24px; }
  .country-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

@media (max-width: 480px) {
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 20px 16px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }
  .plan-card .price { margin-top: 0; }
  .plan-card .perday { width: 100%; margin-top: 6px; }
  .container { padding: 0 16px; }
  .hero { padding: 36px 0 24px; }
  .feature-strip { flex-direction: column; gap: 12px; }
  .btn-primary { width: 100%; justify-content: center; }
  .country-grid { grid-template-columns: 1fr; }
}
