/* Tema compartilhado — páginas de teste de planos (alinhado ao mapa iGo) */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --header-height: 64px;
    --igo-blue: #003580;
    --igo-yellow: #ffb700;
    --plan-orange: #ff6b2c;
    --plan-orange-dark: #e85a1a;
    --plan-purple: #6b2d9e;
    --plan-green: #22c55e;
    --bg-page: #f8f9fa;
    --bg-panel: #ffffff;
    --bg-section: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --border-color: #dee2e6;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --radius: 20px;
    --hero-gradient: linear-gradient(135deg, rgba(0, 53, 128, 0.06) 0%, rgba(255, 107, 44, 0.08) 50%, rgba(107, 45, 158, 0.06) 100%);
}

[data-theme="dark"] {
    --bg-page: #121212;
    --bg-panel: #2e2e2e;
    --bg-section: #1e1e1e;
    --text-primary: #f5f5f5;
    --text-secondary: #c8c8c8;
    --text-muted: #a3a3a3;
    --border-color: #4a4a4a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --hero-gradient: linear-gradient(135deg, rgba(0, 53, 128, 0.35) 0%, rgba(0, 53, 128, 0.12) 100%);
}

html { scroll-behavior: smooth; }

body.igo-plans-body {
    font-family: 'Roboto', system-ui, sans-serif;
    background: var(--bg-page);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.5;
    transition: background 0.25s ease, color 0.2s ease;
}

/* Header compacto — conteúdo na mesma barra de 64px */
.igo-plans-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--igo-blue);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.igo-header-tagline {
    display: none !important;
    flex: 1;
    min-width: 0;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    padding: 0 8px;
}

@media (min-width: 769px) {
    .igo-header-tagline {
        display: block !important;
    }
}

.igo-header-tagline strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.igo-header-tagline-detail {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.igo-header-tagline-detail em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.62);
}

.igo-header-tagline-checkout .igo-header-tagline-detail {
    font-size: 0.68rem;
}

.igo-app-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
}

.igo-app-brand .brand-badge {
    background: var(--igo-yellow);
    color: var(--igo-blue);
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 16px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.igo-app-brand .brand-name { font-weight: 900; }

.igo-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.igo-header-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    transition: background 0.2s;
}

.igo-header-link:hover { background: rgba(255, 255, 255, 0.12); }

.igo-admin-camera-offer-plans .igo-admin-camera-offer-select {
    font-size: 12px;
    font-weight: 600;
    max-width: 220px;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(15, 23, 42, 0.45);
    color: #fff;
    cursor: pointer;
}

.igo-theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    display: grid;
    place-items: center;
    transition: background 0.2s, transform 0.15s;
}

.igo-theme-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.igo-test-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--plan-orange), var(--plan-purple));
    color: #fff;
    padding: 3px 8px;
    border-radius: 999px;
    margin-left: 4px;
}

.igo-plans-main {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 20px) 16px 100px;
}

/* Container único por seção (Planos para Você / Empresas) */
.igo-plans-section-box {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 24px;
}

.igo-plans-section-box .igo-section-head {
    margin: 0 0 16px;
    padding: 0 0 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
}

.igo-hero {
    text-align: center;
    margin-bottom: 24px;
    padding: 28px 20px;
    border-radius: var(--radius);
    background: var(--hero-gradient);
    border: 1px solid var(--border-color);
}

.igo-hero-compact {
    padding: 16px 18px;
    margin-bottom: 20px;
}

.igo-hero-compact h1 {
    font-size: clamp(1.25rem, 4vw, 1.65rem);
    margin-bottom: 4px;
}

.igo-hero-compact p {
    margin-bottom: 10px;
    font-size: 0.88rem;
}

.igo-hero-compact .igo-social-proof {
    margin-bottom: 0;
    font-size: 0.75rem;
}

