/*
Theme Name: EasyWyoming
Theme URI: https://easywyoming.com
Author: EasyWyoming
Description: Wyoming LLC formation SaaS theme for international entrepreneurs
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: easywyoming
*/

/* ==============================
   CSS Variables & Reset
============================== */
:root {
    --navy: #0B1D3A;
    --navy-light: #132848;
    --navy-mid: #1A3660;
    --blue: #1A6FD4;
    --blue-bright: #2B82F0;
    --gold: #F5A623;
    --gold-light: #FFB940;
    --white: #FFFFFF;
    --off-white: #F8FAFD;
    --gray-100: #EEF2F7;
    --gray-200: #D8E2EF;
    --gray-400: #94A3B8;
    --gray-600: #64748B;
    --gray-800: #334155;
    --success: #10B981;
    --danger: #EF4444;

    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(11,29,58,0.08);
    --shadow-md: 0 6px 24px rgba(11,29,58,0.12);
    --shadow-lg: 0 16px 48px rgba(11,29,58,0.18);
    --shadow-blue: 0 8px 32px rgba(26,111,212,0.25);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--gray-800);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ==============================
   Typography
============================== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--gray-600); font-size: 1rem; }

/* ==============================
   Layout
============================== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section { padding: 80px 0; }
.section--dark { background: var(--navy); }
.section--light { background: var(--off-white); }
.section--blue { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-bright);
    background: rgba(26,111,212,0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-header h2 { margin-bottom: 14px; }

/* ==============================
   Buttons
============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.22s ease;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.3;
}

.btn-primary {
    background: var(--blue);
    color: var(--white) !important;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26,111,212,0.35);
    color: var(--white) !important;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy) !important;
    box-shadow: 0 8px 24px rgba(245,166,35,0.3);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(245,166,35,0.4);
    color: var(--navy) !important;
}

.btn-ghost {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    color: var(--white) !important;
}

.btn-ghost-dark {
    background: transparent;
    color: var(--gray-600) !important;
    border: 2px solid var(--gray-200);
}

.btn-ghost-dark:hover {
    border-color: var(--gray-400);
    background: var(--gray-100);
    color: var(--gray-800) !important;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

/* ==============================
   Badges
============================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    white-space: nowrap;
}

.badge-top  { background: linear-gradient(135deg, #FF6B35, #FF4500); color: white; }
.badge-cheap { background: linear-gradient(135deg, #10B981, #059669); color: white; }
.badge-fast { background: linear-gradient(135deg, #6366F1, #4F46E5); color: white; }

/* ==============================
   Header / Navigation
============================== */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11,29,58,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-logo .flag { font-size: 1.4rem; }

.nav-logo span {
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.18s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-menu .btn {
    padding: 9px 20px;
    font-size: 0.88rem;
}

/* ==============================
   Footer
============================== */
#site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-col h5 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: color 0.18s ease;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

/* ==============================
   Hero
============================== */
.hero {
    background: linear-gradient(150deg, var(--navy) 0%, #0F2952 60%, #0D2240 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,111,212,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,111,212,0.2);
    border: 1px solid rgba(26,111,212,0.4);
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: #79B8FF;
    letter-spacing: 0.03em;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-content h1 .accent {
    background: linear-gradient(135deg, var(--gold) 0%, #FFD380 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.urgency-text {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.88rem !important;
    margin-top: 14px;
    margin-bottom: 24px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.hero-trust-icons { display: flex; }

.hero-trust-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy-mid));
    border: 2px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-left: -8px;
    color: white;
}

.hero-trust-icon:first-child { margin-left: 0; }

.hero-trust p {
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.85rem !important;
    margin: 0;
}

.hero-trust strong { color: rgba(255,255,255,0.9); }

.demo-note {
    color: rgba(255,255,255,0.3) !important;
    font-size: 0.78rem !important;
    margin-top: 12px;
    font-style: italic;
}

/* Hero visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-mockup {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-xl);
    padding: 28px;
    width: 100%;
    max-width: 360px;
    backdrop-filter: blur(8px);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28CA41; }

.mockup-item {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mockup-item-label { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

.mockup-item-value {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 0.88rem;
}

.mockup-item-value.gold { color: var(--gold); }
.mockup-item-value.green { color: #34D399; }

.mockup-cta {
    display: block;
    margin-top: 16px;
    background: var(--blue);
    color: white !important;
    border-radius: var(--radius-md);
    padding: 13px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.18s;
    text-decoration: none !important;
}

.mockup-cta:hover { background: var(--blue-bright); }

/* ==============================
   Why Wyoming Cards
============================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.why-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(26,111,212,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 18px;
}

.why-card h3 { margin-bottom: 8px; font-size: 1.1rem; }

/* ==============================
   Steps
============================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.67% + 20px);
    right: calc(16.67% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 4px solid var(--off-white);
    box-shadow: var(--shadow-md);
}

.step-item h3 { margin-bottom: 10px; }

/* ==============================
   Anti-Scam Section
============================== */
.antiscam-section { background: var(--white); }

.scam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scam-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    border: 1px solid var(--gray-100);
    border-top: 4px solid var(--danger);
    box-shadow: var(--shadow-sm);
    transition: all 0.22s ease;
}

.scam-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.scam-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.scam-card h4 { color: var(--navy); margin-bottom: 8px; }

/* ==============================
   Trust Band
============================== */
.trust-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 72px 0;
    text-align: center;
}

