/* ═══════════════════════════════════════════════════════════════
   Feature Detail Pages — tioo.com/features/<slug>/
   Premium Editorial Design: Playfair Display + DM Sans
   Palette: Cream surfaces, burgundy accent, warm borders
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,700&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Design Tokens (feat- scoped) ── */
:root {
    --fd-accent: #A63446;
    --fd-accent-hover: #C04B5C;
    --fd-accent-dark: #8A2A3A;
    --fd-accent-soft: rgba(166, 52, 70, 0.08);
    --fd-surface: #FAF9F6;
    --fd-surface-warm: #FFF7F0;
    --fd-white: #ffffff;
    --fd-text: #1A1A1F;
    --fd-text-sub: #52555C;
    --fd-text-muted: #8E9099;
    --fd-border: #E5E3DE;
    --fd-border-light: #F0EEE9;
    --fd-emerald: #22A96B;
    --fd-emerald-soft: rgba(34, 169, 107, 0.1);
    --fd-navy: #0D0E11;
    --fd-radius: 14px;
    --fd-radius-sm: 10px;
    --fd-radius-full: 100px;
    --fd-font-display: 'Playfair Display', Georgia, serif;
    --fd-font-body: 'DM Sans', 'Inter', system-ui, sans-serif;
    --fd-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Feature Page Hero ── */
.feat-hero {
    background: var(--fd-surface);
    color: var(--fd-text);
    padding: 72px 32px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.feat-hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 52, 70, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.feat-hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 52, 70, 0.03) 0%, transparent 70%);
    pointer-events: none;
}
.feat-hero .feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 20px;
    background: var(--fd-accent-soft);
    border: 1px solid rgba(166, 52, 70, 0.18);
    border-radius: var(--fd-radius-full);
    font-family: var(--fd-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fd-accent);
    margin-bottom: 20px;
}
.feat-hero h1 {
    font-family: var(--fd-font-display);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
    color: var(--fd-text);
    position: relative;
}
.feat-hero .feat-subtitle {
    font-family: var(--fd-font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--fd-text-sub);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ── Feature Content Container ── */
.feat-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Feature Section ── */
.feat-section {
    padding: 88px 32px;
}
.feat-section-alt {
    background: var(--fd-surface);
}
.feat-section-dark {
    background: var(--fd-navy);
    color: #fff;
}
.feat-section h2 {
    font-family: var(--fd-font-display);
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
    color: var(--fd-text);
}
.feat-section .feat-section-desc {
    font-family: var(--fd-font-body);
    font-size: 16px;
    color: var(--fd-text-sub);
    line-height: 1.75;
    margin: 0 0 44px;
    max-width: 700px;
}
.feat-section-dark h2 {
    color: #fff;
}
.feat-section-dark .feat-section-desc {
    color: rgba(255, 255, 255, 0.65);
}
.feat-section-centered h2,
.feat-section-centered .feat-section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── Two Column Layout ── */
.feat-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.feat-two-col-reverse {
    direction: rtl;
}
.feat-two-col-reverse > * {
    direction: ltr;
}

/* ── Feature Cards Grid ── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feat-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.feat-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ── Feature Card ── */
.feat-card {
    background: var(--fd-white);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius);
    padding: 32px 28px;
    transition: box-shadow 0.3s var(--fd-ease), transform 0.3s var(--fd-ease);
}
.feat-card:hover {
    box-shadow: 0 16px 40px rgba(26, 26, 31, 0.08);
    transform: translateY(-3px);
}
.feat-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--fd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}
.feat-card-icon.icon-teal { background: var(--fd-accent-soft); color: var(--fd-accent); }
.feat-card-icon.icon-amber { background: rgba(166, 52, 70, 0.1); color: var(--fd-accent); }
.feat-card-icon.icon-green { background: var(--fd-emerald-soft); color: var(--fd-emerald); }
.feat-card-icon.icon-blue { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.feat-card-icon.icon-red { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.feat-card-icon.icon-purple { background: rgba(139, 92, 246, 0.08); color: #8b5cf6; }
.feat-card h3 {
    font-family: var(--fd-font-body);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--fd-text);
}
.feat-card p {
    font-family: var(--fd-font-body);
    font-size: 14px;
    color: var(--fd-text-sub);
    line-height: 1.7;
    margin: 0;
}

/* ── Bordered Feature Card (with top accent) ── */
.feat-card-accent {
    border-top: 3px solid var(--fd-accent);
}
.feat-card-accent.accent-amber { border-top-color: var(--fd-accent); }
.feat-card-accent.accent-green { border-top-color: var(--fd-emerald); }
.feat-card-accent.accent-blue { border-top-color: #3b82f6; }
.feat-card-accent.accent-red { border-top-color: #ef4444; }
.feat-card-accent.accent-purple { border-top-color: #8b5cf6; }

/* ── Feature List (text items with check marks) ── */
.feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    font-family: var(--fd-font-body);
    font-size: 15px;
    color: var(--fd-text-sub);
    line-height: 1.65;
    border-bottom: 1px solid var(--fd-border-light);
}
.feat-list li:last-child {
    border-bottom: none;
}
.feat-list .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--fd-emerald-soft);
    color: var(--fd-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}
.feat-section-dark .feat-list li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.feat-section-dark .feat-list .check {
    background: rgba(34, 169, 107, 0.15);
}

/* ── Feature Stat Strip ── */
.feat-stats {
    display: flex;
    justify-content: center;
    gap: 52px;
    padding: 44px 32px;
    background: var(--fd-white);
    border-top: 1px solid var(--fd-border);
    border-bottom: 1px solid var(--fd-border);
}
.feat-stat {
    text-align: center;
}
.feat-stat .num {
    font-family: var(--fd-font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--fd-accent);
    line-height: 1;
    margin-bottom: 6px;
}
.feat-stat .label {
    font-family: var(--fd-font-body);
    font-size: 13px;
    color: var(--fd-text-muted);
    font-weight: 500;
}

/* ── Inline Highlight Box ── */
.feat-highlight {
    background: var(--fd-surface-warm);
    border: 1px solid var(--fd-border-light);
    border-radius: var(--fd-radius);
    padding: 36px;
    margin: 36px 0;
}
.feat-highlight h3 {
    font-family: var(--fd-font-display);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--fd-text);
}
.feat-highlight p {
    font-family: var(--fd-font-body);
    font-size: 15px;
    color: var(--fd-text-sub);
    line-height: 1.75;
    margin: 0;
}

/* ── Process Flow (horizontal steps) ── */
.feat-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}
.feat-flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 16px;
}
.feat-flow-step::after {
    content: "";
    position: absolute;
    top: 24px;
    right: -2px;
    width: calc(100% - 48px);
    height: 2px;
    background: var(--fd-border);
    left: calc(50% + 24px);
}
.feat-flow-step:last-child::after {
    display: none;
}
.feat-flow-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--fd-accent);
    color: #fff;
    font-family: var(--fd-font-display);
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.feat-flow-step h4 {
    font-family: var(--fd-font-body);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--fd-text);
}
.feat-flow-step p {
    font-family: var(--fd-font-body);
    font-size: 13px;
    color: var(--fd-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ── CSS Illustrations: Mock UI Elements ── */

/* Phone Mockup */
.mock-phone {
    width: 280px;
    margin: 0 auto;
    background: var(--fd-white);
    border-radius: 32px;
    border: 3px solid var(--fd-text);
    padding: 12px;
    box-shadow: 0 24px 64px rgba(26, 26, 31, 0.12);
    position: relative;
}
.mock-phone::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: var(--fd-border);
    border-radius: 10px;
}
.mock-phone-screen {
    background: var(--fd-surface);
    border-radius: 22px;
    overflow: hidden;
    min-height: 400px;
}
.mock-phone-header {
    background: var(--fd-accent);
    color: #fff;
    padding: 24px 16px 14px;
    font-family: var(--fd-font-body);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Browser Mockup */
.mock-browser {
    background: var(--fd-white);
    border-radius: var(--fd-radius-sm);
    border: 1px solid var(--fd-border);
    box-shadow: 0 20px 60px rgba(26, 26, 31, 0.1);
    overflow: hidden;
    max-width: 520px;
    margin: 0 auto;
}
.mock-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--fd-surface);
    border-bottom: 1px solid var(--fd-border);
}
.mock-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fd-border);
}
.mock-browser-dot.red { background: #ef4444; }
.mock-browser-dot.yellow { background: #f59e0b; }
.mock-browser-dot.green { background: #22c55e; }
.mock-browser-url {
    flex: 1;
    background: var(--fd-border-light);
    border-radius: 6px;
    padding: 4px 12px;
    font-family: var(--fd-font-body);
    font-size: 11px;
    color: var(--fd-text-muted);
    margin-left: 8px;
}
.mock-browser-body {
    padding: 20px;
    min-height: 300px;
}

/* Dashboard Mockup */
.mock-dashboard {
    background: var(--fd-surface);
    border-radius: var(--fd-radius-sm);
    border: 1px solid var(--fd-border);
    box-shadow: 0 20px 52px rgba(26, 26, 31, 0.08);
    overflow: hidden;
    max-width: 520px;
    margin: 0 auto;
}
.mock-dash-header {
    background: var(--fd-accent);
    color: #fff;
    padding: 14px 20px;
    font-family: var(--fd-font-body);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mock-dash-body {
    padding: 20px;
}

/* Stat Cards Row */
.mock-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.mock-stat-card {
    background: var(--fd-white);
    border: 1px solid var(--fd-border);
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
}
.mock-stat-num {
    font-family: var(--fd-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--fd-accent);
    line-height: 1;
}
.mock-stat-label {
    font-family: var(--fd-font-body);
    font-size: 10px;
    color: var(--fd-text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Mock Table */
.mock-table {
    width: 100%;
    background: var(--fd-white);
    border-radius: 8px;
    border: 1px solid var(--fd-border);
    overflow: hidden;
    font-family: var(--fd-font-body);
    font-size: 12px;
}
.mock-table-head {
    display: flex;
    background: var(--fd-surface);
    border-bottom: 1px solid var(--fd-border);
    padding: 8px 12px;
    font-weight: 600;
    color: var(--fd-text-muted);
    gap: 8px;
}
.mock-table-row {
    display: flex;
    padding: 10px 12px;
    border-bottom: 1px solid var(--fd-border-light);
    color: var(--fd-text-sub);
    gap: 8px;
    align-items: center;
}
.mock-table-row:last-child {
    border-bottom: none;
}
.mock-table-cell {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mock Chat Messages */
.mock-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}
.mock-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-family: var(--fd-font-body);
    font-size: 12px;
    line-height: 1.5;
}
.mock-msg-in {
    background: var(--fd-white);
    border: 1px solid var(--fd-border);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: var(--fd-text-sub);
}
.mock-msg-out {
    background: var(--fd-accent);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.mock-msg-channel {
    font-size: 10px;
    color: var(--fd-text-muted);
    margin-bottom: 4px;
}

/* Mock Calendar Grid */
.mock-calendar {
    background: var(--fd-white);
    border-radius: var(--fd-radius-sm);
    border: 1px solid var(--fd-border);
    overflow: hidden;
}
.mock-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--fd-surface);
    border-bottom: 1px solid var(--fd-border);
    font-family: var(--fd-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--fd-text);
}
.mock-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    padding: 6px;
    gap: 2px;
    font-family: var(--fd-font-body);
    font-size: 10px;
    color: var(--fd-text-muted);
    border-bottom: 1px solid var(--fd-border-light);
}
.mock-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 6px;
}
.mock-cal-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd-font-body);
    font-size: 11px;
    border-radius: 6px;
    color: var(--fd-text-sub);
}
.mock-cal-cell.booked {
    background: var(--fd-accent-soft);
    color: var(--fd-accent);
    font-weight: 600;
}
.mock-cal-cell.available {
    background: var(--fd-emerald-soft);
}
.mock-cal-cell.today {
    background: var(--fd-accent);
    color: #fff;
    font-weight: 700;
}

