/* =========
   WIZARD – HUVUDSTRUKTUR
   ========= */

/* ==== OVERRIDE: gör wizard-rutan centrerad och minst 1500px bred ==== */

/* Se till att själva wizard-containern centreras */
.wizard {
    width: 100%;
}

/* Själva kortet på översiktssidan */
.wizard-card.mail-card.email-preview-card {
    width: 100%;
    /* fyll upp om viewporten är smalare */
}


.wizard-card.client-start-overview-card {
    background:
        radial-gradient(circle at top right, rgba(203, 165, 137, 0.18), transparent 34%),
        linear-gradient(145deg, #0f3522 0%, #16462A 54%, #0b2819 100%);
    border-color: rgba(236, 253, 245, 0.18);
    box-shadow: 0 18px 42px rgba(3, 26, 12, 0.22);
}

.wizard-card.client-start-overview-card::before {
    background: linear-gradient(90deg, #d8f3dc, #CBA589);
}

.client-start-overview-card .dashboard-overview__topbar {
    justify-content: flex-end;
}

.client-start-overview-card .btn-secondary {
    background: #f8fbf8;
    border-color: rgba(216, 243, 220, 0.72);
    color: #16462A;
}

.client-start-overview-card .dashboard-overview__focus-card {
    box-shadow: 0 18px 34px rgba(3, 26, 12, 0.22);
}

.wizard-header {
    margin-bottom: 20px;
    padding-inline: 4px;
}

.wizard-step-indicator {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-soft);
    font-weight: 600;
    margin-bottom: 6px;
}

.wizard-title {
    font-size: 28px;
    margin: 0 0 6px;
    letter-spacing: -0.03em;
}

.wizard-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* =========
   WIZARD CARD
   ========= */
.wizard-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    padding: 40px 22px 22px;
    box-shadow: var(--wizard-shadow);
}

.wizard-card.white {
    background: none;
    border: none;
    box-shadow: none;
}

/* Övre färglist */
.wizard-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 4px;
    background: linear-gradient(90deg, #0b6bdc, #22c55e);
    border-radius: 10px 10px 0 0;
}

/* Wizard-innehåll */
.wizard-content {
    position: relative;
    min-height: 260px;
}

/* =========
   STEG / ANIMATIONER
   ========= */
.wizard-step {
    display: none;
}

.wizard-step-active {
    display: block;
}

/* =========
   FORMULÄR
   ========= */
.form-grid {
    display: grid;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field label {
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0 5px 5px;
}

.form-field input[type="text"],
.form-field input[type="number"],
.form-field input[type="time"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 11px;
    border-radius: var(--radius-field);
    border: 1px solid var(--border-strong);
    background: white;
    font-size: 14px;
    color: var(--text-main);
    transition: 0.16s border-color, 0.16s background, 0.16s box-shadow;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(11, 107, 220, 0.24);
}



.field-error {
    font-size: 12px;
    max-height: 18px;
    color: var(--danger);
    margin-top: 2px;
}

.input-error {
    border-color: #f97373 !important;
    background-color: #fef2f2 !important;
}

/* =========
   CHIP-KNAPPAR
   ========= */
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    gap: 6px;
    border-radius: var(--radius-field);
    border: 1px solid var(--border-subtle);
    background: #f3f4f6;
    font-size: 13px;
    cursor: pointer;
    transition: .16s background, .16s border-color;
}

.chip input {
    display: none;
}

.chip:hover {
    background: #e5e7eb;
    border-color: var(--border-strong);
}

.chip:has(input:checked) {
    background: #e5e7eb;
    border-color: var(--border-strong);
}

.chip.is-selected {
    background: #e5e7eb;
    border-color: var(--border-strong);
}

.chip input:checked+span {
    color: var(--accent);
    font-weight: 600;
}

/* =========
   COMPANY CARDS (wizard steg 1)
   ========= */
.company-results-title {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 600;
}

.company-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.company-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.company-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: #f9fafb;
    transition: .16s border-color, .16s background, .16s box-shadow;
}

