/* ============================================================
   Talabatak — GEIST Header Specific Styles
   Extends style.css with header / nav / search / sheet / customizer styles
   ============================================================ */

/* === HEADER === */
.geist-header {
    position: sticky;
    top: 0;
    z-index: var(--geist-z-sticky, 1100);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--geist-accents-3, #E4E4E7);
    transition: background-color var(--geist-transition), border-color var(--geist-transition);
}
[data-bs-theme="dark"] .geist-header {
    background: rgba(0, 0, 0, 0.85);
}

/* Top utility strip */
.geist-strip {
    border-bottom: 1px solid var(--geist-accents-2, #F4F4F5);
    background: var(--geist-background-secondary, #FAFAFA);
    font-size: 0.78rem;
    color: var(--geist-accents-5, #71717A);
}
[data-bs-theme="dark"] .geist-strip {
    border-bottom: 1px solid var(--geist-accents-3, #27272A);
}
.geist-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 8px;
    gap: var(--geist-space-4, 16px);
}
.geist-strip-left,
.geist-strip-right {
    display: flex;
    align-items: center;
    gap: var(--geist-space-3, 12px);
    flex-wrap: wrap;
}
.geist-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--geist-accents-6, #52525B);
    text-decoration: none;
    transition: color var(--geist-transition);
}
.geist-strip-item:hover { color: var(--geist-foreground, #000); }
.geist-strip-item i { font-size: 0.85rem; }
.geist-strip-divider {
    width: 1px;
    height: 12px;
    background: var(--geist-accents-3, #E4E4E7);
}
.geist-strip-promo {
    color: var(--geist-foreground, #000);
    font-weight: 500;
}
.geist-strip-promo i { color: var(--geist-yellow, #FCD804); }
.geist-strip-label {
    color: var(--geist-accents-5, #71717A);
    font-weight: 500;
}
@media (max-width: 992px) { .geist-strip { display: none; } }

/* === Main nav wrap === */
.geist-nav-wrap {
    border-bottom: 0;
}
.geist-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--geist-space-4, 16px);
    padding-block: 14px;
}

/* Brand */
.geist-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--geist-space-2, 8px);
    text-decoration: none;
    color: var(--geist-foreground);
    flex-shrink: 0;
}
.geist-brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--geist-foreground);
}
[data-bs-theme="dark"] .geist-brand-name { color: #fff; }

/* Desktop nav */
.geist-nav {
    display: flex;
    flex: 1;
    justify-content: center;
}
.geist-nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.geist-nav-item {
    position: relative;
    padding: 0;
}
.geist-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--geist-accents-6, #52525B);
    border-radius: var(--geist-radius-3, 6px);
    transition: all var(--geist-transition);
    text-decoration: none;
    white-space: nowrap;
}
.geist-nav-link:hover {
    color: var(--geist-foreground, #000);
    background: var(--geist-background-secondary, #FAFAFA);
}
[data-bs-theme="dark"] .geist-nav-link:hover {
    color: #fff;
}
.geist-nav-link.active {
    color: var(--geist-foreground, #000);
    background: var(--geist-background-secondary, #FAFAFA);
}
[data-bs-theme="dark"] .geist-nav-link.active { color: #fff; }
.geist-nav-caret { font-size: 0.7rem; transition: transform var(--geist-transition); }
.geist-nav-item:hover .geist-nav-caret { transform: rotate(180deg); }

@media (max-width: 1100px) {
    .geist-nav { display: none; }
}

/* Mega Menu */
.geist-mega {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 50%;
    transform: translateX(-50%);
    [dir="rtl"] & { transform: translateX(50%); }
    width: 720px;
    max-width: calc(100vw - 32px);
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-5, 12px);
    box-shadow: var(--geist-shadow-lg, 0 12px 24px rgba(0,0,0,0.06));
    padding: var(--geist-space-5, 20px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-4px);
    [dir="rtl"] & { transform: translateX(50%) translateY(-4px); }
    transition: all var(--geist-transition);
    z-index: var(--geist-z-dropdown, 1000);
}
.geist-nav-item:hover .geist-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    [dir="rtl"] & { transform: translateX(50%) translateY(0); }
}
[data-bs-theme="dark"] .geist-mega {
    background: #000;
    border-color: var(--geist-accents-3, #27272A);
}
.geist-mega-head {
    text-align: center;
    padding-bottom: var(--geist-space-4, 16px);
    margin-bottom: var(--geist-space-4, 16px);
    border-bottom: 1px solid var(--geist-accents-2, #F4F4F5);
}
.geist-mega-eyebrow {
    display: block;
    font-size: 0.75rem;
    color: var(--geist-accents-5, #71717A);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    font-weight: 500;
}
.geist-mega-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--geist-foreground);
}
.geist-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
@media (max-width: 640px) {
    .geist-mega { width: 100%; }
    .geist-mega-grid { grid-template-columns: 1fr; }
}
.geist-mega-item {
    display: flex;
    align-items: flex-start;
    gap: var(--geist-space-3, 12px);
    padding: 10px 12px;
    border-radius: var(--geist-radius-3, 6px);
    text-decoration: none;
    transition: background var(--geist-transition);
}
.geist-mega-item:hover { background: var(--geist-background-secondary, #FAFAFA); }
.geist-mega-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-3, 6px);
    color: var(--geist-foreground);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all var(--geist-transition);
}
.geist-mega-item:hover .geist-mega-icon {
    background: var(--geist-foreground);
    color: var(--geist-background);
    border-color: var(--geist-foreground);
}
.geist-mega-item .geist-mega-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--geist-foreground);
}
.geist-mega-desc {
    font-size: 0.78rem;
    color: var(--geist-accents-5, #71717A);
    line-height: 1.4;
}
.geist-mega-foot {
    margin-top: var(--geist-space-3, 12px);
    padding-top: var(--geist-space-3, 12px);
    border-top: 1px solid var(--geist-accents-2, #F4F4F5);
    text-align: center;
}

/* === Actions === */
.geist-actions {
    display: flex;
    align-items: center;
    gap: var(--geist-space-2, 8px);
    flex-shrink: 0;
}
.geist-icon-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    background: var(--geist-background, #fff);
    color: var(--geist-foreground);
    border-radius: var(--geist-radius-3, 6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all var(--geist-transition);
}
.geist-icon-btn:hover {
    background: var(--geist-background-secondary, #FAFAFA);
    border-color: var(--geist-accents-4, #A1A1AA);
}
[data-bs-theme="dark"] .geist-icon-btn { background: #000; border-color: var(--geist-accents-3, #27272A); color: #fff; }
[data-bs-theme="dark"] .geist-icon-btn:hover { background: var(--geist-accents-2, #18181B); }

/* Country dropdown */
.geist-country {
    position: relative;
}
.geist-country-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    background: var(--geist-background, #fff);
    color: var(--geist-foreground);
    border-radius: var(--geist-radius-3, 6px);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all var(--geist-transition);
}
.geist-country-btn:hover {
    background: var(--geist-background-secondary, #FAFAFA);
    border-color: var(--geist-accents-4, #A1A1AA);
}
.geist-country-btn .geist-flag { font-size: 1rem; line-height: 1; }
.geist-country-name { font-weight: 500; }
.geist-country-btn i { font-size: 0.7rem; color: var(--geist-accents-5, #71717A); }

.geist-country-menu {
    position: absolute;
    top: calc(100% + 6px);
    inset-inline-end: 0;
    min-width: 240px;
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-4, 8px);
    box-shadow: var(--geist-shadow-lg, 0 12px 24px rgba(0,0,0,0.06));
    padding: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all var(--geist-transition);
    z-index: var(--geist-z-dropdown, 1000);
}
.geist-country.open .geist-country-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
[data-bs-theme="dark"] .geist-country-menu { background: #000; border-color: var(--geist-accents-3, #27272A); }
.geist-country-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: var(--geist-radius-3, 6px);
    color: var(--geist-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background var(--geist-transition);
}
.geist-country-item:hover { background: var(--geist-background-secondary, #FAFAFA); }
.geist-country-item.active { background: var(--geist-foreground); color: var(--geist-background); }
.geist-country-symbol {
    font-size: 0.78rem;
    color: var(--geist-accents-5, #71717A);
    font-family: var(--geist-font-mono);
}
.geist-country-item.active .geist-country-symbol { color: var(--geist-background); }

/* Actions separator */
.geist-actions-sep {
    width: 1px;
    height: 24px;
    background: var(--geist-accents-3, #E4E4E7);
    margin-inline: 2px;
}
.geist-actions-group {
    display: flex;
    gap: 4px;
}

/* CTA in header */
.geist-header .geist-cta {
    height: 36px;
    padding: 0 var(--geist-space-4, 16px);
    font-size: 0.85rem;
}

/* Burger */
.geist-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    background: var(--geist-background, #fff);
    border-radius: var(--geist-radius-3, 6px);
    cursor: pointer;
    padding: 0 8px;
    transition: all var(--geist-transition);
}
.geist-burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--geist-foreground);
    margin: 0 auto;
    transition: all var(--geist-transition);
}
.geist-burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.geist-burger.open span:nth-child(2) { opacity: 0; }
.geist-burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
[data-bs-theme="dark"] .geist-burger { background: #000; border-color: var(--geist-accents-3, #27272A); }
[data-bs-theme="dark"] .geist-burger span { background: #fff; }

@media (max-width: 1100px) {
    .geist-burger { display: flex; }
    .geist-actions .geist-cta { display: none; }
    .geist-actions-group { display: none; }
    .geist-actions .geist-country { display: none; }
    .geist-actions-sep { display: none; }
}
@media (max-width: 576px) {
    .geist-icon-btn#searchToggle { display: inline-flex; }
    .geist-actions .geist-country { display: none; }
}

/* === Search Overlay (Command Palette) === */
.geist-search-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--geist-z-overlay, 1300);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
    opacity: 0;
    visibility: hidden;
    transition: all var(--geist-transition);
}
.geist-search-overlay.open {
    opacity: 1;
    visibility: visible;
}
.geist-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}
.geist-search-panel {
    position: relative;
    width: 100%;
    max-width: 640px;
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-5, 12px);
    box-shadow: var(--geist-shadow-xl, 0 24px 48px rgba(0,0,0,0.08));
    overflow: hidden;
    transform: translateY(-12px) scale(0.98);
    transition: transform var(--geist-transition);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}
.geist-search-overlay.open .geist-search-panel {
    transform: translateY(0) scale(1);
}
[data-bs-theme="dark"] .geist-search-panel { background: #000; border-color: var(--geist-accents-3, #27272A); }
.geist-search-header {
    display: flex;
    align-items: center;
    gap: var(--geist-space-3, 12px);
    padding: var(--geist-space-4, 16px);
    border-bottom: 1px solid var(--geist-accents-2, #F4F4F5);
}
.geist-search-icon { color: var(--geist-accents-5, #71717A); font-size: 1.1rem; }
.geist-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--geist-foreground);
    font-family: inherit;
}
.geist-search-input::placeholder { color: var(--geist-accents-4, #A1A1AA); }
.geist-search-close {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--geist-background-secondary, #FAFAFA);
    color: var(--geist-accents-6, #52525B);
    border-radius: var(--geist-radius-3, 6px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all var(--geist-transition);
}
.geist-search-close:hover { background: var(--geist-accents-2, #18181B); color: var(--geist-foreground); }
.geist-search-kbd {
    padding: 2px 6px;
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-2, 5px);
    font-family: var(--geist-font-mono);
    font-size: 0.7rem;
    color: var(--geist-accents-5, #71717A);
}
.geist-search-body {
    overflow-y: auto;
    padding: var(--geist-space-4, 16px);
}
.geist-search-section {
    margin-bottom: var(--geist-space-5, 20px);
}
.geist-search-section:last-child { margin-bottom: 0; }
.geist-search-section-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--geist-accents-5, #71717A);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--geist-space-3, 12px);
}
.geist-search-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.geist-search-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-7, 9999px);
    font-size: 0.825rem;
    color: var(--geist-foreground);
    text-decoration: none;
    transition: all var(--geist-transition);
}
.geist-search-quick-link:hover {
    background: var(--geist-foreground);
    color: var(--geist-background);
    border-color: var(--geist-foreground);
}
.geist-search-quick-link i { font-size: 0.85rem; }

.geist-search-suggestions {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.geist-search-suggestion {
    display: flex;
    align-items: center;
    gap: var(--geist-space-3, 12px);
    padding: 10px 12px;
    border-radius: var(--geist-radius-3, 6px);
    text-decoration: none;
    color: var(--geist-foreground);
    transition: background var(--geist-transition);
}
.geist-search-suggestion:hover { background: var(--geist-background-secondary, #FAFAFA); }
.geist-search-suggestion-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-3, 6px);
    color: var(--geist-foreground);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.geist-search-suggestion-text {
    flex: 1;
    font-size: 0.875rem;
}
.geist-search-suggestion-arrow {
    color: var(--geist-accents-4, #A1A1AA);
    font-size: 0.85rem;
}

.geist-search-empty {
    text-align: center;
    padding: var(--geist-space-6, 24px);
    color: var(--geist-accents-5, #71717A);
}
.geist-search-empty i {
    font-size: 2rem;
    color: var(--geist-accents-4, #A1A1AA);
    margin-bottom: var(--geist-space-3, 12px);
}
.geist-search-empty p {
    font-size: 0.9rem;
    margin: 0;
}

/* === Mobile Sheet (slide-down panel) === */
.geist-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: var(--geist-z-modal, 2000);
    opacity: 0;
    visibility: hidden;
    transition: all var(--geist-transition);
}
.geist-sheet-backdrop.open { opacity: 1; visibility: visible; }

.geist-sheet {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--geist-background, #fff);
    border-inline-start: 1px solid var(--geist-accents-3, #E4E4E7);
    box-shadow: var(--geist-shadow-xl, 0 24px 48px rgba(0,0,0,0.08));
    z-index: var(--geist-z-modal, 2000);
    transform: translateX(100%);
    [dir="rtl"] & { transform: translateX(-100%); }
    transition: transform var(--geist-transition-slow, 250ms cubic-bezier(0.4, 0, 0.2, 1));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.geist-sheet.open {
    transform: translateX(0);
}
[data-bs-theme="dark"] .geist-sheet { background: #000; border-color: var(--geist-accents-3, #27272A); }

.geist-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--geist-space-4, 16px);
    border-bottom: 1px solid var(--geist-accents-2, #F4F4F5);
}
.geist-sheet-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--geist-space-2, 8px);
    font-size: 1rem;
    font-weight: 700;
    color: var(--geist-foreground);
}
.geist-sheet-close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--geist-background-secondary, #FAFAFA);
    color: var(--geist-foreground);
    border-radius: var(--geist-radius-3, 6px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.geist-sheet-search {
    margin: var(--geist-space-3, 12px);
    padding: 12px 14px;
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-3, 6px);
    display: flex;
    align-items: center;
    gap: var(--geist-space-2, 8px);
    color: var(--geist-accents-5, #71717A);
    text-align: start;
    cursor: pointer;
    width: calc(100% - var(--geist-space-6, 24px));
    transition: all var(--geist-transition);
}
.geist-sheet-search:hover { border-color: var(--geist-accents-4, #A1A1AA); }
.geist-sheet-search-placeholder { font-size: 0.85rem; }

.geist-sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--geist-space-3, 12px) var(--geist-space-4, 16px);
}
.geist-sheet-section {
    margin-bottom: var(--geist-space-5, 20px);
}
.geist-sheet-section-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--geist-accents-5, #71717A);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--geist-space-2, 8px);
    padding-inline: var(--geist-space-2, 8px);
}
.geist-sheet-link {
    display: flex;
    align-items: center;
    gap: var(--geist-space-3, 12px);
    padding: 10px 12px;
    color: var(--geist-foreground);
    text-decoration: none;
    border-radius: var(--geist-radius-3, 6px);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background var(--geist-transition);
}
.geist-sheet-link:hover { background: var(--geist-background-secondary, #FAFAFA); }
.geist-sheet-link.active { background: var(--geist-foreground); color: var(--geist-background); }
.geist-sheet-link i.bi:first-child { font-size: 1rem; }
.geist-sheet-arrow {
    margin-inline-start: auto;
    color: var(--geist-accents-4, #A1A1AA);
    font-size: 0.75rem;
}
.geist-sheet-link.active .geist-sheet-arrow { color: var(--geist-background); }

.geist-sheet-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.geist-flag-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-7, 9999px);
    color: var(--geist-foreground);
    font-size: 0.78rem;
    cursor: pointer;
    transition: all var(--geist-transition);
}
.geist-flag-pill:hover { border-color: var(--geist-accents-4, #A1A1AA); }
.geist-flag-pill.active {
    background: var(--geist-foreground);
    color: var(--geist-background);
    border-color: var(--geist-foreground);
}

.geist-sheet-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.geist-sheet-action {
    display: flex;
    align-items: center;
    gap: var(--geist-space-3, 12px);
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: var(--geist-foreground);
    border-radius: var(--geist-radius-3, 6px);
    font-size: 0.9rem;
    cursor: pointer;
    text-align: start;
    transition: background var(--geist-transition);
}
.geist-sheet-action:hover { background: var(--geist-background-secondary, #FAFAFA); }
.geist-sheet-action i { font-size: 1rem; color: var(--geist-accents-5, #71717A); }

.geist-sheet-social {
    display: flex;
    justify-content: center;
    gap: var(--geist-space-2, 8px);
    margin-top: var(--geist-space-5, 20px);
    padding-top: var(--geist-space-4, 16px);
    border-top: 1px solid var(--geist-accents-2, #F4F4F5);
}

/* === Customizer Modal (GEIST style) === */
.geist-modal .modal-content {
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-5, 12px);
    box-shadow: var(--geist-shadow-xl, 0 24px 48px rgba(0,0,0,0.08));
    overflow: hidden;
}
[data-bs-theme="dark"] .geist-modal .modal-content { background: #000; border-color: var(--geist-accents-3, #27272A); }
.geist-modal-header {
    border-bottom: 1px solid var(--geist-accents-2, #F4F4F5);
    padding: var(--geist-space-4, 16px) var(--geist-space-5, 20px);
}
.geist-modal-header .modal-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--geist-foreground);
}
.geist-modal-header .modal-title i { color: var(--geist-foreground); }
.geist-modal-body {
    background: var(--geist-background, #fff);
}

.customizer-layout {
    display: flex;
    min-height: 480px;
    max-height: 70vh;
}
.customizer-tabs-nav {
    width: 200px;
    border-inline-end: 1px solid var(--geist-accents-2, #F4F4F5);
    padding: var(--geist-space-3, 12px);
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--geist-background-secondary, #FAFAFA);
}
@media (max-width: 768px) {
    .customizer-layout { flex-direction: column; }
    .customizer-tabs-nav {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        border-inline-end: 0;
        border-bottom: 1px solid var(--geist-accents-2, #F4F4F5);
    }
}
.customizer-tab-btn {
    display: flex;
    align-items: center;
    gap: var(--geist-space-2, 8px);
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: var(--geist-accents-6, #52525B);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--geist-radius-3, 6px);
    cursor: pointer;
    text-align: start;
    transition: all var(--geist-transition);
    white-space: nowrap;
    width: 100%;
}
.customizer-tab-btn:hover { background: var(--geist-background, #fff); color: var(--geist-foreground); }
[data-bs-theme="dark"] .customizer-tab-btn:hover { background: var(--geist-accents-2, #18181B); color: #fff; }
.customizer-tab-btn.active {
    background: var(--geist-foreground);
    color: var(--geist-background);
}
.customizer-tab-btn i { font-size: 0.9rem; }

.customizer-tabs-content {
    flex: 1;
    padding: var(--geist-space-5, 20px);
    overflow-y: auto;
}
.customizer-tab-pane { display: none; }
.customizer-tab-pane.active { display: block; animation: geist-fade 0.2s ease-out; }

.customizer-section-title {
    display: flex;
    align-items: center;
    gap: var(--geist-space-2, 8px);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--geist-space-2, 8px);
    color: var(--geist-foreground);
}
.customizer-section-title i { color: var(--geist-foreground); }
.customizer-section-desc {
    font-size: 0.85rem;
    color: var(--geist-accents-5, #71717A);
    margin-bottom: var(--geist-space-4, 16px);
    line-height: 1.5;
}
.customizer-subsection-title {
    display: flex;
    align-items: center;
    gap: var(--geist-space-2, 8px);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--geist-space-3, 12px);
    color: var(--geist-foreground);
}
.customizer-color-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--geist-accents-6, #52525B);
}
.customizer-color-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-3, 6px);
}
.customizer-color-input.form-control-color {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: var(--geist-radius-2, 5px);
    cursor: pointer;
    background: transparent;
}
.customizer-color-hex {
    font-size: 0.78rem;
    font-family: var(--geist-font-mono);
    color: var(--geist-accents-6, #52525B);
}

.customizer-range.form-range {
    width: 100%;
    height: 4px;
    background: var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-7, 9999px);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}
.customizer-range.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--geist-foreground);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--geist-background);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.customizer-range.form-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--geist-foreground);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--geist-background);
}

.density-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--geist-space-3, 12px);
}
.density-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: var(--geist-background);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-3, 6px);
    cursor: pointer;
    font-size: 0.78rem;
    color: var(--geist-accents-6, #52525B);
    transition: all var(--geist-transition);
}
.density-card:hover { border-color: var(--geist-accents-4, #A1A1AA); }
.density-card.active {
    background: var(--geist-foreground);
    color: var(--geist-background);
    border-color: var(--geist-foreground);
}
.density-preview {
    width: 100%;
    height: 24px;
    background: var(--geist-accents-3, #E4E4E7);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.density-card.active .density-preview { background: var(--geist-accents-7, #D4D4D8); }
.density-preview-compact::before,
.density-preview-comfortable::before,
.density-preview-spacious::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0.7;
}
.density-preview-compact::before { inset: 2px; }
.density-preview-comfortable::before { inset: 4px; }
.density-preview-spacious::before { inset: 6px; }

.weight-btn {
    min-width: 44px;
}
.weight-btn.active {
    background: var(--geist-foreground);
    color: var(--geist-background);
}

.font-preview-box {
    padding: var(--geist-space-4, 16px);
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-3, 6px);
    margin-top: var(--geist-space-4, 16px);
}
.font-preview-box .preview-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--geist-space-2, 8px);
}
.font-preview-box .preview-body {
    font-size: 0.875rem;
    color: var(--geist-accents-6, #52525B);
    line-height: 1.6;
    margin: 0;
}

.palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--geist-space-3, 12px);
}
.palette-card {
    padding: 10px;
    background: var(--geist-background);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-3, 6px);
    cursor: pointer;
    transition: all var(--geist-transition);
}
.palette-card:hover { border-color: var(--geist-accents-4, #A1A1AA); }
.palette-card.active {
    border-color: var(--geist-foreground);
    border-width: 2px;
    padding: 9px;
}
.palette-swatch {
    height: 48px;
    border-radius: var(--geist-radius-2, 5px);
    margin-bottom: 6px;
    border: 1px solid var(--geist-accents-2, #F4F4F5);
}
.palette-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--geist-foreground);
    text-align: center;
}

/* === Body padding for fixed header === */
body {
    padding-top: 0;
}
.geist-header {
    position: sticky;
}

/* === Hide old aurora styles === */
.aurora-header, .aurora-pill, .aurora-strip, .aurora-nav, .aurora-actions,
.aurora-sheet, .aurora-search-overlay, .aurora-mega, .aurora-country,
.bg-animated, .custom-bg-layer {
    display: none !important;
}

/* === Hover lift effect on interactive cards === */
.geist-card-interactive:hover .geist-icon,
.glass-card:hover .feature-icon {
    background: var(--geist-foreground);
    color: var(--geist-background);
    border-color: var(--geist-foreground);
}
[data-bs-theme="dark"] .geist-card-interactive:hover .geist-icon,
[data-bs-theme="dark"] .glass-card:hover .feature-icon {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* ============================================================
   FOOTER — GEIST style
   ============================================================ */
.geist-footer {
    background: var(--geist-background, #fff);
    border-top: 1px solid var(--geist-accents-3, #E4E4E7);
    margin-top: var(--geist-space-13, 96px);
}
[data-bs-theme="dark"] .geist-footer { background: #000; border-color: var(--geist-accents-3, #27272A); }

.geist-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--geist-foreground);
    margin-bottom: var(--geist-space-3, 12px);
}

.geist-footer-links,
.geist-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.geist-footer-links li,
.geist-footer-contact li {
    margin-bottom: var(--geist-space-2, 8px);
}
.geist-footer-links a {
    color: var(--geist-accents-6, #52525B);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--geist-transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.geist-footer-links a:hover { color: var(--geist-foreground); }
.geist-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--geist-space-2, 8px);
    font-size: 0.875rem;
    color: var(--geist-accents-6, #52525B);
}
.geist-footer-contact i {
    color: var(--geist-accents-5, #71717A);
    margin-top: 3px;
    font-size: 0.95rem;
}
.geist-footer-contact a {
    color: var(--geist-accents-6, #52525B);
    text-decoration: none;
    transition: color var(--geist-transition);
}
.geist-footer-contact a:hover { color: var(--geist-foreground); }

.geist-footer-copyright {
    border-top: 1px solid var(--geist-accents-2, #F4F4F5);
    background: var(--geist-background-secondary, #FAFAFA);
}
[data-bs-theme="dark"] .geist-footer-copyright { background: var(--geist-accents-1, #09090B); }

/* Toast */
.geist-toast {
    position: fixed;
    bottom: 24px;
    inset-inline: 0;
    margin-inline: auto;
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-4, 8px);
    padding: 12px 16px;
    box-shadow: var(--geist-shadow-lg, 0 12px 24px rgba(0,0,0,0.06));
    display: inline-flex;
    align-items: center;
    gap: var(--geist-space-2, 8px);
    font-size: 0.875rem;
    color: var(--geist-foreground);
    z-index: var(--geist-z-toast, 4000);
    width: fit-content;
    max-width: calc(100vw - 32px);
}

/* ============================================================
   PAIN POINTS, COMPARISON, HERO, SOLUTIONS — page-specific
   ============================================================ */

/* Hero section */
.hero {
    padding-block: var(--geist-space-13, 96px) var(--geist-space-12, 80px);
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-7, 9999px);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--geist-accents-6, #52525B);
    margin-bottom: var(--geist-space-5, 20px);
    line-height: 1;
    height: 24px;
}
.hero-badge i { font-size: 0.85rem; color: var(--geist-foreground); }
.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: var(--geist-space-4, 16px);
}
.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--geist-accents-6, #52525B);
    margin-bottom: var(--geist-space-6, 24px);
    max-width: 580px;
}
.hero-buttons {
    display: flex;
    gap: var(--geist-space-3, 12px);
    flex-wrap: wrap;
    margin-bottom: var(--geist-space-6, 24px);
}
.hero-buttons .geist-btn,
.hero-buttons .glass-btn-primary,
.hero-buttons .glass-btn-secondary {
    height: 44px;
    padding: 0 var(--geist-space-6, 24px);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-mockup { position: relative; }
.qr-float {
    position: absolute;
    bottom: 20px;
    inset-inline-end: -16px;
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-4, 8px);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: var(--geist-space-2, 8px);
    box-shadow: var(--geist-shadow-lg, 0 12px 24px rgba(0,0,0,0.06));
    animation: floatQr 3s ease-in-out infinite;
}
.qr-float i {
    font-size: 1.75rem;
    color: var(--geist-foreground);
}

/* Section base */
section {
    padding-block: var(--geist-space-12, 80px);
}
@media (max-width: 768px) {
    section { padding-block: var(--geist-space-9, 48px); }
}
.section-alt-bg {
    background: var(--geist-background-secondary, #FAFAFA);
    border-block: 1px solid var(--geist-accents-2, #F4F4F5);
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--geist-space-3, 12px);
    letter-spacing: -0.04em;
    line-height: 1.15;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--geist-accents-6, #52525B);
    max-width: 620px;
    margin-inline: auto;
    line-height: 1.65;
}
.section-divider {
    width: 40px;
    height: 2px;
    background: var(--geist-foreground);
    border-radius: var(--geist-radius-7, 9999px);
    margin: var(--geist-space-3, 12px) auto 0;
}

/* Pain point card */
.pain-card {
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-5, 12px);
    padding: var(--geist-space-5, 20px);
    transition: all var(--geist-transition);
    height: 100%;
}
.pain-card:hover {
    border-color: var(--geist-accents-4, #A1A1AA);
    box-shadow: var(--geist-shadow-md, 0 4px 8px rgba(0,0,0,0.04));
}
.pain-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--geist-error-light, #FEEFEF);
    color: var(--geist-error, #E00000);
    border-radius: var(--geist-radius-3, 6px);
    font-size: 1.1rem;
    margin-bottom: var(--geist-space-3, 12px);
    border: 1px solid rgba(224, 0, 0, 0.2);
}

/* Solution card */
.solution-card {
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-5, 12px);
    padding: var(--geist-space-5, 20px);
    transition: all var(--geist-transition);
    height: 100%;
}
.solution-card:hover {
    border-color: var(--geist-foreground);
    transform: translateY(-2px);
    box-shadow: var(--geist-shadow-lg, 0 12px 24px rgba(0,0,0,0.06));
}
.solution-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--geist-success-light, #E6F3FE);
    color: var(--geist-success, #0070F3);
    border-radius: var(--geist-radius-3, 6px);
    font-size: 1.1rem;
    margin-bottom: var(--geist-space-3, 12px);
    border: 1px solid rgba(0, 112, 243, 0.2);
}

/* Big stats strip */
.big-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--geist-space-5, 20px);
    padding: var(--geist-space-7, 32px);
    background: var(--geist-foreground);
    border-radius: var(--geist-radius-6, 16px);
    color: var(--geist-background);
}
[data-bs-theme="dark"] .big-stats {
    background: var(--geist-accents-2, #18181B);
    color: var(--geist-foreground);
}
@media (max-width: 768px) {
    .big-stats { grid-template-columns: repeat(2, 1fr); }
}
.big-stat-number {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
    color: inherit;
    font-variant-numeric: tabular-nums;
}
.big-stat-label {
    font-size: 0.78rem;
    color: var(--geist-accents-5, #71717A);
    opacity: 0.85;
}
[data-bs-theme="dark"] .big-stats .big-stat-label { color: var(--geist-accents-5, #71717A); }
[data-bs-theme="light"] .big-stats .big-stat-label,
[data-bs-theme="light"] :not([data-bs-theme="dark"]) .big-stats .big-stat-label { color: rgba(255,255,255,0.7); }
.big-stat-icon {
    font-size: 1rem;
    color: inherit;
    opacity: 0.6;
    margin-bottom: 8px;
    display: block;
}

/* Countries section */
.countries-section { padding-block: var(--geist-space-13, 96px); }

/* Mobile CTA bar already in style.css */

/* Comparison cell colors (override default for traditional = red-ish, digital = green-ish) */
.comparison-cell-traditional i { color: var(--geist-error); }
.comparison-cell-digital i { color: var(--geist-success); }

/* Page-header (used by all sub-pages) */
.page-header {
    padding-block: var(--geist-space-11, 64px) var(--geist-space-9, 48px);
    background: var(--geist-background, #fff);
    border-bottom: 1px solid var(--geist-accents-2, #F4F4F5);
}
[data-bs-theme="dark"] .page-header { background: #000; border-color: var(--geist-accents-3, #27272A); }
.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-top: var(--geist-space-3, 12px);
    margin-bottom: var(--geist-space-3, 12px);
}

/* Feature card */
.feature-card { text-align: start; }
.feature-card .feature-icon { margin-inline-start: 0; }
.feature-card h4, .feature-card h3 { margin-bottom: var(--geist-space-2, 8px); }
.feature-card p { color: var(--geist-accents-6, #52525B); margin: 0; font-size: 0.9rem; line-height: 1.65; }

/* Stat card */
.stat-card { text-align: center; padding: var(--geist-space-5, 20px); }
.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--geist-foreground);
    font-variant-numeric: tabular-nums;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--geist-accents-5, #71717A);
}

/* Process steps (development page) */
.dev-stage-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--geist-foreground);
    color: var(--geist-background);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--geist-space-3, 12px);
}
[data-bs-theme="dark"] .dev-stage-number { background: #fff; color: #000; }

/* Tech badge */
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-3, 6px);
    font-size: 0.825rem;
    color: var(--geist-foreground);
    font-weight: 500;
    transition: all var(--geist-transition);
}
.tech-badge:hover { border-color: var(--geist-accents-4, #A1A1AA); }
.tech-badge i { font-size: 1rem; }

/* Trial banner */
.trial-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--geist-space-3, 12px);
    padding: 12px 24px;
    background: var(--geist-foreground);
    color: var(--geist-background);
    border-radius: var(--geist-radius-5, 12px);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Page intro section — generic */
.page-intro-section {
    padding-block: var(--geist-space-11, 64px);
}
.page-intro-section img {
    border-radius: var(--geist-radius-5, 12px);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
}

/* Solution / sector card with category label */
.solution-card .solution-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--geist-accents-5, #71717A);
    margin-bottom: var(--geist-space-3, 12px);
    font-weight: 500;
}
.solution-card h4,
.solution-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--geist-space-2, 8px);
}
.solution-card p {
    color: var(--geist-accents-6, #52525B);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0 0 var(--geist-space-3, 12px);
}
.solution-card .solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.solution-card .solution-features li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.825rem;
    color: var(--geist-accents-7, #27272A);
    padding: 4px 0;
}
.solution-card .solution-features li i {
    color: var(--geist-success);
    margin-top: 3px;
    font-size: 0.75rem;
}
[data-bs-theme="dark"] .solution-card .solution-features li { color: var(--geist-accents-7, #D4D4D8); }

/* Team / department card */
.team-card {
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-5, 12px);
    padding: var(--geist-space-5, 20px);
    text-align: center;
    transition: all var(--geist-transition);
    height: 100%;
}
.team-card:hover {
    border-color: var(--geist-foreground);
    transform: translateY(-2px);
    box-shadow: var(--geist-shadow-lg, 0 12px 24px rgba(0,0,0,0.06));
}
.team-card-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-4, 8px);
    color: var(--geist-foreground);
    font-size: 1.5rem;
    margin-bottom: var(--geist-space-3, 12px);
}
.team-card:hover .team-card-icon {
    background: var(--geist-foreground);
    color: var(--geist-background);
    border-color: var(--geist-foreground);
}
.team-card h4, .team-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.team-card p {
    font-size: 0.825rem;
    color: var(--geist-accents-5, #71717A);
    margin: 0;
    line-height: 1.5;
}

/* Steps timeline (development page) */
.dev-stage {
    display: flex;
    align-items: flex-start;
    gap: var(--geist-space-4, 16px);
    padding: var(--geist-space-4, 16px);
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-5, 12px);
    transition: all var(--geist-transition);
    height: 100%;
}
.dev-stage:hover {
    border-color: var(--geist-foreground);
}
.dev-stage-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--geist-space-2, 8px);
}
.dev-stage-content p {
    font-size: 0.85rem;
    color: var(--geist-accents-6, #52525B);
    line-height: 1.6;
    margin: 0;
}

/* Value card */
.value-card { text-align: center; }
.value-card .feature-icon { margin-inline: auto; }

/* Misc */
.package-btn { /* same as .geist-btn */ }
.package-btn.cta-btn {
    width: 100%;
    height: 44px;
}

/* CTA-card inner padding */
.cta-card {
    background: var(--geist-background);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-6, 16px);
    padding: var(--geist-space-8, 40px) var(--geist-space-7, 32px);
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    box-shadow: var(--geist-shadow-md, 0 4px 8px rgba(0,0,0,0.04));
}

/* Quote section */
.quote-section {
    padding: var(--geist-space-9, 48px);
    background: var(--geist-background-secondary, #FAFAFA);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-6, 16px);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

/* Contact section buttons */
.contact-buttons {
    display: flex;
    gap: var(--geist-space-3, 12px);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--geist-space-5, 20px);
}

/* Try / demo section */
.demo-card {
    background: var(--geist-background, #fff);
    border: 1px solid var(--geist-accents-3, #E4E4E7);
    border-radius: var(--geist-radius-5, 12px);
    overflow: hidden;
}
.demo-card-header {
    padding: var(--geist-space-4, 16px) var(--geist-space-5, 20px);
    border-bottom: 1px solid var(--geist-accents-2, #F4F4F5);
    background: var(--geist-background-secondary, #FAFAFA);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--geist-accents-5, #71717A);
}
.demo-card-body { padding: var(--geist-space-5, 20px); }