/* Mock Invoice */
.mock-invoice {
    background: var(--fd-white);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-sm);
    padding: 24px;
    box-shadow: 0 12px 36px rgba(26, 26, 31, 0.06);
    max-width: 400px;
    margin: 0 auto;
}
.mock-invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--fd-border-light);
}
.mock-invoice-logo {
    font-family: var(--fd-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--fd-accent);
}
.mock-invoice-meta {
    text-align: right;
    font-family: var(--fd-font-body);
    font-size: 11px;
    color: var(--fd-text-muted);
    line-height: 1.6;
}
.mock-invoice-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-family: var(--fd-font-body);
    font-size: 13px;
    color: var(--fd-text-sub);
    border-bottom: 1px solid var(--fd-border-light);
}
.mock-invoice-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 0;
    font-family: var(--fd-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--fd-text);
}

/* Mock Room Cards */
.mock-room-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.mock-room-card {
    background: var(--fd-white);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-sm);
    overflow: hidden;
}
.mock-room-img {
    height: 80px;
    background: linear-gradient(135deg, #F0EEE9 0%, #E5E3DE 100%);
    position: relative;
}
.mock-room-img .room-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.mock-room-body {
    padding: 10px 12px;
}
.mock-room-name {
    font-family: var(--fd-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--fd-text);
    margin-bottom: 2px;
}
.mock-room-price {
    font-family: var(--fd-font-body);
    font-size: 11px;
    color: var(--fd-accent);
    font-weight: 600;
}
.mock-room-meta {
    font-family: var(--fd-font-body);
    font-size: 10px;
    color: var(--fd-text-muted);
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

/* Mock Cleaning Checklist */
.mock-checklist {
    background: var(--fd-white);
    border-radius: 8px;
    border: 1px solid var(--fd-border);
    overflow: hidden;
}
.mock-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--fd-border-light);
    font-family: var(--fd-font-body);
    font-size: 12px;
    color: var(--fd-text-sub);
}
.mock-check-item:last-child { border-bottom: none; }
.mock-check-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid var(--fd-border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mock-check-box.checked {
    background: var(--fd-emerald);
    border-color: var(--fd-emerald);
    color: #fff;
    font-size: 10px;
}
.mock-check-item.done {
    color: var(--fd-text-muted);
    text-decoration: line-through;
}

/* Mock Team Org Chart */
.mock-org-chart {
    text-align: center;
}
.mock-org-node {
    display: inline-block;
    background: var(--fd-white);
    border: 1px solid var(--fd-border);
    border-radius: 8px;
    padding: 10px 18px;
    font-family: var(--fd-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--fd-text-sub);
    position: relative;
    box-shadow: 0 2px 8px rgba(26, 26, 31, 0.05);
}
.mock-org-node.primary {
    background: var(--fd-accent);
    color: #fff;
    border-color: var(--fd-accent);
}
.mock-org-level {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    position: relative;
}
.mock-org-level::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 1px;
    height: 10px;
    background: var(--fd-border);
}
.mock-org-connector {
    height: 20px;
    position: relative;
}
.mock-org-connector::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 20px;
    background: var(--fd-border);
}