.company-card:hover {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.company-card--locked {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.company-card--locked:hover {
    border-color: #d1d5db;
    background: #f3f4f6;
    box-shadow: none;
}

.company-card input[type=checkbox] {
    width: 18px;
    height: 18px;
}

.company-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.company-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-name {
    font-size: 14px;
    font-weight: 600;
}

.company-type-inline {
    font-weight: 500;
    color: #4b5563;
}

.company-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.company-tag {
    font-size: 11px;
    padding: 3px 8px;
    background: var(--accent-soft);
    color: #1d4ed8;
    border-radius: 12px;
}

.company-meta-contacts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.company-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--text-main);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.company-badge--locked {
    background: #e5e7eb;
    color: #374151;
}

.company-contact-line {
    font-size: 12px;
    color: var(--text-muted);
}

/* =========
   WIZARD ACTIONS
   ========= */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.wizard-actions--search-actions {
    justify-content: flex-start;
}

.wizard-actions--search-actions .btn-secondary {
    order: 1;
}

.wizard-actions--search-actions .btn-primary {
    order: 2;
}

.js-length-custom{
    margin-top: 6px;;
}

.wizard-actions-bottom {
    justify-content: flex-end;
    margin-top: 16px;
}

/* =========
   KNAPPAR
   ========= */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
    padding: 9px 18px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .18s ease;
}

.btn-primary {
    background: #111827;
    color: white;
}

.btn-primary:hover {
    background: #020617;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f3f4f6;
    border-color: var(--border-subtle);
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn.ghost {
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    padding: 4px 10px;
    font-size: 12px;
}

.btn.ghost:hover {
    background: #e5e7eb;
}

/* =========
   MAIL-KORT (wizard steg 2)
   ========= */
.mail-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mail-card {
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15 23 42 / 0.12);
    overflow: hidden;
}

.mail-card-header {
    padding: 14px 18px;
    background: #f9fafb;
    border-bottom: 1px solid var(--border-subtle);
}

.mail-card-header h2 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
}

.mail-card-header p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* Email “to / subject” area */
.email-preview-header {
    padding: 10px 12px;
    border-radius: 10px;
    background: #f3f4f6;
    margin-top: 8px;
}

.email-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.email-meta-label {
    width: 70px;
    font-size: 12px;
    color: var(--text-muted);
}

.email-meta-value {
    font-size: 13px;
}

.email-meta-value-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.email-subject-input {
    flex: 1;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    padding: 6px 8px;
    font-size: 14px;
}

.email-subject-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(11 107 220 / .22);
}

/* Toolbar w/ copy buttons */
.email-toolbar {
    padding: 10px 18px;
    background: #f3f4f6;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

.email-category-pill {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--accent-pill-bg);
    color: var(--accent-pill-text);
}

/* Body textarea */
.email-body-wrapper {
    margin-top: 8px;
    padding: 0 18px 14px;
}

.email-body-textarea {
    width: 100%;
    min-height: 200px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    padding: 8px 10px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 13px;
    line-height: 1.45;
    resize: vertical;
}

.email-body-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(11, 107, 220, 0.24);
}

/* Footer */
.mail-footer {
    padding: 12px 18px;
    background: #f9fafb;
    border-top: 1px solid var(--border-subtle);
    font-size: 12px;
    color: var(--text-muted);
}

/* Klickbar mejladress */
.email-address-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: var(--text-link);
    cursor: pointer;
}

.email-address-btn:hover {
    text-decoration: underline;
}

/* =========
   LOADING OVERLAY
   ========= */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.35);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease-out;
    z-index: 999;
}

.loading-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.loading-card {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0 0 0 / .25);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
}

.spinner {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 3px solid rgba(0 0 0 / .1);
    border-top-color: #2563eb;
    animation: spin .9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========
   OVERSIKT (index.php) – FÖRETAGSKORT
   ========= */
.overview-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    font-size: 13px;
}

.overview-table th,
.overview-table td {
    padding: 20px 10px;
    border-bottom: 1px solid #e5e7eb;
}

.overview-table th {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 12px;
}

.overview-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Lista med företag */
.planned-company-list {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.planned-company-board {
    display: block;
    margin-top: 18px;
}

.company-view--board .planned-company-board {
    display: block;
}

.company-view--board .planned-company-list {
    display: none;
}

.planned-company-board__toggle {
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.planned-company-board__toggle svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.8;
}

.planned-company-board__header {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.planned-company-board__header > div {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.12);
    border-right: 1px solid rgba(148, 163, 184, 0.3);
    width: 100%;
}

.planned-company-board__header svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.8;
}

