/* ========================================
   Travel SIM Finder - Styles
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --primary-dark: #0047b3;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --text-color: #0b1220;
    --text-light: #64748b;
    --background: #ffffff;
    --background-light: #f5f8fc;
    --border-color: #e2e8f0;
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
    --heading-color: #0b1220;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    padding: 0.6rem 0;
    font-size: 0.875rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-light);
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 0.25rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: var(--text-color);
    font-weight: 500;
}

/* Header and Navigation */
header {
    background-color: var(--background);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.25rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo a:hover {
    text-decoration: none;
    opacity: 0.9;
}

.logo-icon {
    height: 44px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--heading-color);
    white-space: nowrap;
}

.logo-text b {
    color: var(--primary-color);
    font-weight: 700;
}

.logo-text small {
    color: var(--text-light);
    font-size: 0.6em;
    font-weight: 600;
    letter-spacing: 0;
}

@media (max-width: 480px) {
    .logo-text { font-size: 1.2rem; }
    .logo-icon { height: 38px; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-bottom: none;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

/* Hero Section */
.hero-v2 {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #0c4a6e 100%);
}

.hero-v2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
}

.hero-v2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 75% 15%, rgba(6, 182, 212, 0.28) 0%, transparent 55%),
        linear-gradient(
            to bottom,
            rgba(6, 16, 36, 0.72) 0%,
            rgba(6, 16, 36, 0.65) 50%,
            rgba(6, 16, 36, 0.82) 100%
        );
    z-index: 1;
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 800px;
}

.hero-v2-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-v2-content .subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-v2-content .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-v2-content .btn-hero-primary {
    display: inline-block;
    padding: 1rem 2.25rem;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.45), 0 0 0 1px rgba(6, 182, 212, 0.25) inset;
}

.hero-v2-content .btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(6, 182, 212, 0.5);
    text-decoration: none;
}

.hero-v2-content .btn-hero-secondary {
    display: inline-block;
    padding: 1rem 2.25rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.hero-v2-content .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Article Hero (rich hero for content pages) */
.article-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #0c4a6e 100%);
}

.article-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(12, 74, 110, 0.55) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    z-index: 1;
}

.article-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0.85rem 1.5rem;
    max-width: 800px;
}

.article-hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-hero-content h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.45rem;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.article-hero-content .subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.45rem;
    font-weight: 400;
    line-height: 1.45;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.article-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
}

.meta-sep {
    color: rgba(255, 255, 255, 0.35);
}

.article-hero-disclosure {
    margin-top: 0.4rem;
    font-size: 0.64rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.6);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.article-hero-disclosure a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-hero,
    .page-hero {
        height: auto;
        min-height: 320px;
    }
    .article-hero-content h1,
    .page-hero h1 {
        font-size: 2rem;
    }
    .article-hero-content .subtitle,
    .page-hero .subtitle,
    .page-hero p {
        font-size: 1.05rem;
    }
}

/* Quick Recommendation Strip */
.quick-rec-strip {
    background: #fefce8;
    border-bottom: 2px solid #fbbf24;
    padding: 1rem 0;
}

.quick-rec-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-rec-label {
    background: #f59e0b;
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.quick-rec-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-color);
}

.quick-rec-btn {
    flex-shrink: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.quick-rec-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

@media (max-width: 768px) {
    .quick-rec-content {
        flex-direction: column;
        text-align: center;
    }
    .quick-rec-btn {
        width: 100%;
        text-align: center;
    }
}

/* Page Hero (inner pages) */
/* page-hero matches .article-hero so all interior heroes share one height + color + type scale */
.page-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #0c4a6e 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(12, 74, 110, 0.35) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.35) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    padding: 0.85rem 1.5rem;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.45rem;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.page-hero .subtitle,
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.45;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .article-hero-disclosure {
    margin-top: 0.4rem;
    font-size: 0.64rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.6);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Solutions Section */
.solutions-v2 {
    padding: 5rem 0;
    background: #f8fafc;
}

.solutions-v2 h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.solutions-v2 .section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.solutions-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.solution-card-v2 {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8ecf1;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.solution-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.solution-card-v2 .solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.solution-card-v2 h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.solution-card-v2 p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.solution-card-v2 .savings-tag {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.solution-card-v2 .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Image Feature Section */
.image-feature {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.image-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 50, 0.92), rgba(30, 58, 95, 0.88));
    z-index: 1;
}

.image-feature .container {
    position: relative;
    z-index: 2;
}

.value-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.value-grid-v2 > div {
    display: flex;
    flex-direction: column;
}

.value-grid-v2 h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1.25rem;
}