/* Mock Bar Chart */
.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding: 0 8px;
}
.mock-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    position: relative;
    min-height: 10px;
    transition: height 0.3s ease;
}
.mock-bar .bar-label {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--fd-font-body);
    font-size: 9px;
    color: var(--fd-text-muted);
    white-space: nowrap;
}
.mock-bar-teal { background: rgba(166, 52, 70, 0.6); }
.mock-bar-amber { background: rgba(166, 52, 70, 0.35); }
.mock-bar-green { background: rgba(34, 169, 107, 0.6); }

/* Mock Shield (Security) */
.mock-shield {
    width: 200px;
    height: 240px;
    margin: 0 auto;
    position: relative;
}
.mock-shield-shape {
    width: 160px;
    height: 190px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--fd-accent) 0%, var(--fd-accent-dark) 100%);
    border-radius: 80px 80px 16px 16px;
    clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
    box-shadow: 0 12px 40px rgba(166, 52, 70, 0.25);
}
.mock-shield-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.mock-shield-badge {
    padding: 4px 10px;
    background: var(--fd-emerald-soft);
    border: 1px solid rgba(34, 169, 107, 0.2);
    border-radius: 12px;
    font-family: var(--fd-font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--fd-emerald);
}

/* Mock Lock/PIN Display */
.mock-pin-display {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}
.mock-pin-digit {
    width: 48px;
    height: 56px;
    background: var(--fd-white);
    border: 2px solid var(--fd-accent);
    border-radius: var(--fd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--fd-accent);
    box-shadow: 0 4px 12px rgba(166, 52, 70, 0.08);
}