.planned-company-board__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.planned-company-board__column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 6px;
    border-radius: 12px;
    background: #f9f9f9;
    border: 1px solid #f1f1f1;
    min-height: 56px;
}

.planned-company-board__column.is-drag-over {
    background: rgba(59, 130, 246, 0.22);
    border-color: rgba(37, 99, 235, 0.9);
    box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.28);
}

.planned-company-board__header > div:last-child,
.planned-company-board__column:last-child {
    border-right: none;
}

.planned-company-board__header-archived,
.planned-company-board__column--archived {
    display: none;
}

.planned-company-board__header-archived[hidden],
.planned-company-board__column--archived[hidden] {
    display: none !important;
}

.planned-company-board.is-archived-visible .planned-company-board__header {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.planned-company-board.is-archived-visible .planned-company-board__columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.planned-company-board.is-archived-visible .planned-company-board__header-archived,
.planned-company-board.is-archived-visible .planned-company-board__column--archived {
    display: flex;
}

.company-view--hide-archived .planned-company-card[data-status="4"] {
    display: none;
}

.company-view--board .planned-company-card {
    border-radius: 12px;
    padding: 12px;
    min-height: 0;
    aspect-ratio: auto;
}

.company-view--board .planned-company-main {
    padding: 0;
    gap: 8px;
}

.company-view--board .planned-company-meta,
.company-view--board .planned-company-contact-chips,
.company-view--board .planned-company-name-category,
.company-view--board .planned-company-name-new {
    display: block;
}

.company-view--board .planned-company-contact-chips {
    display: flex;
}

.company-view--board .planned-company-name-category {
    display: inline-flex;
}

.company-view--board .planned-company-status-column {
    align-items: flex-start;
}

.company-view--board .status-toggle-btn {
    font-size: 0;
    padding: 6px;
    min-width: 0;
}

/* Själva kortet */
.planned-company-card {
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    min-height: 150px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(148, 163, 184, 0.8);
    transition: box-shadow 0.2s ease, transform 0.15s ease, background-color 0.3s ease;
    margin-bottom: 10px;
}

/* Status-baserad bakgrund */
.planned-company-card.status-1 {
    background: #ffffff;
}

.planned-company-card.status-2 {
    background: #fef9c3;
}

.planned-company-card.status-3 {
    background: #dcfce7;
}

.planned-company-card.status-4 {
    background: #fee2e2;
}

/* Nya bolag: vit bakgrund utan särskild kant */
.planned-company-card-new {
    background: #ffffff;
}

.planned-company-card:hover {
    background-image: linear-gradient(rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.03));
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
}

.planned-company-card.is-dragging {
    opacity: 0.6;
}

.planned-company-card.is-removing {
    opacity: 0;
    transform: translateY(-3px);
}

/* Inre layout */
.planned-company-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    width: 100%;
    padding: 0 10px;
    flex: 1;
}

.company-view--board .planned-company-main {
    cursor: grab;
}

.company-view--board .planned-company-main:active {
    cursor: grabbing;
}

.company-view--board .planned-company-main a,
.company-view--board .planned-company-main button {
    cursor: pointer;
}

.planned-company-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.planned-company-info {
    flex: 1 1 auto;
    min-width: 0;
}

/* Namn + NY-label i samma rad */
.planned-company-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 2px;
    width: 100%;
}

.planned-company-name {
    font-weight: 600;
    font-size: 1rem;
    color: #15803d;
    letter-spacing: 0.01em;
    display: inline-block;
    width: 100%;
}

/* NY-label */
.planned-company-new-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 12px;
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
    white-space: nowrap;
}

/* Kategori som underrubrik */
.planned-company-category-subtitle {
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
    margin-bottom: 2px;
    font-size: 0.8rem;
    color: #1e3a8a;
    background: #dbeafe;
    border-radius: 12px;
    padding: 2px 10px;
    border: 1px solid #bfdbfe;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.planned-company-meta {
    font-size: 0.85rem;
    color: #6b7280;
}

.planned-company-meta.small {
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Kontaktchips (hemsida / telefon) */
.planned-company-contact-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #0f172a;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    transition: color 0.15s ease;
}

.contact-link svg {
    width: 13px;
    height: 13px;
    stroke-width: 1.7;
}

.contact-link:hover {
    color: #1d4ed8;
}

.contact-link-phone {
    color: #047857;
}

.contact-link-phone:hover {
    color: #0f766e;
}