.igo-hero h1 {
    font-size: clamp(1.6rem, 5vw, 2.35rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.igo-hero p {
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 20px;
    font-size: 0.95rem;
}

.igo-social-proof {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.igo-social-proof strong { color: var(--text-primary); }

.igo-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text-primary);
}

.igo-section-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.igo-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.igo-section-head-text { flex: 1; min-width: 200px; }

.igo-biz-from {
    font-size: 0.88rem;
    margin-top: 8px;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.igo-biz-from strong {
    background: linear-gradient(90deg, var(--plan-orange), var(--plan-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Billing toggle */
.igo-billing-toggle {
    display: inline-flex;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 4px;
    box-shadow: var(--shadow);
}

.igo-billing-toggle button {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    transition: 0.2s;
}

.igo-billing-toggle button.active {
    background: linear-gradient(90deg, var(--plan-orange), var(--plan-purple));
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 107, 44, 0.3);
}

.igo-save-badge {
    display: inline-block;
    background: var(--plan-green);
    color: #052e16;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
    margin-left: 4px;
    vertical-align: middle;
}

/* Cards de plano */
.igo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.igo-plan-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
    color: #1a1a2e;
}

[data-theme="dark"] .igo-plan-card {
    background: #fff;
    color: #1a1a2e;
}

.igo-plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.igo-plan-card.featured {
    box-shadow: 0 16px 40px rgba(255, 107, 44, 0.22);
    z-index: 2;
}

.igo-plan-card.featured:hover {
    transform: translateY(-3px);
}

.igo-plan-head {
    background: linear-gradient(135deg, var(--plan-orange) 0%, var(--plan-orange-dark) 100%);
    color: #fff;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.igo-plan-card.featured .igo-plan-head {
    background: linear-gradient(135deg, var(--plan-orange) 0%, var(--plan-purple) 100%);
}

.igo-plan-badge {
    font-size: 0.62rem;
    background: rgba(0, 0, 0, 0.22);
    padding: 3px 8px;
    border-radius: 999px;
    margin-left: auto;
    white-space: nowrap;
}

.igo-plan-badge-gold {
    background: var(--igo-yellow);
    color: var(--igo-blue);
    font-weight: 800;
}

.igo-plan-body {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.igo-plan-price {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
    background: linear-gradient(90deg, var(--plan-orange), var(--plan-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.igo-plan-price--installments {
    background: none;
    -webkit-text-fill-color: unset;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.igo-plan-price-times {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--plan-purple);
    -webkit-text-fill-color: var(--plan-purple);
    line-height: 1;
}

.igo-plan-price-amount {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--plan-orange), var(--plan-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.igo-plan-pricing-block {
    min-height: 7.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 4px;
}

.igo-plan-pricing-filler {
    flex: 1 1 auto;
    min-height: 1.5rem;
}

.igo-plan-period {
    font-size: 0.85rem;
    color: var(--plan-purple);
    font-weight: 600;
    margin-bottom: 10px;
}

.igo-plan-period--spacer {
    visibility: hidden;
    color: transparent;
}

.igo-plan-off {
    font-size: 0.75rem;
    color: var(--plan-green);
    font-weight: 700;
    margin-bottom: 8px;
}

/* Mesmo cinza de “bloqueado” (.igo-plan-features-hint) */
.igo-plan-note-muted {
    font-size: 0.72rem;
    color: #9ca3af !important;
    font-weight: 600;
    margin-bottom: 8px;
}

.igo-plan-equiv {
    font-size: 0.82rem;
    color: #374151;
    font-weight: 700;
    margin-bottom: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 5px 10px;
    display: inline-block;
}

.igo-plan-features-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.igo-plan-features-legend {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.72rem;
    color: #6b7280;
    margin: 0 6px 12px;
    padding: 0 4px;
    font-weight: 600;
}

.igo-plan-features-hint {
    font-weight: 500;
    color: #9ca3af;
}

.igo-plan-features {
    list-style: none;
    font-size: 0.84rem;
    color: #4b5563;
    margin: 0;
    padding: 8px 6px;
    height: min(260px, 34vh);
    max-height: min(260px, 34vh);
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    scrollbar-width: thin;
    scrollbar-color: #9ca3af #f1f3f4;
}

/* Sem CTA: reserva a mesma altura do botão Assinar para alinhar a lista ao Plus. */
.igo-plan-card--no-cta .igo-plan-features-wrap {
    margin-bottom: 16px;
}
.igo-plan-card--no-cta .igo-plan-cta-slot {
    display: block;
    width: 100%;
    /* Mesma caixa do .igo-btn-cta (padding 14*2 + linha ~0.95rem ≈ 48–52px) */
    height: calc(28px + 0.95rem + 4px);
    margin-top: 0;
    visibility: hidden;
    pointer-events: none;
}
.igo-plan-card--no-cta .igo-plan-features {
    height: min(260px, 34vh);
    max-height: min(260px, 34vh);
}

.igo-plan-features::-webkit-scrollbar {
    width: 10px;
}

.igo-plan-features::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 0 10px 10px 0;
}

.igo-plan-features::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 8px;
    border: 2px solid #f1f3f4;
}

.igo-plan-feat {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    padding: 11px 18px;
    margin: 0 4px;
    border-bottom: 1px solid #eceff3;
    line-height: 1.5;
    border-radius: 4px;
}

.igo-plan-feat:last-child {
    border-bottom: none;
}

.igo-plan-feat-icon {
    font-size: 0.82rem;
    line-height: 1.5;
    flex-shrink: 0;
    margin-top: 1px;
}

.igo-plan-feat-text {
    display: block;
    padding-top: 0;
}

.igo-plan-feat--on .igo-plan-feat-icon {
    color: var(--plan-green);
    font-weight: 700;
}

.igo-plan-feat--off {
    opacity: 0.88;
}

.igo-plan-feat--off .igo-plan-feat-icon {
    color: #9ca3af;
    font-size: 0.76rem;
}

.igo-plan-feat--off .igo-plan-feat-text {
    color: #9ca3af;
}

.igo-plan-feat--emphasize {
    background: rgba(26, 115, 232, 0.16);
    border-radius: 8px;
}
.igo-plan-feat--emphasize .igo-plan-feat-text {
    font-weight: 800;
}
[data-theme="dark"] .igo-plan-feat--emphasize {
    background: rgba(124, 156, 255, 0.22);
}

.igo-plan-feat--off-first {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

.igo-plan-feat-soon {
    font-size: 0.7rem;
    color: #b45309;
    font-weight: 600;
}

/* legado — lista simples sem ícones (checkout etc.) */
.igo-plan-features--plain li {
    padding: 4px 0;
    padding-left: 1.2em;
    position: relative;
}

.igo-plan-features--plain li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--plan-green);
    font-weight: 700;
}

.igo-plan-features li {
    padding: 0;
}

.igo-plan-features li::before {
    content: none;
}

.igo-btn-cta {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    transition: 0.2s;
}

.igo-btn-primary {
    background: linear-gradient(90deg, var(--plan-orange), var(--plan-purple));
    color: #fff;
    box-shadow: 0 6px 18px rgba(255, 107, 44, 0.35);
}

.igo-btn-primary:hover { filter: brightness(1.07); transform: scale(1.02); }

.igo-btn-outline {
    background: transparent;
    border: 2px solid var(--igo-blue);
    color: var(--igo-blue);
}

.igo-btn-outline:hover { background: rgba(0, 53, 128, 0.06); }

.igo-plan-price-dash {
    color: var(--plan-orange);
    -webkit-text-fill-color: var(--plan-orange);
    font-size: 2.4rem;
    letter-spacing: 0.02em;
}

/* Link comparar recursos — texto, não botão de assinar */
.igo-compare-link {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 4px 0;
    border: none;
    background: none;
    box-shadow: none;
    color: #1a73e8;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

[data-theme="dark"] .igo-compare-link {
    color: #8ab4f8;
    background: none;
    box-shadow: none;
}

.igo-compare-link:hover {
    filter: none;
    transform: none;
    box-shadow: none;
    color: #174ea6;
}

[data-theme="dark"] .igo-compare-link:hover {
    color: #c2d7fc;
}

.igo-tier-select {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    padding: 0 2px;
}

.igo-tier-select button {
    border: 1px solid var(--border-color);
    background: var(--bg-page);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.2s;
}

.igo-tier-select button.active {
    border-color: var(--plan-orange);
    background: rgba(255, 107, 44, 0.12);
    color: var(--text-primary);
}

.igo-per-employee {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Sticky — Seu plano */
.igo-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--igo-blue);
    border-top: 3px solid var(--plan-orange);
    padding: 12px 16px;
    display: none;
    gap: 12px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.igo-sticky-cta.show { display: flex; }
.igo-sticky-cta--current-only .igo-btn-cta { display: none; }

.igo-sticky-cta .sticky-plan-info {
    flex: 1;
    max-width: 420px;
    color: #fff;
}

.igo-sticky-cta .sticky-plan-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
    font-weight: 600;
}

.igo-sticky-cta .sticky-plan-name {
    font-size: 0.95rem;
    font-weight: 800;
}

.igo-sticky-cta .sticky-plan-name .highlight {
    background: linear-gradient(90deg, var(--igo-yellow), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.igo-sticky-cta .igo-btn-cta {
    max-width: 220px;
    flex-shrink: 0;
}

/* Modal */
.igo-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow-y: auto;
}

.igo-modal-backdrop.open { display: flex; }

.igo-modal {
    background: #ffffff;
    border-radius: 16px;
    width: min(100%, 980px);
    max-height: calc(100vh - 24px);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    color: #1a1a2e;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .igo-modal {
    background: #ffffff;
    color: #1a1a2e;
}

.igo-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px 16px 0 0;
}

.igo-modal-head h2 { font-size: 1.1rem; color: #111827; }

.igo-modal-close {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #374151;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

.igo-modal-body {
    padding: 12px 16px 16px;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

.igo-compare-hint {
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 10px;
    text-align: center;
}

.igo-compare-scroll {
    overflow: auto;
    max-height: calc(100vh - 140px);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
}

.igo-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    min-width: 720px;
    background: #fff;
}

.igo-compare-table th,
.igo-compare-table td {
    padding: 10px 10px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    background: #fff;
}

.igo-compare-table thead th {
    font-size: 0.72rem;
    font-weight: 700;
    color: #111827;
    background: #f9fafb;
    position: sticky;
    top: 0;
    z-index: 3;
    box-shadow: 0 1px 0 #e5e7eb;
}

.igo-compare-table th:first-child,
.igo-compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    position: sticky;
    left: 0;
    background: #f9fafb;
    z-index: 2;
    min-width: 160px;
    color: #111827;
}

.igo-compare-table tbody td:first-child {
    background: #fff;
    z-index: 1;
}

.igo-compare-table thead th:first-child {
    z-index: 4;
}

.igo-compare-table .col-featured {
    background: #fff7ed !important;
    font-weight: 700;
    color: #9a3412;
}

.igo-compare-table thead .col-featured {
    background: #ffedd5 !important;
}

.igo-compare-table .col-biz-featured {
    background: #eff6ff !important;
    font-weight: 700;
    color: #1e40af;
}

.igo-compare-table thead .col-biz-featured {
    background: #dbeafe !important;
}

.igo-compare-table thead .igo-compare-prices-row th {
    font-weight: 500;
    font-size: 0.68rem;
    padding: 4px 8px 10px;
    line-height: 1.35;
    top: 34px;
    box-shadow: 0 1px 0 #e5e7eb;
}

.igo-compare-table thead .igo-compare-prices-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #6b7280;
}

.igo-compare-price-from {
    font-weight: 600;
    font-size: 0.58rem;
    color: #6b7280;
    text-transform: lowercase;
}

.igo-compare-price-month {
    font-weight: 500;
    font-size: 0.64rem;
    color: #9ca3af;
    margin-bottom: 4px;
}

.igo-compare-price-annual-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.igo-compare-price-annual {
    font-weight: 800;
    font-size: 0.78rem;
    color: #111827;
    line-height: 1.2;
}

.igo-compare-price-off {
    display: inline-block;
    font-weight: 700;
    font-size: 0.62rem;
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #15803d);
    padding: 2px 7px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.igo-compare-table .col-featured .igo-compare-price-annual {
    color: #9a3412;
}

.igo-compare-table .col-featured .igo-compare-price-off {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.igo-compare-table .col-biz-featured .igo-compare-price-annual {
    color: #1e40af;
}

.igo-compare-table .col-biz-featured .igo-compare-price-off {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.igo-yes { color: var(--plan-green); }
.igo-no { color: #ef4444; }

.igo-toast {
    position: fixed;
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-panel);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    z-index: 300;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    border: 1px solid var(--plan-orange);
    box-shadow: var(--shadow);
}

.igo-toast.show { opacity: 1; }

/* Login */
.igo-login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-page);
}

.igo-login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 24px) 20px 40px;
}

.igo-login-card {
    width: 100%;
    max-width: 400px;
    background: var(--bg-panel);
    color: var(--text-primary);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.igo-login-card h1 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    font-weight: 800;
}

.igo-login-card .subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.igo-login-card label {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.igo-login-card input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: inherit;
    background: var(--bg-page);
    color: var(--text-primary);
}

.igo-login-card input:focus {
    outline: 2px solid var(--igo-blue);
    outline-offset: 1px;
}

.igo-login-links {
    margin-top: 20px;
    font-size: 0.85rem;
    text-align: center;
}

.igo-login-links a {
    color: var(--igo-blue);
    font-weight: 600;
}

[data-theme="dark"] .igo-login-links a { color: #7c9cff; }

.igo-login-master {
    display: block;
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    text-decoration: none;
}

/* ——— Checkout ——— */
.igo-checkout-body .igo-plans-main,
.igo-checkout-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 20px) 16px 48px;
}

.igo-checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.igo-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.igo-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bg-page);
    border: 2px solid var(--border-color);
    font-size: 0.75rem;
}

.igo-step.active { color: var(--igo-blue); }
.igo-step.active span {
    background: var(--igo-blue);
    border-color: var(--igo-blue);
    color: #fff;
}

.igo-step.done span {
    background: var(--plan-green);
    border-color: var(--plan-green);
    color: #fff;
}

.igo-step-line {
    width: 40px;
    height: 2px;
    background: var(--border-color);
    margin: 0 6px;
}

.igo-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

.igo-checkout-panel {
    display: none;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.igo-checkout-panel.active { display: block; }

.igo-checkout-panel h2 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.igo-checkout-lead {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.igo-checkout-current-plan {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.1);
    font-size: 0.9rem;
    line-height: 1.45;
}
.igo-checkout-current-plan.hidden { display: none !important; }

.igo-checkout-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.igo-checkout-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: inherit;
    background: var(--bg-page);
    color: var(--text-primary);
}

.igo-checkout-input:focus {
    outline: 2px solid var(--igo-blue);
    outline-offset: 1px;
}

.igo-checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.igo-checkout-plan-review {
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.igo-review-name { font-weight: 800; font-size: 1.1rem; margin-bottom: 4px; }
.igo-review-price { font-size: 1.35rem; font-weight: 800; color: var(--plan-orange); margin-bottom: 12px; }
.igo-review-price span { font-size: 0.85rem; color: var(--plan-purple); font-weight: 600; }
.igo-review-features { list-style: none; font-size: 0.85rem; color: var(--text-secondary); }
.igo-review-features li { padding: 3px 0; padding-left: 1.1em; position: relative; }
.igo-review-features li::before { content: '✓'; position: absolute; left: 0; color: var(--plan-green); }

.igo-pay-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.igo-pay-method {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 12px;
    background: var(--bg-page);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.igo-pay-method.active {
    border-color: var(--plan-orange);
    background: rgba(255, 107, 44, 0.08);
}

.igo-pay-icon { font-size: 1.3rem; display: block; margin-bottom: 4px; }
.igo-pay-title { display: block; font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.igo-pay-sub { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

.igo-pay-details {
    background: var(--bg-page);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.igo-pay-details.hidden { display: none; }

.igo-checkout-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.igo-checkout-actions .igo-btn-cta { flex: 1; min-width: 140px; }

.igo-btn-ghost {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.igo-btn-ghost:hover { background: var(--bg-page); }

.igo-btn-link {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    margin-top: 8px;
}

.igo-checkout-summary {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: calc(var(--header-height) + 16px);
}

.igo-checkout-summary h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.igo-summary-plan { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.igo-summary-cycle { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; }
.igo-summary-features { list-style: none; font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 16px; }
.igo-summary-features li { padding: 3px 0; }
.igo-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.igo-summary-total > span {
    flex: 0 0 auto;
    margin-right: 8px;
}
.igo-summary-total strong {
    flex: 1 1 auto;
    text-align: right;
    font-size: 1.25rem;
    color: var(--plan-orange);
    white-space: nowrap;
}
.igo-summary-total-hint {
    margin: 6px 0 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
    line-height: 1.3;
}
.igo-summary-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 12px; line-height: 1.4; }

.igo-checkout-success { text-align: center; padding: 12px 0; }

.igo-payment-receipt {
    text-align: left;
    margin: 16px auto;
    max-width: 420px;
    padding: 14px 16px;
    border: 1px solid var(--border-color, #d0d7de);
    border-radius: 12px;
    background: var(--bg-panel, rgba(0, 0, 0, 0.04));
    font-size: 0.9rem;
    line-height: 1.45;
}

.igo-payment-receipt p { margin: 6px 0; }

.igo-payment-receipt-status { font-size: 1rem; }

.igo-payment-receipt code {
    font-size: 0.78rem;
    word-break: break-all;
}

.igo-payment-receipt-hint {
    margin-top: 10px !important;
    color: var(--text-muted, #6b7280);
    font-size: 0.8rem;
}
.igo-success-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--plan-green); color: #fff;
    font-size: 1.6rem; font-weight: 800;
    display: grid; place-items: center;
    margin: 0 auto 16px;
}
.igo-success-features {
    list-style: none;
    text-align: left;
    max-width: 360px;
    margin: 16px auto;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.igo-success-features li { padding: 4px 0; }
.igo-checkout-secondary-link {
    display: block;
    margin-top: 12px;
    color: var(--igo-blue);
    font-size: 0.88rem;
    font-weight: 600;
}

.igo-config-banner {
    max-width: 960px;
    margin: 12px auto 0;
    padding: 10px 16px;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
    border-radius: 10px;
    font-size: 0.85rem;
}

.igo-production-hint {
    background: #e8f4fd;
    color: #0c4a6e;
    border-color: #7dd3fc;
}

.igo-checkout-error {
    max-width: 960px;
    margin: 12px auto 0;
    padding: 10px 16px;
    background: #fde8e8;
    color: #b91c1c;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    font-size: 0.85rem;
}

.igo-config-banner.hidden,
.hidden,
.igo-checkout-error.hidden,
.igo-checkout-loading.hidden,
#payment-result.hidden {
    display: none;
}

.igo-checkout-loading {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: grid;
    place-items: center;
    z-index: 9999;
}

.igo-checkout-loading-inner {
    background: var(--bg-panel);
    color: var(--text-primary);
    padding: 20px 28px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.igo-camera-delivery-box {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid var(--border-soft, #dbeafe);
    border-radius: 12px;
    background: var(--bg-soft, #f8fafc);
}

.igo-camera-delivery-title {
    margin: 0 0 8px;
    font-size: 1rem;
}

.igo-camera-delivery-notice {
    margin: 0 0 12px;
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
    line-height: 1.45;
}

.igo-camera-delivery-units {
    margin: 0 0 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.igo-delivery-cep-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
}

.igo-delivery-cep-block .igo-checkout-input--cep {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    min-height: 48px;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.igo-delivery-cep-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.igo-delivery-cep-actions .igo-btn-cta {
    flex: 1 1 140px;
    min-height: 42px;
    margin: 0;
    white-space: nowrap;
}

.igo-delivery-cep-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 16px;
}

.igo-delivery-cep-row .igo-checkout-input {
    flex: none;
    width: 100%;
    margin-bottom: 0;
    min-height: 48px;
    box-sizing: border-box;
}

.igo-frete-result {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #ecfdf5;
    color: #065f46;
    font-size: 0.85rem;
    line-height: 1.5;
}

.igo-frete-aviso,
.igo-frete-note {
    font-size: 0.8rem;
    opacity: 0.9;
}

.igo-summary-lines {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed var(--border-color, rgba(255,255,255,0.2));
}

.igo-summary-line,
.igo-summary-frete {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 0.92rem;
}

.igo-summary-line strong,
.igo-summary-frete strong {
    font-weight: 700;
}

.igo-summary-frete.hidden {
    display: none;
}

.igo-camera-confirm-box {
    margin: 20px 0;
    padding: 16px;
    text-align: left;
    border: 1px solid var(--border-soft, #fcd34d);
    border-radius: 12px;
    background: var(--bg-soft, #fffbeb);
}

.igo-camera-confirm-box h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.igo-camera-confirm-summary {
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.igo-camera-confirm-status {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #065f46;
    font-weight: 600;
}

[data-theme="dark"] .igo-frete-result {
    background: #064e3b;
    color: #a7f3d0;
}

[data-theme="dark"] .igo-camera-delivery-box,
[data-theme="dark"] .igo-camera-confirm-box {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.igo-card-brick {
    min-height: 280px;
    margin-top: 8px;
}

.igo-card-lead {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.igo-pix-box,
.igo-boleto-box {
    text-align: center;
    margin: 16px 0;
    padding: 16px;
    background: var(--bg-page);
    border-radius: 12px;
}

.igo-pix-qr {
    max-width: 220px;
    width: 100%;
    margin: 12px auto;
    display: block;
    border-radius: 8px;
}

.igo-pix-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
}

.igo-pix-copy code {
    font-size: 0.72rem;
    word-break: break-all;
    padding: 8px;
    background: var(--bg-panel);
    border-radius: 8px;
    max-width: 100%;
}

.igo-pix-wait {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.igo-sandbox-notice {
    background: #fff8e6;
    border: 1px solid #f59e0b;
    color: #92400e;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: left;
}

[data-theme="dark"] .igo-sandbox-notice {
    background: #3d2e0a;
    border-color: #b45309;
    color: #fde68a;
}

.igo-btn-small {
    padding: 8px 14px !important;
    font-size: 0.8rem !important;
}

#btn-step-2.hidden {
    display: none;
}

.igo-sandbox-card-hint code {
    font-size: 0.78rem;
    background: var(--bg-panel);
    padding: 2px 6px;
    border-radius: 4px;
}

.igo-sandbox-card-list {
    margin: 8px 0 0;
    padding-left: 1.2rem;
    font-size: 0.88rem;
    line-height: 1.5;
}

.igo-sandbox-card-list li { margin: 2px 0; }

.igo-card-sandbox-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

/* display:flex acima sobrescrevia .hidden e deixava o form de teste visível em produção */
#card-sandbox-form.hidden,
.igo-card-sandbox-form.hidden,
#sandbox-card-hint.hidden,
body[data-mp-production="1"] #card-sandbox-form,
body[data-mp-production="1"] #sandbox-card-hint,
body[data-mp-sandbox="0"] #card-sandbox-form {
    display: none !important;
}

.igo-sandbox-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.igo-installments-select {
    min-height: 42px;
}

.igo-installments-summary {
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #eef6ff;
    border: 1px solid #c5ddf7;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #1a365d;
}

.igo-installments-summary strong {
    font-weight: 700;
}

[data-theme="dark"] .igo-installments-summary {
    background: rgba(26, 115, 232, 0.16);
    border-color: rgba(125, 180, 255, 0.35);
    color: #dbeafe;
}

.igo-sandbox-card-list-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

#card-brick-container.igo-card-brick-hidden,
body[data-mp-sandbox="1"] #card-brick-container {
    display: none !important;
}

body[data-mp-sandbox="1"] #card-sandbox-form:not(.hidden) {
    display: flex !important;
}

.igo-annual-terms-box {
    margin: 16px 0;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-page);
}

.igo-annual-terms-box.hidden { display: none; }

.igo-annual-terms-title { font-size: 0.92rem; margin-bottom: 8px; }

.igo-annual-terms-list {
    margin: 0 0 12px 1.1em;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.igo-annual-terms-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.82rem;
    cursor: pointer;
}

.igo-annual-terms-check input { margin-top: 3px; flex-shrink: 0; }

.igo-checkout-upsell {
    margin: 16px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.igo-checkout-upsell.hidden { display: none !important; }
.igo-checkout-upsell-card {
    padding: 16px 18px 18px;
    border-radius: 16px;
    border: 1px solid rgba(26, 115, 232, 0.35);
    background: linear-gradient(160deg, rgba(26, 115, 232, 0.16), rgba(107, 45, 158, 0.08));
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.12);
}
.igo-checkout-upsell-card--hot {
    border: 2px solid #ffb700;
    background: linear-gradient(135deg, rgba(255, 107, 44, 0.22), rgba(107, 45, 158, 0.28) 48%, rgba(26, 115, 232, 0.18));
    box-shadow: 0 0 0 1px rgba(255, 183, 0, 0.35), 0 14px 36px rgba(255, 107, 44, 0.22);
}
.igo-upsell-kicker {
    margin: 0 0 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a73e8;
}
.igo-checkout-upsell-card--hot .igo-upsell-kicker {
    color: #e85a1a;
}
.igo-upsell-title {
    margin: 0 0 8px;
    font-size: 1.12rem;
    line-height: 1.35;
    font-weight: 800;
    color: var(--text-primary);
}
.igo-upsell-delta {
    display: inline-block;
    margin: 0 2px;
    padding: 2px 9px;
    border-radius: 999px;
    font-weight: 900;
    color: #1a1208;
    background: linear-gradient(90deg, #ffb700, #ff6b2c);
    box-shadow: 0 2px 8px rgba(255, 107, 44, 0.35);
    white-space: nowrap;
}
.igo-upsell-text {
    margin: 0 0 14px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}
.igo-upsell-cta {
    display: inline-flex;
    min-height: 44px;
    font-weight: 800;
}
.igo-checkout-upsell-card--hot .igo-upsell-cta {
    background: linear-gradient(90deg, #ff6b2c, #6b2d9e);
    border: none;
    color: #fff;
}
[data-theme="dark"] .igo-checkout-upsell-card {
    background: linear-gradient(160deg, rgba(56, 139, 255, 0.18), rgba(139, 92, 246, 0.12));
}
[data-theme="dark"] .igo-checkout-upsell-card--hot {
    background: linear-gradient(135deg, rgba(255, 107, 44, 0.28), rgba(139, 92, 246, 0.32) 50%, rgba(26, 115, 232, 0.2));
    border-color: #ffb700;
}
[data-theme="dark"] .igo-checkout-upsell-card--hot .igo-upsell-kicker {
    color: #ffb700;
}
[data-theme="dark"] .igo-upsell-title {
    color: #f8fafc;
}

.igo-service-terms {
    margin: 14px 0 8px;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-page);
}
.igo-service-terms-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px 12px;
}
.igo-service-terms-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.4;
    cursor: pointer;
    flex: 1 1 220px;
}
.igo-service-terms-check input { margin-top: 3px; flex-shrink: 0; }
.igo-service-terms-more {
    display: inline;
    margin-left: 6px;
    padding: 0;
    border: 0;
    background: none;
    color: #1a73e8;
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}
.igo-service-terms-body {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-secondary);
    max-height: 280px;
    overflow-y: auto;
}
.igo-service-terms-body h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
}
.igo-service-terms-body h4 {
    margin: 12px 0 4px;
    font-size: 0.82rem;
    color: var(--text-primary);
}
.igo-service-terms-body p { margin: 0 0 8px; }
.igo-service-terms-note { font-style: italic; }

.igo-annual-installment-hint.hidden { display: none; }

@media (max-width: 800px) {
    .igo-checkout-layout { grid-template-columns: 1fr; }
    .igo-checkout-summary { position: static; order: -1; }
}

@media (max-width: 768px) {
    .igo-header-link { padding: 8px 10px; font-size: 0.75rem; }
    .igo-plans-header .igo-app-brand { flex-shrink: 0; }
    .igo-plans-header .igo-header-actions { margin-left: auto; flex-shrink: 0; }
}

@media (max-width: 600px) {
    .igo-plan-card.featured { transform: none; }
    .igo-sticky-cta.show { flex-direction: column; text-align: center; }
    .igo-sticky-cta .igo-btn-cta { max-width: 100%; width: 100%; }
    .igo-section-head { flex-direction: column; align-items: stretch; }
    .igo-billing-toggle { width: 100%; justify-content: center; }
}