/* Mock Website Preview */
.mock-website {
    background: var(--fd-white);
    border-radius: var(--fd-radius-sm);
    border: 1px solid var(--fd-border);
    box-shadow: 0 20px 52px rgba(26, 26, 31, 0.08);
    overflow: hidden;
}
.mock-site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid var(--fd-border-light);
}
.mock-site-logo {
    font-family: var(--fd-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--fd-accent);
}
.mock-site-links {
    display: flex;
    gap: 12px;
    font-family: var(--fd-font-body);
    font-size: 11px;
    color: var(--fd-text-muted);
}
.mock-site-hero {
    background: var(--fd-surface);
    color: var(--fd-text);
    padding: 30px 16px;
    text-align: center;
}
.mock-site-hero h4 {
    font-family: var(--fd-font-display);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--fd-text);
}
.mock-site-hero p {
    font-family: var(--fd-font-body);
    font-size: 11px;
    color: var(--fd-text-sub);
    margin: 0 0 12px;
}
.mock-site-btn {
    display: inline-block;
    padding: 6px 16px;
    background: var(--fd-accent);
    color: #fff;
    border-radius: var(--fd-radius-full);
    font-family: var(--fd-font-body);
    font-size: 11px;
    font-weight: 600;
}
.mock-site-rooms {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.mock-site-room {
    border: 1px solid var(--fd-border-light);
    border-radius: 6px;
    overflow: hidden;
}
.mock-site-room-img {
    height: 50px;
    background: linear-gradient(135deg, #F0EEE9 0%, #E5E3DE 100%);
}
.mock-site-room-info {
    padding: 6px 8px;
    font-family: var(--fd-font-body);
    font-size: 10px;
    color: var(--fd-text-sub);
    font-weight: 500;
}

/* ── Features Overview Page Card Links ── */
.feat-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.feat-overview-card {
    display: block;
    background: var(--fd-white);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius);
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s var(--fd-ease), transform 0.3s var(--fd-ease), border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feat-overview-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--fd-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--fd-ease);
}
.feat-overview-card:hover {
    box-shadow: 0 16px 40px rgba(26, 26, 31, 0.08);
    transform: translateY(-4px);
    border-color: var(--fd-border);
    text-decoration: none;
    color: inherit;
}
.feat-overview-card:hover::before {
    transform: scaleX(1);
}
.feat-overview-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.feat-overview-card h3 {
    font-family: var(--fd-font-body);
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--fd-text);
}
.feat-overview-card p {
    font-family: var(--fd-font-body);
    font-size: 14px;
    color: var(--fd-text-sub);
    line-height: 1.7;
    margin: 0 0 16px;
}
.feat-overview-link {
    font-family: var(--fd-font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--fd-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.feat-overview-link::after {
    content: "\2192";
    transition: transform 0.2s ease;
}
.feat-overview-card:hover .feat-overview-link::after {
    transform: translateX(4px);
}

/* Priority badge on overview cards */
.feat-priority {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 3px 10px;
    border-radius: 12px;
    font-family: var(--fd-font-body);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.feat-priority.core {
    background: var(--fd-accent-soft);
    color: var(--fd-accent);
}

/* ── Breadcrumb ── */
.feat-breadcrumb {
    padding: 16px 32px;
    background: var(--fd-white);
    border-bottom: 1px solid var(--fd-border-light);
}
.feat-breadcrumb-inner {
    max-width: 1100px;
    margin: 0 auto;
    font-family: var(--fd-font-body);
    font-size: 13px;
    color: var(--fd-text-muted);
}
.feat-breadcrumb-inner a {
    color: var(--fd-text-sub);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}
.feat-breadcrumb-inner a:hover {
    color: var(--fd-accent);
    text-decoration: none;
}
.feat-breadcrumb-inner .sep {
    margin: 0 8px;
    color: var(--fd-border);
}

/* ── Quote / Testimonial Block ── */
.feat-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
}
.feat-quote blockquote {
    font-family: var(--fd-font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--fd-text);
    font-style: italic;
    margin: 0 0 16px;
    position: relative;
}
.feat-quote blockquote::before {
    content: "\201C";
    font-size: 60px;
    color: rgba(166, 52, 70, 0.12);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}
.feat-quote cite {
    font-family: var(--fd-font-body);
    font-size: 14px;
    color: var(--fd-text-muted);
    font-style: normal;
}

/* ── CTA Banner (reused in feature detail pages) ── */
.feat-cta {
    text-align: center;
    padding: 72px 32px;
    background: var(--fd-navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.feat-cta::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 52, 70, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.feat-cta h2 {
    font-family: var(--fd-font-display);
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
    letter-spacing: -0.3px;
}
.feat-cta p {
    font-family: var(--fd-font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.feat-cta .mkt-hero-ctas {
    justify-content: center;
}

/* ── Comparison Table ── */
.feat-comparison {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-sm);
    overflow: hidden;
}
.feat-comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--fd-surface);
    padding: 12px 20px;
    font-family: var(--fd-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--fd-text-muted);
    border-bottom: 1px solid var(--fd-border);
}
.feat-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 12px 20px;
    font-family: var(--fd-font-body);
    font-size: 14px;
    color: var(--fd-text-sub);
    border-bottom: 1px solid var(--fd-border-light);
    align-items: center;
}
.feat-comparison-row:last-child { border-bottom: none; }
.feat-comparison-row .yes {
    color: var(--fd-emerald);
    font-weight: 600;
}
.feat-comparison-row .no {
    color: var(--fd-border);
}

/* ── Features Page Header (compact catalog header) ── */
.feat-page-header {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--fd-navy);
}
.feat-hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.feat-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.feat-hero-shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--fd-accent) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: featShapeFloat 8s ease-in-out infinite;
}
.feat-hero-shape--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -120px;
    left: -50px;
    animation: featShapeFloat 10s ease-in-out infinite reverse;
}
.feat-hero-shape--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: featShapeFloat 12s ease-in-out infinite 2s;
}
@keyframes featShapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
}
.feat-page-header-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 56px 32px 48px;
}
.feat-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(166, 52, 70, 0.1);
    border: 1px solid rgba(166, 52, 70, 0.25);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fd-accent);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}