.contact-link-followup {
    display: none;
    color: #111827;
    font-weight: 600;
}

.contact-link-followup:hover {
    color: #111827;
    opacity: 0.78;
}

.planned-company-card.status-2 .contact-link-followup {
    display: inline-flex;
}

.planned-company-card:not(.status-2) .planned-company-contact-chips--followup-only {
    display: none;
}

/* Statusknappar till höger */
.planned-company-status-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    flex-shrink: 0;
}

.status-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 0.78rem;
    background: #f9fafb;
    color: #374151;
    cursor: pointer;
    min-width: 0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: background-color 0.15s ease, border-color 0.15s ease,
        transform 0.05s ease, box-shadow 0.15s ease;
}

.status-toggle-btn svg {
    width: 13px;
    height: 13px;
    stroke-width: 1.8;
}

.status-toggle-btn:hover {
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.16);
    transform: translateY(-0.5px);
    background: #eef2ff;
    border-color: #c7d2fe;
}

/* Aktiva status-knappar */
.status-toggle-btn.is-active.status-contacted {
    background: #eab308;
    border-color: #ca8a04;
    color: #fefce8;
    box-shadow: 0 4px 12px rgba(202, 138, 4, 0.35);
}

.status-toggle-btn.is-active.status-sponsored {
    background: #22c55e;
    border-color: #16a34a;
    color: #f0fdf4;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}

.status-toggle-btn.is-active.status-notinterested {
    background: #ef4444;
    border-color: #b91c1c;
    color: #fef2f2;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.4);
}

.status-toggle-btn.is-active svg {
    stroke: currentColor;
}

/* Footer i företagskortet: säljhjälp / mail */
.planned-company-footer {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px dashed rgba(148, 163, 184, 0.4);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.planned-company-footer-left {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 0.8rem;
}

.planned-company-footer-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
}

.planned-company-card.status-3 .planned-company-footer-actions {
    display: none;
}

.planned-company-footer-label {
    margin-top: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0f172a;
}

.planned-company-card.status-2 .planned-company-footer {
    display: none;
}

.planned-company-action-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.planned-company-action-btn {
    width: 50px;
    height: 25px;
    border-radius: 999px;
    padding: 0;
}

.planned-company-action-btn svg {
    width: 16px;
    height: 16px;
}

.company-view--archived-visible .planned-company-footer-actions {
    display: none;
}

/* Mjuka knappar för säljhjälp / mail */
.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
    transition: background-color 0.15s ease, box-shadow 0.15s ease,
        transform 0.05s ease, border-color 0.15s ease;
}

.btn-soft svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.btn-soft-mail,
.btn-soft-phone,
.btn-soft-sales,
.btn-soft-followup {
    background: #111827;
    color: #f9fafb;
    border-color: #020617;
}

.btn-soft-mail:hover,
.btn-soft-phone:hover,
.btn-soft-sales:hover,
.btn-soft-followup:hover {
    background: #020617;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
    transform: translateY(-0.5px);
}

/* =========
   RESPONSIV
   ========= */
@media (max-width: 768px) {
    .wizard-content {
        max-width: 100%;
    }

    .wizard-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .wizard-actions--search-actions {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .company-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .planned-company-main {
        padding: 0;
    }

    .grant-match-summary__body {
        flex-direction: column;
    }

    .grant-match-summary__stats {
        justify-content: flex-start;
    }

    .client-settings-access--compact,
    .client-settings-credentials__grid,
    .client-club-grid {
        grid-template-columns: 1fr;
    }

    .client-club-pdf-import {
        grid-template-columns: 1fr;
    }

    .client-club-pdf-import__controls {
        justify-content: stretch;
    }

    .client-club-pdf-import input[type="file"],
    .client-club-pdf-import__controls .btn-secondary {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .planned-company-board__header,
    .planned-company-board__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .planned-company-board__header,
    .planned-company-board__columns {
        grid-template-columns: 1fr;
    }
}

.email-modal-subject {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f3f4ff;
    border: 1px solid #e0e7ff;
    margin-bottom: 4px;
    word-break: break-word;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.email-modal-subject-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.email-modal-copy-subject-btn {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.email-modal-copy-subject-btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.7;
}

.email-modal-copy-subject-btn:hover {
    background: #f3f4f6;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
    transform: translateY(-0.5px);
}

/* Ikoner i kontrollknapparna i botten */
.email-modal-controls .btn-small svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.7;
    margin-right: 6px;
}

/* Radie-fältet: 50% mindre än tidigare (från 40% till 20%), selecten fyller hela fältet */
.radius-field {
    max-width: 20%;
}

.radius-select {
    border-radius: var(--radius-field);
    border: 1px solid var(--border-strong);
    width: 100%;
    padding: 12px;
    background: white;
    font-size: 14px;
    color: var(--text-main);
    transition: 0.16s border-color, 0.16s background, 0.16s box-shadow;
}

#step1-form #location_query {
    width: 50%;
}

@media (max-width: 860px) {
    #step1-form .radius-field {
        max-width: 100%;
    }

    #step1-form #location_query,
    #step1-form .radius-select {
        width: 100%;
    }
}

