/* Modern SaaS Landing Page Styles */

/* ========================================
   Design Tokens (CSS Custom Properties)
   ======================================== */
:root {
    --color-primary: #f05f40;
    --color-primary-dark: #e04a30;
    --color-primary-light: #ff6b4a;
    --color-text: #1a1a1a;
    --color-text-secondary: #4b5563;
    --color-text-muted: #6b7280;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-bg-subtle: #f8fafc;
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --z-tooltip: 100;
    --z-skip-link: 200;
    --z-navbar: 500;
    --z-modal-overlay: 900;
    --z-modal: 1000;
    --z-success: 1100;
}

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: var(--z-navbar);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo .logo-img {
    height: 35px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #f05f40;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f05f40;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: #e04a30;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(240, 95, 64, 0.3);
}

.btn-secondary {
    background: white;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-outline {
    background: transparent;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
}

/* Browser Mockup */
.mockup-browser {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.mockup-browser:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.browser-header {
    background: #f8fafc;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

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

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.browser-url {
    flex: 1;
    background: white;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.browser-content {
    padding: 20px;
}

/* Dashboard Preview */
.dashboard-preview {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    height: 400px;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-item {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: #f05f40;
    color: white;
}

.nav-item:hover {
    background: #e5e7eb;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-preview .metric-card {
    background: var(--color-bg-subtle);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.dashboard-preview .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    display: block;
    margin-bottom: 4px;
}

.dashboard-preview .metric-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Value Proposition Section */
.value-prop {
    padding: 100px 0;
    background: #f9fafb;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(240, 95, 64, 0.2);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f05f40 0%, #ff6b4a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-large {
    grid-column: span 2;
}

.feature-wide {
    grid-column: span 2;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f05f40 0%, #ff6b4a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Flexibility Section */
.flexibility {
    padding: 100px 0;
    background: #f9fafb;
}

.flexibility-content {
    text-align: center;
    margin-bottom: 4rem;
}

.flexibility-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.flexibility-content p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.flexibility-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.option-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.option-highlighted {
    border: 2px solid #f05f40;
    transform: scale(1.05);
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f05f40;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f05f40 0%, #ff6b4a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.option-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.option-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.option-card ul {
    list-style: none;
    text-align: left;
}

.option-card li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.option-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Command Center Section */
.command-center {
    padding: 100px 0;
    background: white;
}

.command-header {
    text-align: center;
    margin-bottom: 4rem;
}

.command-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.command-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.mockup-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Browser Mockup for Command Center */
.browser-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.browser-toolbar {
    background: #f8fafc;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ef4444;
}

.control.yellow {
    background: #f59e0b;
}

.control.green {
    background: #10b981;
}

.browser-address {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 13px;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.browser-menu {
    color: #6b7280;
    font-size: 16px;
    cursor: pointer;
}

.browser-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    height: 600px;
}

/* App Sidebar */
.app-sidebar {
    background: #f8fafc;
    border-right: 1px solid #e5e7eb;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    margin-bottom: 32px;
}

.sidebar-logo-img {
    height: 32px;
    width: auto;
}

.sidebar-nav {
    flex: 1;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: #f05f40;
    color: white;
}

.sidebar-link i {
    font-size: 18px;
}

.sidebar-link span {
    font-size: 14px;
}

/* App Main */
.app-main {
    padding: 24px;
    overflow-y: auto;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Tab Content Visibility */
.app-tab-content {
    animation: fadeIn 0.4s ease-out;
    display: none;
    /* Oculto por defecto */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.app-tab-content.active {
    display: block;
    /* Se muestra cuando tiene la clase active */
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Demo Tables */
.demo-table-container {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.demo-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.demo-table th {
    background: #f8fafc;
    padding: 16px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e5e7eb;
}

.demo-table td {
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #1a1a1a;
}

/* Badges */
.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-warning {
    background: #fef9c3;
    color: #854d0e;
}

.badge-info {
    background: #e0f2fe;
    color: #075985;
}

/* Guest List */
.guest-list {
    display: grid;
    gap: 12px;
}

.guest-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.guest-avatar {
    width: 40px;
    height: 40px;
    background: #f05f40;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.guest-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.guest-info p {
    font-size: 12px;
    color: #6b7280;
}

.guest-meta {
    margin-left: auto;
}

.visits {
    font-size: 11px;
    font-weight: 600;
    color: #f05f40;
    background: #fff5f2;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Reports & Progress */
.report-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.report-stat {
    margin-top: 16px;
}

.report-stat span {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #f05f40;
    border-radius: 4px;
}

/* Settings */
.settings-list {
    display: grid;
    gap: 16px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.setting-info label {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.setting-info span {
    font-size: 12px;
    color: #6b7280;
}

.setting-toggle {
    width: 40px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.setting-toggle::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: left 0.3s;
}

.setting-toggle.active {
    background: #f05f40;
}

.setting-toggle.active::after {
    left: 22px;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.metric-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.metric-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #10b981;
}

.metric-change.neutral {
    color: #6b7280;
}

/* Chart Container */
.chart-container {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.chart-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #6b7280;
}

.legend-color {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.legend-color.confirmed {
    background: #f05f40;
}

.legend-color.pending {
    background: #f59e0b;
}

.chart-area {
    height: 120px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

/* Rooms Grid */
.rooms-grid h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.rooms-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.room-item {
    aspect-ratio: 1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.room-item.available {
    background: #10b981;
}

.room-item.occupied {
    background: #f05f40;
}

.room-item.maintenance {
    background: #f59e0b;
}

.room-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.room-number {
    font-size: 11px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-popular {
    border: 2px solid #f05f40;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f05f40;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    background: #fff;
}

.star-rating {
    margin-bottom: 0.75rem;
    color: #fbbf24;
    /* Amber/Gold color */
    font-size: 0.875rem;
}

.star-rating i {
    margin: 0 1px;
}

.star-rating .fa-gem {
    color: #60a5fa;
    /* Blue for diamond */
}

.star-rating .fa-crown {
    color: #f59e0b;
    /* Bright amber for crown */
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
}

.period {
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
}

.pricing-features {
    padding: 0 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6b7280;
}

.pricing-features li i {
    color: #10b981;
    font-size: 1.125rem;
}

.pricing-card button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #f3f4f6;
}

.billing-period {
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.billing-period.active {
    color: #1a1a1a;
    font-weight: 700;
}

.discount-badge {
    background: #def7ec;
    color: #03543f;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    margin-left: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}


/* Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
    flex-shrink: 0;
}

.switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #f05f40;
}

input:checked+.slider:before {
    transform: translateX(28px);
}

.billing-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    transition: opacity 0.2s ease;
    min-height: 40px;
    /* Accommodate multi-line annual billing text */
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(240, 95, 64, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: #f59e0b;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info .author-name {
    font-weight: 600;
    color: #1a1a1a;
    display: block;
}

.author-info .author-title {
    font-size: 0.875rem;
    color: #6b7280;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f9fafb;
}

.faq-container {
    max-width: 700px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f05f40;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f05f40;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f05f40;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .feature-large,
    .feature-wide {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rooms-container {
        grid-template-columns: repeat(5, 1fr);
    }

    .app-sidebar {
        width: 60px;
        padding: 16px 8px;
        overflow: hidden;
    }

    .sidebar-link span {
        display: none;
    }

    .sidebar-link {
        justify-content: center;
        padding: 12px;
    }

    .sidebar-logo {
        display: none;
    }

    .browser-body {
        grid-template-columns: 60px 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 80px 0 40px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .value-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .flexibility-options {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-popular {
        transform: none;
    }

    .browser-body {
        grid-template-columns: 1fr;
        height: auto;
    }

    .app-sidebar {
        display: none;
    }

    .rooms-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .pricing-card {
        margin: 0;
    }

    .pricing-header {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.375rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .rooms-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .room-number {
        font-size: 9px;
    }

    .app-sidebar {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes counter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Focus states for accessibility */
.btn:focus,
.faq-question:focus {
    outline: 2px solid #f05f40;
    outline-offset: 2px;
}

/* Navbar scroll effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile menu styles */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: #f3f4f6;
    color: #1a1a1a;
}

.nav-menu.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
}

.nav-menu.mobile-open .nav-link {
    padding: 0.75rem 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.nav-menu.mobile-open .nav-link:last-child {
    border-bottom: none;
}

.mobile-cta {
    display: none;
}

.nav-menu.mobile-open .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-top: 1px solid var(--color-border-light);
}

.nav-menu.mobile-open .mobile-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Room tooltip styles */
.room-tooltip {
    position: fixed;
    background: #1a1a1a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: var(--z-tooltip);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.room-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
}

/* Selected pricing card styles */
.pricing-card.selected {
    border-color: #f05f40;
    box-shadow: 0 0 0 3px rgba(240, 95, 64, 0.1);
    transform: scale(1.02);
}

/* Pulse animation for interactions */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #f05f40;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: var(--z-skip-link);
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Error states for forms */
input.error,
select.error,
textarea.error,
.form-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Loading states */
.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

/* Chart fill animation */
.chart-fill {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Enhanced focus states - universal */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border-color: #000;
    }

    .btn-secondary {
        background: #fff;
        border-color: #000;
        color: #000;
    }

    .value-card,
    .feature-card,
    .testimonial-card,
    .pricing-card {
        border: 2px solid #000;
    }
}

/* Blog Styles */
.blog-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-signup {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.newsletter-signup h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.newsletter-signup p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #f05f40;
    box-shadow: 0 0 0 3px rgba(240, 95, 64, 0.1);
}

.newsletter-input-large {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1rem;
}

.newsletter-form-large {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Blog Categories */
.blog-categories {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    text-decoration: none;
    color: #6b7280;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.category-card:hover,
.category-card.active {
    background: #f05f40;
    color: white;
    border-color: #f05f40;
}

.category-card i {
    font-size: 1rem;
}

/* Blog Posts */
.blog-posts {
    padding: 60px 0;
    background: white;
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.post-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.post-card.featured {
    background: linear-gradient(135deg, #f05f40 0%, #ff6b4a 100%);
    color: white;
}

.post-card.featured:hover {
    background: linear-gradient(135deg, #e04a30 0%, #ff5a3d 100%);
}

.post-image {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 12px;
    right: 12px;
}

.category-badge {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.technology {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.category-badge.tips {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.category-badge.hospitality {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.category-badge.trends {
    background: rgba(240, 95, 64, 0.9);
    color: white;
}

.post-content {
    flex: 1;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-card.featured .post-meta {
    color: rgba(255, 255, 255, 0.9);
}

.post-card h2,
.post-card h3 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.post-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.post-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.post-card.featured .author-name {
    color: white;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #f05f40;
    color: white;
    border-color: #f05f40;
}

.pagination-dots {
    color: #6b7280;
    padding: 0 0.5rem;
}

.pagination-btn.next {
    width: auto;
    padding: 0 1rem;
    gap: 0.5rem;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-top: 3rem;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Article Tags */
.article-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #f05f40;
    color: white;
}

/* Related Articles */
.related-articles {
    margin-top: 2rem;
}

.related-articles h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.related-article {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-article:hover {
    color: #f05f40;
}

.related-article img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.related-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.related-content span {
    font-size: 0.75rem;
    color: #6b7280;
}

.related-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Demos Section */
.demos {
    padding: 100px 0;
    background: #f9fafb;
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.demo-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.demo-card-featured {
    border: 2px solid #f05f40;
    transform: scale(1.05);
    padding-top: 3rem;
}

.demo-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.demo-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f05f40;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.demo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f05f40 0%, #ff6b4a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.demo-card:hover .demo-icon {
    transform: scale(1.1);
}

.demo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.demo-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.demo-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.demo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.demo-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.demo-features li i {
    color: #10b981;
    font-size: 0.8rem;
}

.btn-demo {
    width: 100%;
    background: #f05f40;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-demo:hover {
    background: #e04a30;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 95, 64, 0.4);
}

.btn-demo:active {
    transform: translateY(0);
}

/* Demo Modal */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    animation: fadeIn 0.3s ease;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.demo-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    z-index: 2;
    animation: slideIn 0.3s ease;
}

.demo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.demo-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.demo-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.demo-modal-close:hover {
    background: #f3f4f6;
    color: #1a1a1a;
}

.demo-modal-body {
    padding: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Demos */
@media (max-width: 992px) {
    .demos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .demo-card-featured {
        transform: none;
    }

    .demo-card-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .demo-card {
        padding: 2rem;
    }

    .demo-card-featured {
        padding-top: 2.5rem;
    }

    .demo-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .demo-content h3 {
        font-size: 1.25rem;
    }

    .btn-demo {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Lead Magnet Section */
.lead-magnet {
    padding: 80px 0;
    background: linear-gradient(135deg, #f05f40 0%, #ff6b4a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,60 0,100"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.lead-magnet-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* E-book Mockup */
.ebook-preview {
    perspective: 1000px;
}

.ebook-cover {
    position: relative;
    width: 240px;
    height: 320px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.ebook-cover:hover {
    transform: rotateY(-15deg) rotateX(5deg);
}

.ebook-spine {
    position: absolute;
    width: 20px;
    height: 320px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    left: -20px;
    top: 0;
    transform-origin: right center;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
}

.ebook-front {
    position: absolute;
    width: 240px;
    height: 320px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 4px 12px 12px 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.ebook-title-section h3 {
    font-size: 3rem;
    font-weight: 900;
    color: #f05f40;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.ebook-title-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0.2rem 0;
    line-height: 1.1;
}

.ebook-subtitle {
    margin-top: 1rem;
}

.ebook-subtitle span {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ebook-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/* Lead Form */
.lead-form-container {
    color: white;
}

.lead-form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lead-form-header p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lead-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.benefit-item i {
    color: #10b981;
    font-size: 1rem;
}

.lead-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.lead-submit-btn {
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lead-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.lead-submit-btn:hover::before {
    left: 100%;
}

.lead-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 95, 64, 0.4);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 400px;
    z-index: var(--z-success);
    animation: successSlideIn 0.3s ease;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.success-message h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-message p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive Lead Magnet */
@media (max-width: 768px) {
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .ebook-cover {
        margin: 0 auto;
        width: 200px;
        height: 267px;
    }

    .ebook-spine {
        width: 16px;
        height: 267px;
        left: -16px;
    }

    .ebook-front {
        width: 200px;
        height: 267px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lead-form-header h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   About Page Styles
   ======================================== */
.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.content-card {
    background: white;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    color: #636e72;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3436;
}

.brand-story p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ========================================
   Integrations Page Styles
   ======================================== */
.ota-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ota-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.ota-logo {
    height: 60px;
    margin-bottom: 25px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: contain;
}

.ota-card:hover .ota-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.channel-manager-section {
    padding: 80px 0;
    background: #fff;
}

.guide-section {
    padding: 80px 0;
    background: var(--color-text);
    color: #fff;
}

.guide-step {
    padding: 30px;
    border-left: 3px solid var(--color-primary);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 15px 15px 0;
}

.guide-step h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.badge-new {
    background: var(--color-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

/* ========================================
   Press Page Styles
   ======================================== */
.press-hero {
    padding: 160px 0 80px;
    color: white;
    text-align: center;
}

.press-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.press-grid {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.news-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 30px;
}

.news-date {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3436;
    line-height: 1.3;
}

.news-excerpt {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trust-banner {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.trust-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d3436;
}

.press-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(240, 95, 64, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
}

/* ========================================
   Technical Guide Page Styles
   ======================================== */
.tech-section {
    padding: 80px 0;
    background: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-card {
    background: #f8faff;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-card h3 {
    color: var(--color-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-card i {
    color: var(--color-primary);
}

.code-block {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 25px;
    border-radius: var(--radius-md);
    font-family: 'Courier New', Courier, monospace;
    overflow-x: auto;
    margin: 20px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid #333;
}

.code-keyword {
    color: #569cd6;
}

.code-string {
    color: #ce9178;
}

.code-property {
    color: #9cdcfe;
}

.flow-diagram {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
    flex-wrap: wrap;
    gap: 30px;
}

.flow-node {
    text-align: center;
    background: #fff;
    padding: 25px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid var(--color-primary);
}

.flow-arrow {
    font-size: 24px;
    color: var(--color-primary);
    animation: flowPulse 2s infinite;
}

@keyframes flowPulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

/* ========================================
   Legal Pages Styles (Privacy, Cookies, Terms)
   ======================================== */
.privacy-content {
    padding: 120px 0 80px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-card h1 {
    color: var(--color-primary);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.privacy-card h2 {
    margin-top: 30px;
    color: #333;
    font-size: 1.5rem;
}

.privacy-card p,
.privacy-card li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
    color: #666;
}

.cookie-table th {
    background-color: #f9f9f9;
    color: #333;
}

/* ========================================
   Responsive: Page-specific
   ======================================== */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .press-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-content {
        padding: 100px 20px 60px;
    }

    .privacy-card {
        padding: 25px;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }

    .ota-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .flow-diagram {
        flex-direction: column;
    }
}

/* Print styles */
@media print {

    .navbar,
    .hero-buttons,
    .final-cta,
    .mobile-toggle,
    .room-tooltip,
    .skip-link,
    .newsletter-signup,
    .newsletter-cta,
    .lead-magnet {
        display: none !important;
    }

    .hero {
        background: #667eea !important;
        color: black !important;
    }

    .hero-title {
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        background: unset !important;
        color: black !important;
    }

    .btn {
        background: #f05f40 !important;
        color: white !important;
        border: 1px solid #000 !important;
    }

    .browser-mockup {
        display: none !important;
    }

    .mockup-container {
        border: 1px solid #000 !important;
        padding: 1rem !important;
    }

    .app-sidebar {
        background: #f8fafc !important;
        border-right: 1px solid #000 !important;
    }

    .metric-card,
    .sidebar-link,
    .pricing-card,
    .testimonial-card,
    .post-card {
        border: 1px solid #000 !important;
    }
}
/* Security Gate Modal - Premium SaaS Aesthetic */
.security-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.security-modal.active {
    display: flex;
    opacity: 1;
}

.modal-glass {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 480px;
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.security-modal.active .modal-glass {
    transform: translateY(0);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(118, 75, 162, 0.3);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.question-text {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 1rem;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.input-group input:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 4px rgba(118, 75, 162, 0.1);
    outline: none;
}

.error-text {
    color: #ef4444;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-footer .btn {
    flex: 2;
    padding: 0.875rem;
}

.btn-text {
    flex: 1;
    background: transparent;
    border: none;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-text:hover {
    color: #0f172a;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.shake {
    animation: shake 0.4s ease;
    border-color: #ef4444 !important;
}

/* Pricing Terms Section */
.pricing-terms-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.terms-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.terms-card.annual {
    border: 2px solid #10b981;
    background: #f0fdf4;
}

.terms-card.monthly {
    border: 1px solid #e5e7eb;
}

.terms-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.terms-card .icon {
    font-size: 1.8rem;
}

.terms-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.terms-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 1rem;
}

.terms-list li i {
    color: #10b981;
    font-size: 1.2rem;
}

.terms-list li i.text-danger {
    color: #ef4444;
}

.terms-list li.highlight {
    font-weight: 600;
    color: #1a1a1a;
    background: rgba(240, 95, 64, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.terms-list li.highlight i {
    color: #f05f40;
}

/* Pricing Card Updates for Features Title */
.features-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.ideal-for {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.ideal-for p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

.ideal-for strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.25rem;
}