.feat-hero-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fd-accent);
    animation: featPulse 2s ease-in-out infinite;
}
@keyframes featPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.feat-page-header-inner h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -1px;
    color: #fff;
}
.feat-page-header-inner .subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    margin: 0 auto;
}

/* ── Feature Count Strip ── */
.feat-count-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 28px 32px;
    background: #fff;
    border-bottom: 1px solid var(--fd-border);
}
.feat-count-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
}
.feat-count-item strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--fd-accent);
    letter-spacing: -1px;
    line-height: 1;
}
.feat-count-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--fd-text-sub);
}
.feat-count-divider {
    width: 1px;
    height: 36px;
    background: var(--fd-border);
}

/* ── Zigzag Feature Layout ── */
.feat-zigzag {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.feat-zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 16px;
    border-radius: 20px;
    transition: background 0.3s ease;
}
.feat-zigzag-row:hover {
    background: var(--fd-surface);
    text-decoration: none;
    color: inherit;
}
.feat-zigzag-row--reverse {
    direction: rtl;
}
.feat-zigzag-row--reverse > * {
    direction: ltr;
}
.feat-zigzag-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.feat-zigzag-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feat-zigzag-row:hover .feat-zigzag-img img {
    transform: scale(1.04);
}
.feat-zigzag-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--fd-accent);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}
.feat-zigzag-text h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--fd-text);
    letter-spacing: -0.5px;
}
.feat-zigzag-text p {
    font-size: 16px;
    color: var(--fd-text-sub);
    line-height: 1.7;
    margin: 0 0 16px;
}
.feat-zigzag-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.feat-zigzag-list li {
    font-size: 14px;
    color: var(--fd-text-sub);
    padding: 5px 0 5px 24px;
    position: relative;
    line-height: 1.5;
}
.feat-zigzag-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
}
.feat-zigzag-list li::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 13px;
    width: 4px;
    height: 6px;
    border: solid var(--fd-emerald);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}
.feat-zigzag-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--fd-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}
.feat-zigzag-row:hover .feat-zigzag-link {
    color: var(--fd-accent);
    gap: 8px;
}

/* ── Integrations Section ── */
.feat-integrations {
    padding: 80px 32px;
    background: #fff;
    border-top: 1px solid var(--fd-border);
    border-bottom: 1px solid var(--fd-border);
}
.feat-integrations h2 {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 48px;
    letter-spacing: -0.5px;
    color: var(--fd-text);
}
.feat-integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.feat-integration {
    text-align: center;
    padding: 24px 12px;
    border-radius: 12px;
    border: 1px solid var(--fd-border-light);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.feat-integration:hover {
    border-color: var(--fd-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.feat-integration-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--fd-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--fd-accent);
}
.feat-integration strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--fd-text);
    margin-bottom: 2px;
}
.feat-integration span {
    font-size: 12px;
    color: var(--fd-text-muted);
}
.feat-integrations-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--fd-text-muted);
    font-weight: 500;
}

/* ── "Replaces" Comparison Grid ── */
.feat-replaces-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}
.feat-replaces-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--fd-border);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.feat-replaces-card:hover {
    border-color: var(--fd-accent);
    box-shadow: 0 4px 16px rgba(166, 52, 70, 0.08);
}
.feat-replaces-old {
    font-size: 14px;
    color: var(--fd-text-muted);
    text-decoration: line-through;
    flex: 1;
    min-width: 0;
}
.feat-replaces-arrow {
    flex-shrink: 0;
    color: var(--fd-accent);
    display: flex;
    align-items: center;
}
.feat-replaces-new {
    font-size: 14px;
    font-weight: 600;
    color: var(--fd-text);
    flex: 1.3;
    min-width: 0;
}

/* ── Operations Grid (cards with images) ── */
.feat-ops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}
.feat-ops-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--fd-border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.feat-ops-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}
.feat-ops-img {
    height: 200px;
    overflow: hidden;
}
.feat-ops-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.feat-ops-card:hover .feat-ops-img img {
    transform: scale(1.05);
}
.feat-ops-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.feat-ops-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.feat-ops-icon.icon-green { background: rgba(16, 185, 129, 0.1); color: var(--fd-emerald); }
.feat-ops-icon.icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.feat-ops-icon.icon-amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.feat-ops-icon.icon-teal { background: var(--fd-accent-soft); color: var(--fd-accent); }
.feat-ops-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--fd-text);
    letter-spacing: -0.02em;
}
.feat-ops-body p {
    font-size: 15px;
    color: var(--fd-text-sub);
    line-height: 1.65;
    margin: 0 0 16px;
    flex: 1;
}
.feat-ops-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--fd-accent);
    transition: gap 0.2s;
}
.feat-ops-card:hover .feat-ops-link {
    color: var(--fd-accent);
}