/* Knapparna ska täcka hela framen, responsivt */
.chip-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.chip {
    width: 100%;
}

#step1-form .chip-group {
    grid-template-columns: repeat(3, 160px);
    justify-content: flex-start;
    gap: 0.55rem;
}

#step1-form .chip {
    padding: 5px 10px;
    font-size: 12px;
}

#step1-form .chip-content {
    gap: 0.4rem;
}

#step1-form .chip-svg {
    width: 1.7em;
    height: 1.7em;
}

@media (max-width: 860px) {
    #step1-form .chip-group {
        grid-template-columns: repeat(2, 160px);
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    #step1-form .chip-group {
        grid-template-columns: 160px;
        justify-content: flex-start;
    }
}

.chip-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Extra om du vill försäkra dig om att ikonerna följer textstorleken */
.chip-svg {
    width: 2em;
    height: 2em;
}

/* Styles for sponsor dashboard: email modal, phone modal, overview layout */

.email-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 70;
}

.email-modal-overlay.visible {
    display: flex;
}

.email-modal-card {
    background: #ffffff;
    border-radius: 18px;
    max-width: 720px;
    width: 92%;
    max-height: 80vh;
    padding: 24px 24px 20px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.email-modal-title {
    font-size: 1rem;
    font-weight: 600;
}

.email-modal-close {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px 8px;
    border-radius: 999px;
}

.email-modal-close:hover {
    background: #f3f4f6;
}

.email-modal-subject {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f3f4ff;
    border: 1px solid #e0e7ff;
    margin-bottom: 4px;
    word-break: break-word;
}

.email-modal-body {
    white-space: pre-wrap;
    line-height: 1.5;
    font-size: 0.95rem;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    overflow-y: auto;
    position: relative;
    min-height: 80px;
}

.email-modal-body.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #4b5563;
    font-size: 0.95rem;
}

.email-modal-body.loading::before {
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 3px solid #e5e7eb;
    border-top-color: #4f46e5;
    animation: spin 0.8s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.email-modal-controls {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 4px;
}

/* Telefonmodal (egen overlay) */
.phone-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 75;
}

.phone-modal-overlay.visible {
    display: flex;
}

.phone-modal-card {
    background: #ffffff;
    border-radius: 16px;
    max-width: 360px;
    width: 92%;
    padding: 20px 18px 16px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-modal-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111827;
}

.phone-modal-number {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    text-align: center;
    color: #111827;
}

.phone-modal-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.btn-phone svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.7;
}

.btn-phone-copy {
    background: #eef2ff;
    color: #312e81;
    border-color: #c7d2fe;
}

.btn-phone-copy:hover {
    background: #e0e7ff;
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.2);
    transform: translateY(-0.5px);
}

.btn-phone-call {
    background: #22c55e;
    color: #f0fdf4;
    border-color: #16a34a;
}

.btn-phone-call:hover {
    background: #16a34a;
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
    transform: translateY(-0.5px);
}

/* Wizard-rutan (översikten): bredd styrs globalt, här bara full width i sin container */
.wizard-card.mail-card.email-preview-card {
    width: 100%;
}

/* === Namnrad: kategori & Ny i rubriken === */
.planned-company-name-category {
    font-weight: 500;
    color: #374151;
}

.planned-company-name-new {
    font-weight: 600;
    color: #eab308;
    /* guldig färg */
}

.planned-company-saved-date {
    margin-top: 2px;
    font-size: 0.76rem;
    color: #6b7280;
}

/* === Översikt-header med filter till höger === */
.overview-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0 4px;
}