.trust-band h2 {
    color: var(--white);
    max-width: 640px;
    margin: 0 auto 14px;
}

.trust-band p {
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto 32px;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.trust-stat h3 {
    font-size: 2.2rem;
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: 4px;
}

.trust-stat p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ==============================
   Start Page
============================== */
.start-hero {
    background: linear-gradient(150deg, var(--navy), var(--navy-mid));
    padding: 72px 0 52px;
    text-align: center;
}

.start-hero h1 { color: var(--white); margin-bottom: 10px; }
.start-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

.start-form-wrap {
    max-width: 680px;
    margin: -28px auto 72px;
    position: relative;
    z-index: 10;
}

.start-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 20px 64px rgba(11,29,58,0.16);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select {
    padding: 13px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(26,111,212,0.1);
    background: var(--white);
}

.form-group input::placeholder { color: var(--gray-400); }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }

.radio-option { flex: 1; position: relative; min-width: 80px; }

.radio-option input[type="radio"] {
    position: absolute; opacity: 0; width: 0; height: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--off-white);
    transition: all 0.18s;
    text-align: center;
    width: 100%;
}

.radio-option input[type="radio"]:checked + label {
    border-color: var(--blue);
    background: rgba(26,111,212,0.07);
    color: var(--blue);
}

.form-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 4px 0 18px;
}

.form-section-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 14px;
}

.form-submit { margin-top: 10px; }

.form-note {
    font-size: 0.82rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 12px;
}

/* Trust row */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    text-align: center;
}

.trust-item { min-width: 120px; }

.trust-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 1rem; }

.trust-item p { font-size: 0.88rem; }

/* ==============================
   Results Page
============================== */
.results-hero {
    background: linear-gradient(150deg, var(--navy), var(--navy-mid));
    padding: 64px 0 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.results-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.1), transparent 70%);
    pointer-events: none;
}

.results-hero h1 { color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.results-hero p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.demo-badge span {
    color: #FCA5A5;
    font-size: 0.88rem;
    font-weight: 600;
}

.results-email-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.results-email-badge span { color: var(--gold); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; }

.results-body {
    max-width: 860px;
    margin: -36px auto 72px;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Summary chips */
.summary-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.chip {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.chip-green {
    background: rgba(16,185,129,0.08);
    border-color: rgba(16,185,129,0.3);
    color: #059669;
}

/* Results card */
.results-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    margin-bottom: 20px;
}

.results-card-title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-100);
}

.results-card-title .icon {
    width: 46px; height: 46px;
    border-radius: var(--radius-md);
    background: rgba(26,111,212,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.card-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.results-card-title h3 { font-size: 1.2rem; color: var(--navy); }

.why-wyoming-text {
    background: linear-gradient(135deg, var(--off-white), #EEF5FF);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    border-left: 4px solid var(--blue);
}

.why-wyoming-text p { color: var(--navy); font-size: 1rem; line-height: 1.65; margin: 0; }

/* Info boxes */
.info-box {
    margin-top: 14px;
    padding: 13px 18px;
    border-radius: var(--radius-md);
}

.info-box p { margin: 0; font-size: 0.93rem; }

.info-purple { background: rgba(99,102,241,0.06); border: 1px solid rgba(99,102,241,0.15); }
.info-purple p { color: var(--navy); }

.info-gold { background: rgba(245,166,35,0.06); border: 1px solid rgba(245,166,35,0.2); }
.info-gold p { color: var(--navy); }

.info-green { background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.2); }
.info-green p { color: var(--navy); }

/* Cost grid */
.cost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.cost-item {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    border: 1px solid var(--gray-100);
}

.cost-item .amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
}

.cost-item .label { font-size: 0.82rem; color: var(--gray-400); }

/* What you get */
.get-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.get-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}

.get-item .check {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    font-weight: 700;
}

.get-item span { font-weight: 600; color: var(--gray-800); font-size: 0.92rem; }

/* Provider cards */
.provider-cards { display: flex; flex-direction: column; gap: 16px; }

.provider-card {
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    border: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.22s ease;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.provider-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.provider-card.top-pick {
    border-color: var(--gold);
    background: linear-gradient(135deg, #FFFDF5, #FFFAEB);
}

.provider-card.top-pick:hover { border-color: var(--gold-light); box-shadow: 0 8px 32px rgba(245,166,35,0.2); }

.provider-logo {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.provider-info { flex: 1; min-width: 0; }

.provider-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.provider-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
}

.provider-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--blue);
    font-size: 1rem;
    margin-bottom: 8px;
}