/* ── Advanced Features Grid (dark background glass cards) ── */
.feat-advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.feat-advanced-card {
    display: block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.feat-advanced-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: inherit;
}
.feat-advanced-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(166, 52, 70, 0.12);
    color: var(--fd-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feat-advanced-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
    letter-spacing: -0.02em;
}
.feat-advanced-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin: 0 0 16px;
}
.feat-advanced-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--fd-accent);
    transition: color 0.2s;
}
.feat-advanced-card:hover .feat-advanced-link {
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .feat-two-col { grid-template-columns: 1fr; gap: 40px; }
    .feat-two-col-reverse { direction: ltr; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .feat-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .feat-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .feat-flow { flex-direction: column; gap: 24px; }
    .feat-flow-step::after { display: none; }
    .feat-stats { flex-wrap: wrap; gap: 24px; }
    .feat-hero h1 { font-size: 34px; }
    .feat-hero { padding: 56px 24px 44px; }
    .feat-section h2 { font-size: 28px; }
    .feat-section { padding: 64px 24px; }
    /* Features page header tablet */
    .feat-page-header-inner h1 { font-size: 30px; }
    .feat-page-header-inner { padding: 44px 24px 40px; }
    /* Zigzag tablet */
    .feat-zigzag-row { grid-template-columns: 1fr; gap: 24px; }
    .feat-zigzag-row--reverse { direction: ltr; }
    .feat-zigzag-text h3 { font-size: 22px; }
    /* Count strip tablet */
    .feat-count-strip { flex-wrap: wrap; gap: 16px; }
    .feat-count-item { padding: 0 20px; }
    .feat-count-divider { display: none; }
    /* Ops grid tablet */
    .feat-ops-grid { grid-template-columns: 1fr; max-width: 560px; padding: 0 24px; }
    /* Advanced grid tablet */
    .feat-advanced-grid { grid-template-columns: repeat(2, 1fr); }
    /* Integrations tablet */
    .feat-integrations-grid { grid-template-columns: repeat(3, 1fr); }
    /* Replaces tablet */
    .feat-replaces-grid { grid-template-columns: 1fr; max-width: 540px; }
}
@media (max-width: 640px) {
    .feat-grid { grid-template-columns: 1fr; }
    .feat-grid-2 { grid-template-columns: 1fr; }
    .feat-grid-4 { grid-template-columns: 1fr; }
    .feat-overview-grid { grid-template-columns: 1fr; }
    .feat-hero h1 { font-size: 28px; }
    .feat-hero { padding: 44px 20px 36px; }
    .feat-hero .feat-subtitle { font-size: 15px; }
    .feat-hero .feat-badge { font-size: 11px; padding: 5px 14px; }
    .feat-cta { padding: 56px 20px; }
    .feat-cta h2 { font-size: 24px; }
    .feat-section { padding: 52px 20px; }
    .feat-section h2 { font-size: 24px; }
    .feat-stats { gap: 20px; padding: 32px 20px; }
    .feat-stat .num { font-size: 28px; }
    .feat-highlight { padding: 24px 20px; }
    .mock-phone { width: 240px; }
    .mock-browser { max-width: 100%; }
    .mock-room-grid { grid-template-columns: 1fr; }
    .feat-comparison-header,
    .feat-comparison-row { grid-template-columns: 2fr 1fr 1fr; font-size: 12px; padding: 10px 12px; }
    /* Features page header mobile — compact, content-first */
    .feat-page-header-inner { padding: 28px 20px 24px; }
    .feat-page-header-inner h1 { font-size: 22px; letter-spacing: -0.3px; margin-bottom: 8px; }
    .feat-page-header-inner .subtitle { font-size: 13px; line-height: 1.5; }
    .feat-hero-pill { font-size: 11px; padding: 4px 12px; margin-bottom: 12px; gap: 6px; }
    .feat-hero-shapes { display: none; }
    /* Count strip mobile */
    .feat-count-strip { padding: 20px; gap: 12px; }
    .feat-count-item { padding: 0 12px; }
    .feat-count-item strong { font-size: 22px; }
    .feat-count-item span { font-size: 12px; }
    /* Zigzag mobile */
    .feat-zigzag { padding: 0 20px; gap: 24px; }
    .feat-zigzag-row { grid-template-columns: 1fr; gap: 20px; padding: 12px; }
    .feat-zigzag-row--reverse { direction: ltr; }
    .feat-zigzag-text h3 { font-size: 20px; }
    .feat-zigzag-text p { font-size: 15px; }
    /* Ops grid mobile */
    .feat-ops-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .feat-ops-img { height: 160px; }
    .feat-ops-body { padding: 20px; }
    .feat-ops-body h3 { font-size: 18px; }
    /* Advanced grid mobile */
    .feat-advanced-grid { grid-template-columns: 1fr; }
    .feat-advanced-card { padding: 24px 20px; }
    /* Integrations mobile */
    .feat-integrations { padding: 60px 20px; }
    .feat-integrations h2 { font-size: 24px; margin-bottom: 32px; }
    .feat-integrations-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    /* Replaces mobile */
    .feat-replaces-grid { grid-template-columns: 1fr; }
    .feat-replaces-card { padding: 16px 18px; gap: 10px; }
    .feat-replaces-old, .feat-replaces-new { font-size: 13px; }
}

/* ── Accessibility — Focus Visible ── */
.feat-breadcrumb-inner a:focus-visible,
.feat-cta-btn:focus-visible,
.feat-cta-btn-outline:focus-visible {
    outline: 2px solid var(--fd-accent);
    outline-offset: 3px;
    border-radius: 4px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES CATALOG PAGE — Premium redesign (fp- prefix)
   Matches homepage design system: Playfair Display + DM Sans, burgundy accent
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design tokens (scoped to page) ── */
.page-features {
    --fp-accent: #A63446;
    --fp-accent-hover: #C04B5C;
    --fp-accent-soft: rgba(166, 52, 70, 0.08);
    --fp-navy: #0D0E11;
    --fp-navy-mid: #15161A;
    --fp-surface: #FAF9F6;
    --fp-surface-warm: #FFF7F0;
    --fp-text: #1A1A1F;
    --fp-text-sub: #52555C;
    --fp-text-muted: #8E9099;
    --fp-border: #E5E3DE;
    --fp-font-display: 'Playfair Display', Georgia, serif;
    --fp-font-body: 'DM Sans', 'Inter', system-ui, sans-serif;
    --fp-max-w: 1200px;
    --fp-radius: 16px;
    --fp-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Scroll reveal ── */
.page-features [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--fp-ease), transform 0.7s var(--fp-ease);
}
.page-features [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Shared eyebrow ── */
.fp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fp-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fp-accent);
    margin-bottom: 16px;
}
.fp-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--fp-accent);
    border-radius: 1px;
}
.fp-eyebrow--light {
    color: rgba(255, 255, 255, 0.5);
}
.fp-eyebrow--light::before {
    background: rgba(255, 255, 255, 0.25);
}