.email-preview-card[data-company-view-root] .overview-title {
    color: #eab308;
}

.login-box {
    max-width: 380px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7eb;
}

.login-box h1 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 18px;
}

.login-box .field {
    margin-bottom: 14px;
}

.login-box label {
    font-size: 0.85rem;
    color: #374151;
}

.login-box input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

.login-error {
    color: #b91c1c;
    font-size: 0.85rem;
    margin-bottom: 8px;
    text-align: center;
}

.login-success {
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 10px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-align: center;
}

.login-button {
    width: 100%;
    padding: 10px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 999px;
    font-size: 0.95rem;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.2);
}

.login-button:hover {
    background: #4338ca;
}

.login-meta-link {
    margin-top: 12px;
    text-align: center;
}

.login-meta-link a {
    color: #374151;
    font-size: 0.85rem;
    text-decoration: underline;
}

/* public/assets/css/wizard.css */

/* Loading overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
}

.loading-overlay.visible {
    display: flex;
}

.loading-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
    gap: 12px;
}

.spinner {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 3px solid #e5e7eb;
    border-top-color: #4f46e5;
    animation: wizardSpin 0.8s linear infinite;
}

@keyframes wizardSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 0.95rem;
    color: #111827;
}

.pdf-generation-card {
    width: min(520px, calc(100vw - 32px));
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
}

.pdf-generation-state {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
}

.pdf-generation-state[hidden] {
    display: none;
}

.pdf-generation-card__body {
    min-width: 0;
    flex: 1;
}

.pdf-generation-card__body h2 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 20px;
}

.pdf-generation-card__text {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.45;
}

.pdf-generation-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(22, 70, 42, 0.1);
    color: #16462A;
}

.pdf-generation-card__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.6;
}

.pdf-generation-card__icon--error {
    background: rgba(185, 28, 28, 0.1);
    color: #b91c1c;
    font-weight: 800;
}

.pdf-generation-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pdf-generation-card__close {
    margin-top: 14px;
    border: 0;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    font-weight: 700;
}

/* Bottom bar (step 1) */
.wizard-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 12px 16px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.12);
    justify-content: center;
}

/* public/assets/css/landing.css */

/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f1f1f1;
    margin: 0;
    padding: 0;
}

.lp-section {
    width: 100%;
    padding: 40px 5vw;
    box-sizing: border-box;
}

.lp-inner {
    margin: 0 auto;
    width: min(1120px, 100%);
}

/* HERO */
.lp-hero {
    background: #7ed957;
    color: #ffffff;
    padding-top: 48px;
    padding-bottom: 48px;
    box-shadow: 0 20px 40px rgba(3, 26, 12, 0.5);
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.5fr);
    gap: 32px;
    align-items: center;
}

.lp-hero-title {
    font-size: clamp(2.2rem, 3vw, 2.7rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 12px;
}

.lp-hero-subtitle {
    font-size: 0.98rem;
    max-width: 460px;
    opacity: 0.9;
    margin-bottom: 22px;
}

.lp-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.lp-hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(3, 26, 12, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: normal;
    line-height: 1.35;
}

.lp-hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #7ed957;
}

.lp-dot-orange {
    background: #ff751f;
}

.lp-dot-pink {
    background: #db80a1;
}

.lp-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.lp-btn-hero-primary {
    border: none;
    border-radius: 999px;
    padding: 11px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: #7ed957;
    color: #031A0C;
    box-shadow: 0 14px 30px rgba(126, 217, 87, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lp-btn-hero-primary span {
    transform: translateY(1px);
}

.lp-btn-hero-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(126, 217, 87, 0.7);
}

.lp-btn-hero-secondary {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.lp-btn-hero-secondary:hover {
    background: rgba(3, 26, 12, 0.7);
}

.lp-hero-footnote {
    font-size: 0.78rem;
    opacity: 0.85;
}

.lp-hero-footnote--teaser {
    margin-bottom: 10px;
    opacity: 1;
}

.lp-hero-footnote--teaser a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* FEATURES */
.lp-features {
    background: #ffffff;
}

.lp-section-eyebrow {
    font-size: 0.78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #082b59;
    font-weight: 600;
    margin-bottom: 6px;
}

.lp-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #031A0C;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 4px;
}

.lp-section-subtitle {
    font-size: 0.92rem;
    color: #4b5563;
    max-width: 640px;
    line-height: 1.6;
    margin-bottom: 0;
}

.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
    align-items: stretch;
}