.value-grid-v2 p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.value-grid-v2 .impact-stat {
    margin-top: auto;
    padding-top: 1.25rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fbbf24;
}

.value-grid-v2 .impact-stat.success {
    color: #34d399;
}

/* Mistake/Smart items - replaces bullet points */
.mistake-item,
.smart-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.5;
}

.mistake-item .icon,
.smart-item .icon {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.smart-item a {
    color: #93c5fd;
    text-decoration: none;
}

.smart-item a:hover {
    color: white;
    text-decoration: underline;
}

/* Stories/Blog Preview */
.stories-preview {
    padding: 5rem 0;
    background: white;
}

.stories-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.stories-preview .section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.stories-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.story-preview-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf1;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.story-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.story-preview-card .story-preview-body {
    padding: 1.25rem 1.5rem;
}

.story-preview-card .story-preview-tag {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.story-preview-card h3 {
    font-size: 1.05rem;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.story-preview-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.stories-preview .view-all {
    text-align: center;
}

/* Placeholder card for coming soon content */
.story-placeholder {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    font-size: 3rem;
}

/* Checklist Section */
.checklist-v2 {
    padding: 5rem 0;
    background: #f8fafc;
}

.checklist-v2 h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--heading-color);
}

.checklist-flow-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.checklist-item-v2 {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e8ecf1;
    position: relative;
}

.checklist-item-v2 .checklist-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.checklist-item-v2 h4 {
    font-size: 1rem;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.checklist-item-v2 p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.checklist-item-v2 a {
    color: var(--primary-color);
    text-decoration: none;
}

.checklist-item-v2 a:hover {
    text-decoration: underline;
}

/* Partners Section */
.partners-v2 {
    padding: 5rem 0;
    background: white;
}

.partners-v2 h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--heading-color);
}

.partners-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.partner-card-v2 {
    display: block;
    background: #f8fafc;
    border: 1px solid #e8ecf1;
    border-radius: 1rem;
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.partner-card-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
}

.partner-card-v2 h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.partner-card-v2 p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.partner-card-v2 .cta-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Tool Banner */
.tool-banner-v2 {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
}

.tool-banner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tool-banner-link:hover {
    text-decoration: none;
    color: inherit;
}

.tool-banner-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    padding: 1.25rem 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tool-banner-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.tool-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tool-banner-text {
    flex: 1;
}

.tool-banner-text h3 {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
    color: var(--text-color);
}