/* ── Container ── */
.fp-container {
    max-width: var(--fp-max-w);
    margin: 0 auto;
    padding: 0 32px;
}

/* ═══════════════════════════════════════
   HERO — Light, editorial
   ═══════════════════════════════════════ */
.fp-hero {
    padding: 100px 32px 80px;
    text-align: center;
    background: var(--fp-surface);
    position: relative;
    overflow: hidden;
}
.fp-hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 52, 70, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.fp-hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 52, 70, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.fp-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.fp-hero h1 {
    font-family: var(--fp-font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--fp-text);
    margin: 0 0 20px;
}
.fp-hero h1 em {
    font-style: italic;
    color: var(--fp-accent);
}
.fp-hero-sub {
    font-family: var(--fp-font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--fp-text-sub);
    max-width: 560px;
    margin: 0 auto 36px;
}
.fp-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.fp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--fp-font-body);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(160deg, #C04B5C 0%, var(--fp-accent) 50%, #8A2A3A 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(166, 52, 70, 0.3);
}
.fp-btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(166, 52, 70, 0.4);
    color: #fff;
    text-decoration: none;
}
.fp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--fp-font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--fp-text);
    background: #fff;
    border: 1.5px solid var(--fp-border);
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.fp-btn-secondary:hover {
    border-color: var(--fp-accent);
    color: var(--fp-accent);
    text-decoration: none;
}
.fp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--fp-font-body);
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.fp-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

/* ═══════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════ */
.fp-stats-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 28px 32px;
    background: #fff;
    border-bottom: 1px solid var(--fp-border);
}
.fp-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
}
.fp-stat strong {
    font-family: var(--fp-font-body);
    font-size: 30px;
    font-weight: 800;
    color: var(--fp-text);
    letter-spacing: -1px;
    line-height: 1;
}
.fp-stat span {
    font-family: var(--fp-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--fp-text-muted);
}
.fp-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--fp-border);
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.fp-section {
    padding: 100px 0;
    background: #fff;
}
.fp-section--warm {
    background: var(--fp-surface);
}
.fp-section--dark {
    background: linear-gradient(160deg, #0D0E11 0%, #15161A 50%, #1A1B20 100%);
    color: #fff;
}
.fp-section--dark .fp-container h2 {
    color: #fff;
}
.fp-section--dark .fp-section-sub {
    color: rgba(255, 255, 255, 0.55);
}
.fp-container h2 {
    font-family: var(--fp-font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--fp-text);
    margin: 0 0 16px;
}
.fp-section-sub {
    font-family: var(--fp-font-body);
    font-size: 17px;
    color: var(--fp-text-sub);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 0 56px;
}

/* ═══════════════════════════════════════
   CORE FEATURES — Zigzag
   ═══════════════════════════════════════ */
.fp-features {
    max-width: var(--fp-max-w);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.fp-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    border-radius: 24px;
    transition: background 0.3s ease;
}
.fp-feature:hover {
    background: rgba(166, 52, 70, 0.03);
    text-decoration: none;
    color: inherit;
}
.fp-feature--reverse {
    direction: rtl;
}
.fp-feature--reverse > * {
    direction: ltr;
}
.fp-feature-img {
    border-radius: var(--fp-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.fp-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--fp-ease);
}
.fp-feature:hover .fp-feature-img img {
    transform: scale(1.04);
}
.fp-feature-num {
    font-family: var(--fp-font-body);
    font-size: 13px;
    font-weight: 800;
    color: var(--fp-accent);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.fp-feature-body h3 {
    font-family: var(--fp-font-display);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--fp-text);
    letter-spacing: -0.5px;
}
.fp-feature-body p {
    font-family: var(--fp-font-body);
    font-size: 16px;
    color: var(--fp-text-sub);
    line-height: 1.7;
    margin: 0 0 18px;
}
.fp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.fp-feature-list li {
    position: relative;
    padding-left: 22px;
    font-family: var(--fp-font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--fp-text);
    line-height: 1.6;
    margin-bottom: 8px;
}
.fp-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fp-accent);
    opacity: 0.3;
}
.fp-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--fp-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--fp-accent);
    transition: gap 0.25s ease;
}
.fp-feature:hover .fp-feature-link {
    gap: 10px;
}

/* ═══════════════════════════════════════
   OPERATIONS — Card grid
   ═══════════════════════════════════════ */
.fp-ops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: var(--fp-max-w);
    margin: 0 auto;
    padding: 0 32px;
}
.fp-ops-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s var(--fp-ease), box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--fp-border);
}
.fp-ops-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
}
.fp-ops-img {
    height: 200px;
    overflow: hidden;
}
.fp-ops-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--fp-ease);
}
.fp-ops-card:hover .fp-ops-img img {
    transform: scale(1.05);
}
.fp-ops-body {
    padding: 28px;
}
.fp-ops-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.fp-ops-icon--green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.fp-ops-icon--blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.fp-ops-icon--amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.fp-ops-icon--rose { background: rgba(166, 52, 70, 0.1); color: var(--fp-accent); }
.fp-ops-body h3 {
    font-family: var(--fp-font-display);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--fp-text);
    letter-spacing: -0.3px;
}
.fp-ops-body p {
    font-family: var(--fp-font-body);
    font-size: 15px;
    color: var(--fp-text-sub);
    line-height: 1.65;
    margin: 0 0 16px;
}
.fp-ops-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--fp-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--fp-accent);
    transition: gap 0.25s ease;
}
.fp-ops-card:hover .fp-ops-link {
    gap: 8px;
}