.lp-feature {
    padding: 4px 4px 0;
}

.lp-feature-card {
    padding: 18px 18px 16px;
    background: #f8fbff;
    border: 1px solid #dbe5f0;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    height: 100%;
    box-sizing: border-box;
}

.lp-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.lp-icon-green {
    background: rgba(126, 217, 87, 0.25);
    color: #031A0C;
}

.lp-icon-pink {
    background: rgba(219, 128, 161, 0.25);
    color: #7d123b;
}

.lp-icon-orange {
    background: rgba(255, 117, 31, 0.2);
    color: #7a3400;
}

.lp-feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #031A0C;
    line-height: 1.3;
    margin-bottom: 4px;
}

.lp-feature-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}

.lp-section-eyebrow--light {
    color: #cba589;
}

.lp-section-title--light {
    color: #ffffff;
}

.lp-section-subtitle--light {
    color: rgba(249, 250, 251, 0.88);
}

.lp-problem-grid,
.lp-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-potential-grid {
    align-items: start;
}

.lp-potential-showcase {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.lp-potential-showcase__intro {
    display: grid;
    gap: 8px;
}

.lp-potential-showcase__intro .lp-step-text {
    margin: 0;
    max-width: 72ch;
}

.lp-potential-showcase__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.lp-potential-showcase__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 12px;
    align-items: stretch;
}

.lp-potential-actions {
    margin-top: 18px;
}

.lp-potential-section .lp-step-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-step--potential,
.lp-step--cost {
    min-height: 100%;
}

.lp-step--potential {
    border-left-color: #7ed957;
}

.lp-step--total {
    background: rgba(8, 43, 89, 0.95);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lp-step--cost {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #cba589;
    box-shadow: inset 0 0 0 1px rgba(203, 165, 137, 0.18);
}

.lp-pricing-section {
    background: #ffffff;
}

.lp-pricing-grid {
    grid-template-columns: minmax(0, 420px);
}

.lp-pricing-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.lp-bottom-cta-title {
    line-height: 1.2;
}

.lp-btn-cta-secondary,
.lp-btn-hero-secondary {
    text-align: center;
    line-height: 1.35;
}

/* STEPS */
.lp-steps {
    background: #031A0C;
    color: #f9fafb;
}

.lp-steps-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
    gap: 24px;
    align-items: flex-start;
}

.lp-steps-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.lp-steps-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 14px;
}

.lp-steps-callout {
    font-size: 0.85rem;
    background: rgba(8, 43, 89, 0.8);
    border-left: 3px solid #cba589;
    padding: 10px 12px;
}

.lp-step-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.lp-step {
    font-size: 0.84rem;
    background: rgba(15, 23, 42, 0.9);
    padding: 10px 12px 12px;
    border-left: 3px solid #7ed957;
    height: 100%;
    box-sizing: border-box;
}

.lp-step-number {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #7ed957;
    margin-bottom: 4px;
}

.lp-step-title {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.lp-step-text {
    opacity: 0.9;
    line-height: 1.55;
    margin-bottom: 0;
}

/* BOTTOM CTA */
.lp-bottom-cta {
    background: linear-gradient(135deg, #ff751f, #7ed957);
    color: #031A0C;
}

.lp-bottom-cta-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.lp-bottom-cta-text {
    max-width: 520px;
}

.lp-bottom-cta-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.lp-bottom-cta-sub {
    font-size: 0.9rem;
    line-height: 1.6;
}

.lp-bottom-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.lp-btn-cta-primary {
    background: #031A0C;
    color: #ffffff;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 0.9rem;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.lp-btn-cta-primary:hover {
    background: #082b59;
}

.lp-btn-cta-secondary {
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.86rem;
    border: 1px solid rgba(3, 26, 12, 0.4);
    background: rgba(255, 255, 255, 0.75);
    color: #031A0C;
    text-decoration: none;
}

.lp-btn-cta-secondary:hover {
    background: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
    .lp-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .lp-problem-grid,
    .lp-detail-grid,
    .lp-potential-section .lp-step-cards {
        grid-template-columns: 1fr;
    }

    .lp-steps-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .lp-step-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .lp-section {
        padding-inline: 16px;
    }

    .lp-hero-title {
        font-size: 2rem;
    }
}