.tool-banner-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.tool-banner-cta {
    flex-shrink: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Final CTA */
.final-cta-v2 {
    padding: 5rem 0;
    background: var(--primary-color);
    text-align: center;
}

.final-cta-v2 h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.final-cta-v2 p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.final-cta-v2 .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-v2 .btn-final {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: white;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.final-cta-v2 .btn-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Content Section (for inner pages) */
.content-section {
    padding: 3rem 0;
}

.content-section article {
    max-width: 900px;
    margin: 0 auto;
}

/* Table of Contents */
.table-of-contents {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.table-of-contents h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.toc-item {
    display: block;
    padding: 0.4rem 0;
    color: var(--text-color);
}

.toc-item:hover {
    color: var(--primary-color);
}

/* Table of Contents V2 (visual card grid) */
.toc-v2 {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid #e0e7ff;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.toc-v2-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.toc-v2-header h3 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}

.toc-v2-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.toc-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.toc-v2-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.toc-v2-card:hover {
    border-color: var(--primary-color);
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
    text-decoration: none;
    color: var(--primary-color);
}

.toc-v2-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toc-v2-label {
    line-height: 1.3;
}

@media (max-width: 768px) {
    .toc-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .toc-v2-grid {
        grid-template-columns: 1fr;
    }
}

/* Info Boxes */
.info-box,
.tips-box,
.warning-box,
.featured-service,
.danger-box {
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    border-left: 4px solid;
}

.info-box {
    background-color: #eff6ff;
    border-left-color: var(--info);
}

.tips-box {
    background-color: #f0fdf4;
    border-left-color: var(--success);
}

.warning-box {
    background-color: #fffbeb;
    border-left-color: var(--warning);
}

.danger-box {
    background-color: #fef2f2;
    border-left-color: var(--danger);
}

.featured-service {
    background-color: #f0f9ff;
    border-left-color: var(--primary-color);
}

.info-box h4,
.tips-box h4,
.warning-box h4,
.danger-box h4,
.featured-service h4 {
    margin-bottom: 1rem;
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

thead {
    background-color: var(--primary-color);
    color: white;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
    background-color: var(--background-light);
}

/* Provider Cards */
.provider-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.provider-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.provider-card h3 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.provider-card .provider-tagline {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.provider-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.provider-detail:last-child {
    border-bottom: none;
}

.provider-detail .label {
    color: var(--text-light);
}

.provider-detail .value {
    font-weight: 600;
    color: var(--text-color);
}

.recommended-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #ea580c);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Pros and Cons (using paragraphs not bullets) */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.pros,
.cons {
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.pros {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
}

.cons {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
}

.pros h4 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.cons h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.pro-item,
.con-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.pro-item .icon {
    color: #16a34a;
    flex-shrink: 0;
}

.con-item .icon {
    color: #dc2626;
    flex-shrink: 0;
}

/* Step Guide (numbered, no bullets) */
.step-guide {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Next Steps / Related */
.next-steps {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.next-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.next-link {
    display: block;
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.next-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.next-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.next-desc {
    display: block;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
}

.footer-links a {
    display: block;
    color: #d1d5db;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .checklist-flow-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        display: block;
    }

    .nav-dropdown-menu a {
        padding: 0.5rem 0 0.5rem 1.5rem;
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .hero-v2 {
        min-height: 400px;
    }

    .hero-v2-content h1 {
        font-size: 2.25rem;
    }

    .hero-v2-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-v2-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .solutions-grid-v2 {
        grid-template-columns: 1fr;
    }

    .stories-preview-grid {
        grid-template-columns: 1fr;
    }

    .value-grid-v2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checklist-flow-v2 {
        grid-template-columns: 1fr;
    }

    .partners-grid-v2 {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .tool-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .tool-banner-cta {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    table {
        font-size: 0.875rem;
    }

    th, td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Affiliate flyout (eSIM Finder + destination pages) */
.flyout { position: fixed; z-index: 1200; right: 20px; bottom: 20px; width: 300px; max-width: calc(100vw - 32px); background: #fff; border: 1px solid var(--border-color); border-radius: 14px; box-shadow: 0 12px 32px rgba(11, 18, 32, .18); padding: 1rem 1.1rem; transform: translateY(160%); opacity: 0; transition: transform .35s ease, opacity .35s ease; }
.flyout.show { transform: translateY(0); opacity: 1; }
.flyout-label { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--primary-color); }
.flyout-name { font-family: "Space Grotesk", -apple-system, sans-serif; font-weight: 700; font-size: 1.15rem; margin: .15rem 0 .1rem; color: var(--heading-color); }
.flyout-plan { font-size: .85rem; color: var(--text-light); margin-bottom: .7rem; }
.flyout-plan strong { color: var(--heading-color); }
.flyout a.flyout-cta { display: block; text-align: center; background: var(--primary-color); color: #fff; padding: .55rem; border-radius: 8px; font-weight: 600; font-size: .95rem; }
.flyout a.flyout-cta:hover { background: var(--primary-dark); }
.flyout-close { position: absolute; top: .45rem; right: .6rem; border: none; background: none; font-size: 1.25rem; line-height: 1; color: var(--text-light); cursor: pointer; padding: .1rem .3rem; }
.flyout-close:hover { color: var(--heading-color); }
@media (max-width: 560px) { .flyout { right: 8px; left: 8px; bottom: 8px; width: auto; } }