.provider-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.provider-feature {
    background: var(--gray-100);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--gray-600);
    font-weight: 500;
}

.provider-action { flex-shrink: 0; }

/* Warning box */
.warning-box {
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
    border: 1px solid #FED7AA;
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.warning-box .warning-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.warning-box strong { display: block; color: #92400E; font-family: var(--font-display); font-weight: 700; margin-bottom: 4px; }
.warning-box p { color: #78350F; font-size: 0.92rem; margin: 0; }

/* Restart bar */
.restart-bar {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.restart-bar p { margin-bottom: 16px; color: var(--gray-600); }

/* ==============================
   Blog
============================== */
.blog-hero {
    background: linear-gradient(150deg, var(--navy), var(--navy-mid));
    padding: 72px 0;
    text-align: center;
}

.blog-hero h1 { color: var(--white); margin-bottom: 10px; }
.blog-hero p { color: rgba(255,255,255,0.65); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 56px 0;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.22s ease;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card-img {
    height: 160px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.blog-card-body { padding: 22px; }

.blog-tag {
    display: inline-block;
    background: rgba(26,111,212,0.1);
    color: var(--blue);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.blog-card-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 0.88rem; line-height: 1.55; }

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Single Post */
.post-header {
    background: linear-gradient(150deg, var(--navy), var(--navy-mid));
    padding: 64px 0;
    text-align: center;
}

.post-header h1 { color: var(--white); max-width: 720px; margin: 0 auto 14px; }

.post-body-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 24px;
}

.post-content p { margin-bottom: 18px; font-size: 1.03rem; line-height: 1.75; }
.post-content h2 { margin: 32px 0 14px; }
.post-content h3 { margin: 24px 0 10px; }

/* ==============================
   Animations
============================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeUp 0.55s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ==============================
   MOBILE RESPONSIVE — CRITICAL
============================== */
@media (max-width: 768px) {

    /* Global */
    .container { padding: 0 16px; }
    .section { padding: 56px 0; }

    /* Full-width buttons on mobile */
    .btn-full-mobile {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 1rem;
    }

    /* Nav */
    .nav-inner { height: 58px; }
    .nav-menu a:not(.btn) { display: none; }
    .nav-menu .btn { padding: 8px 14px; font-size: 0.82rem; }
    .nav-logo { font-size: 1.1rem; }
    .nav-logo .flag { font-size: 1.2rem; }

    /* Hero */
    .hero { padding: 60px 0 52px; }
    .hero-inner { grid-template-columns: 1fr; gap: 0; }
    .hero-visual { display: none; }
    .hero-content h1 { font-size: 1.9rem; }
    .hero-content p { font-size: 1rem; }
    .hero-badge span { font-size: 0.75rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .urgency-text { text-align: center; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Why Wyoming */
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-card { padding: 24px 20px; }

    /* Steps */
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .steps-grid::before { display: none; }

    /* Anti-scam */
    .scam-grid { grid-template-columns: 1fr; gap: 14px; }

    /* Trust stats */
    .trust-stats { gap: 24px; }
    .trust-band { padding: 52px 0; }
    .trust-band h2 { font-size: 1.4rem; }

    /* Trust row */
    .trust-row { gap: 24px; }
    .trust-item { min-width: 130px; }

    /* Start form */
    .start-form-wrap { margin: -20px 0 56px; }
    .start-form { padding: 24px 18px; border-radius: var(--radius-lg); }
    .form-grid { grid-template-columns: 1fr; gap: 14px; }
    .form-group.full { grid-column: 1; }
    .radio-group { flex-direction: column; }
    .radio-option { min-width: 100%; }

    /* Results */
    .results-body { margin: -28px 0 56px; padding: 0 16px; }
    .results-card { padding: 22px 18px; border-radius: var(--radius-lg); }
    .results-card-title { flex-direction: row; align-items: flex-start; }
    .cost-grid { grid-template-columns: 1fr; gap: 10px; }
    .get-list { grid-template-columns: 1fr; gap: 8px; }
    .summary-chips { gap: 6px; }
    .chip { font-size: 0.8rem; padding: 6px 12px; }

    /* Provider cards */
    .provider-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px;
        gap: 14px;
    }

    .provider-name-row { flex-wrap: wrap; }
    .provider-action { width: 100%; }
    .provider-action .btn { width: 100%; justify-content: center; }

    /* Warning */
    .warning-box { flex-direction: column; padding: 18px; }

    /* Restart bar */
    .restart-bar { padding: 22px 18px; }
    .restart-bar > div { flex-direction: column; }
    .restart-bar .btn { width: 100%; justify-content: center; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.3rem; }
    .start-form { padding: 20px 14px; }
    .results-card { padding: 18px 14px; }
    .trust-stats { flex-direction: column; gap: 16px; align-items: center; }
}