/* ═══════════════════════════════════════
   ADVANCED — Dark icon cards
   ═══════════════════════════════════════ */
.fp-advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.fp-advanced-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--fp-ease);
}
.fp-advanced-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(166, 52, 70, 0.3);
    transform: translateY(-3px);
    text-decoration: none;
    color: #fff;
}
.fp-advanced-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(166, 52, 70, 0.15);
    color: var(--fp-accent-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.fp-advanced-card h3 {
    font-family: var(--fp-font-display);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}
.fp-advanced-card p {
    font-family: var(--fp-font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin: 0 0 16px;
}
.fp-advanced-link {
    font-family: var(--fp-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--fp-accent-hover);
    transition: color 0.2s ease;
}
.fp-advanced-card:hover .fp-advanced-link {
    color: #fff;
}

/* ═══════════════════════════════════════
   INTEGRATIONS
   ═══════════════════════════════════════ */
.fp-integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
}
.fp-integration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 20px;
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    transition: transform 0.3s var(--fp-ease), box-shadow 0.3s ease;
}
.fp-integration:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.fp-integration-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--fp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fp-text);
}
.fp-integration strong {
    font-family: var(--fp-font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--fp-text);
}
.fp-integration span {
    font-family: var(--fp-font-body);
    font-size: 13px;
    color: var(--fp-text-muted);
}

/* ═══════════════════════════════════════
   REPLACES
   ═══════════════════════════════════════ */
.fp-replaces-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 56px;
}
.fp-replaces-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--fp-border);
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fp-replaces-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.fp-replaces-old {
    font-family: var(--fp-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--fp-text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(166, 52, 70, 0.3);
    flex: 1;
}
.fp-replaces-arrow {
    flex-shrink: 0;
    color: var(--fp-accent);
    opacity: 0.5;
}
.fp-replaces-new {
    font-family: var(--fp-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--fp-text);
    flex: 1;
}

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.fp-cta {
    padding: 100px 32px;
    text-align: center;
    background: linear-gradient(160deg, #0D0E11 0%, #15161A 50%, #1A1B20 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.fp-cta::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 52, 70, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.fp-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.fp-cta h2 {
    font-family: var(--fp-font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 16px;
}
.fp-cta p {
    font-family: var(--fp-font-body);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin: 0 0 32px;
}
.fp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.fp-cta-note {
    display: block;
    margin-top: 20px;
    font-family: var(--fp-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════
   RESPONSIVE — Features catalog
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .fp-hero h1 { font-size: 42px; }
    .fp-container h2 { font-size: 36px; }
    .fp-advanced-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-integrations-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .fp-hero { padding: 80px 24px 60px; }
    .fp-hero h1 { font-size: 36px; letter-spacing: -1px; }
    .fp-hero-sub { font-size: 16px; }
    .fp-section { padding: 80px 0; }
    .fp-container { padding: 0 24px; }
    .fp-container h2 { font-size: 32px; }

    .fp-feature { grid-template-columns: 1fr; gap: 24px; }
    .fp-feature--reverse { direction: ltr; }

    .fp-ops-grid { grid-template-columns: 1fr; max-width: 560px; }

    .fp-stats-strip { flex-wrap: wrap; gap: 16px; }
    .fp-stat { padding: 0 24px; }
    .fp-stat-divider { display: none; }

    .fp-replaces-grid { grid-template-columns: 1fr; max-width: 540px; }
    .fp-integrations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .fp-hero { padding: 60px 20px 48px; }
    .fp-hero h1 { font-size: 30px; letter-spacing: -0.5px; }
    .fp-hero-sub { font-size: 15px; margin-bottom: 28px; }
    .fp-hero-actions { flex-direction: column; align-items: center; }
    .fp-section { padding: 64px 0; }
    .fp-container { padding: 0 20px; }
    .fp-container h2 { font-size: 28px; }
    .fp-section-sub { font-size: 15px; margin-bottom: 40px; }

    .fp-features { padding: 0 20px; gap: 20px; }
    .fp-feature { padding: 12px; gap: 20px; }
    .fp-feature-body h3 { font-size: 22px; }
    .fp-feature-body p { font-size: 15px; }

    .fp-ops-grid { padding: 0 20px; }
    .fp-ops-img { height: 160px; }
    .fp-ops-body { padding: 20px; }
    .fp-ops-body h3 { font-size: 20px; }

    .fp-advanced-grid { grid-template-columns: 1fr; }
    .fp-advanced-card { padding: 24px 20px; }

    .fp-integrations-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .fp-replaces-grid { max-width: 100%; }
    .fp-replaces-card { padding: 16px 18px; gap: 10px; }
    .fp-replaces-old, .fp-replaces-new { font-size: 13px; }

    .fp-cta { padding: 64px 20px; }
    .fp-cta h2 { font-size: 28px; }
    .fp-cta p { font-size: 15px; }
    .fp-cta-actions { flex-direction: column; align-items: center; }

    .fp-stats-strip { padding: 20px; gap: 12px; }
    .fp-stat { padding: 0 14px; }
    .fp-stat strong { font-size: 24px; }
    .fp-stat span { font-size: 12px; }
}
