/*
Theme Name: ARPHost
Theme URI: https://arphost.com
Author: ARPHost
Author URI: https://arphost.com
Description: Premium dual-theme hosting starter with dark/light mode toggle, WHMCS integration, and SEO-optimized landing pages. Features 13 product category pages, modern glassmorphism design, enterprise-grade performance, and full Customizer editability.
Version: 3.7.0
Tested up to: 6.7
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arphost
Tags: dark-mode, light-mode, theme-toggle, hosting, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, full-width-template

ARPHost - Premium Hosting WordPress Theme
Copyright 2024-2026 ARPHost
*/

/* ==========================================================================
   CSS Custom Properties - Light Theme (Default)
   ========================================================================== */
:root {
    /* Brand Colors */
    --brand-primary: #0891b2;
    --brand-primary-dark: #0e7490;
    --brand-primary-light: #22d3ee;
    --brand-secondary: #f59e0b;
    --brand-secondary-dark: #d97706;
    --brand-accent: #8b5cf6;
    --brand-success: #10b981;
    --brand-warning: #f59e0b;
    --brand-danger: #ef4444;

    /* Light Theme Colors */
    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #ffffff;
    --bg-surface-hover: #f1f5f9;
    --bg-header: rgba(255, 255, 255, 0.9);
    --bg-footer: #0f172a;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --bg-input: #ffffff;
    --bg-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;
    --text-link: #0891b2;
    --text-link-hover: #0e7490;

    /* Border Colors */
    --border-color: #e2e8f0;
    --border-color-light: #f1f5f9;
    --border-color-focus: #0891b2;

    /* Shadow */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px rgba(8, 145, 178, 0.15);
    --shadow-card: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-theme: 400ms ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Spacing */
    --header-height: 80px;
    --container-max: 1280px;
    --section-padding: 100px;
}

/* ==========================================================================
   Dark Theme
   ========================================================================== */
[data-theme="dark"] {
    --bg-body: #0a0f1a;
    --bg-surface: #111827;
    --bg-surface-elevated: #1f2937;
    --bg-surface-hover: #1f2937;
    --bg-header: rgba(17, 24, 39, 0.95);
    --bg-footer: #030712;
    --bg-card: #111827;
    --bg-card-hover: #1f2937;
    --bg-input: #1f2937;
    --bg-hero: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #0a0f1a 100%);

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-inverse: #0f172a;
    --text-link: #22d3ee;
    --text-link-hover: #67e8f9;

    --border-color: #1f2937;
    --border-color-light: #374151;
    --border-color-focus: #22d3ee;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5), 0 8px 10px -6px rgb(0 0 0 / 0.4);
    --shadow-glow: 0 0 60px rgba(34, 211, 238, 0.2);
    --shadow-card: 0 2px 8px 0 rgb(0 0 0 / 0.3);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-theme), color var(--transition-theme);
    overflow-x: hidden;
}

a {
    color: var(--text-link);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--text-link-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container-lg {
    max-width: 1400px;
}

.container-sm {
    max-width: 900px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 2rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.site-logo img,
.site-logo .custom-logo {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
    transition: opacity var(--transition-base);
}

.site-logo .logo-dark,
.site-logo .logo-light {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
}

/* Dark/Light Logo Switching */
.site-logo .logo-dark {
    display: block;
}

.site-logo .logo-light {
    display: none;
}

/* In light mode, show light logo (dark colored) and hide dark logo */
:root:not([data-theme="dark"]) .site-logo .logo-dark,
[data-theme="light"] .site-logo .logo-dark {
    display: none;
}

:root:not([data-theme="dark"]) .site-logo .logo-light,
[data-theme="light"] .site-logo .logo-light {
    display: block;
}

/* In dark mode, show dark logo (light colored) and hide light logo */
[data-theme="dark"] .site-logo .logo-dark {
    display: block;
}

[data-theme="dark"] .site-logo .logo-light {
    display: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.logo-text .highlight {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--text-primary);
    background: var(--bg-surface-hover);
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    padding: 0.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.dropdown-item:hover {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
}

.dropdown-item i {
    width: 20px;
    color: var(--brand-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--bg-surface-hover);
    border-color: var(--brand-primary);
}

.theme-toggle i {
    font-size: 1.125rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.theme-toggle:hover i {
    color: var(--brand-primary);
}

.theme-toggle .fa-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .fa-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .fa-moon {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.5);
    color: white;
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-surface-hover);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-secondary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 60px) 0 80px;
    background: var(--bg-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(8, 145, 178, 0.3), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.15), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(245, 158, 11, 0.1), transparent);
    pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(8, 145, 178, 0.15);
    border: 1px solid rgba(8, 145, 178, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-primary-light);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--brand-secondary);
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-value .accent {
    color: var(--brand-primary-light);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: auto;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Floating elements */
.hero-float {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.hero-float.float-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-float.float-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==========================================================================
   Page Headers (Landing Pages)
   ========================================================================== */
.page-hero {
    position: relative;
    padding: calc(var(--header-height) + 80px) 0 100px;
    background: var(--bg-hero);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(8, 145, 178, 0.2), transparent),
        radial-gradient(ellipse 50% 50% at 100% 50%, rgba(139, 92, 246, 0.1), transparent);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.page-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumbs a:hover {
    color: white;
}

.page-hero .breadcrumbs span {
    color: var(--brand-primary-light);
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.page-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.3), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
}

.page-hero-icon i {
    font-size: 2rem;
    color: var(--brand-primary-light);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: var(--section-padding) 0;
}

.section-sm {
    padding: 60px 0;
}

/* CTA Section (called section-cta in front-page.php) */
.section-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-cta .cta-content h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-cta .cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.section-alt {
    background: var(--bg-surface);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    margin-bottom: 1rem;
    background: rgba(8, 145, 178, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}

.card:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

/* Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
}

/* Improved shadows for light mode cards */
html:not([data-theme="dark"]) .service-card,
html:not([data-theme="dark"]) .pricing-card,
html:not([data-theme="dark"]) .card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.service-card:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15), rgba(8, 145, 178, 0.05));
    border-radius: var(--radius-lg);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--brand-primary);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    flex-grow: 1;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.service-price .amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-secondary);
}

.service-price .period {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.service-card .btn {
    margin-top: auto;
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-secondary-dark));
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.pricing-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-body {
    flex-grow: 1;
    padding: 1.5rem 2rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.pricing-features li i {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--brand-success);
}

.pricing-footer {
    padding: 1.5rem 2rem 2rem;
}

.pricing-footer .btn {
    width: 100%;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15), rgba(8, 145, 178, 0.05));
    border-radius: var(--radius-full);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--brand-primary);
}

.feature-card h4 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================================================
   Grids
   ========================================================================== */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

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

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

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--brand-secondary);
}

.testimonial-text {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-hero);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(8, 145, 178, 0.2), transparent);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-footer);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-text {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--brand-primary-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--brand-primary-light);
    margin-top: 0.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--brand-primary-light);
}

/* ==========================================================================
   Back to Top
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    color: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--brand-primary-dark);
    transform: translateY(-4px);
    color: white;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--brand-primary); }
.text-secondary-color { color: var(--brand-secondary); }
.text-success { color: var(--brand-success); }
.text-muted { color: var(--text-muted); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(8, 145, 178, 0.3); }
    50% { box-shadow: 0 0 40px rgba(8, 145, 178, 0.5); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --section-padding: 60px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 1rem;
        background: var(--bg-surface);
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .nav-item.open .dropdown-menu {
        display: block;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-stat {
        flex: 1 1 40%;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

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

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

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

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .container {
        padding: 0 16px;
    }

    .btn-lg, .btn-xl {
        width: 100%;
    }

    .pricing-card {
        margin: 0 -8px;
    }
}

/* ==========================================================================
   WordPress Classes
   ========================================================================== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 1.5rem auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.5rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Entry Content */
.entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* Full Width Editor Content - for pages that use the editor only */
.full-width-content,
.homepage-content,
.landing-content {
    padding-top: calc(var(--header-height) + 20px);
}

.full-width-content .wp-block-group,
.homepage-content .wp-block-group,
.landing-content .wp-block-group {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Support for Gutenberg full-width and wide alignment */
.entry-content .alignwide {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.entry-content .alignfull {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.entry-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--bg-surface);
    border-left: 4px solid var(--brand-primary);
    border-radius: var(--radius-md);
}

.entry-content blockquote p {
    margin: 0;
    font-style: italic;
}

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

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination a:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
}

.pagination .current {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
}

/* Comments */
.comments-area {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.comment-list {
    margin-bottom: 2rem;
}

.comment {
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: 600;
    color: var(--text-primary);
}

.comment-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.comment-content {
    color: var(--text-secondary);
}

/* 404 Page */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 60px) 0 60px;
}

.error-404 h1 {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-404 h2 {
    margin-bottom: 1rem;
}

.error-404 p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Landing Page Styles
   ========================================================================== */

/* Landing Hero */
.landing-hero {
    padding: 160px 0 100px;
    min-height: 70vh;
}

.landing-hero .page-hero-content {
    max-width: 900px;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge i {
    color: var(--brand-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.starting-price {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.starting-price strong {
    color: var(--brand-secondary);
    font-size: 1.5rem;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-content h2 {
    margin: 1rem 0 1.5rem;
}

.intro-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.highlight-item:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.25rem;
    color: white;
}

.highlight-text h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.highlight-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Features Section */
.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.feature-icon-lg {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-lg i {
    font-size: 2rem;
    color: white;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases-section .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.use-case-card {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.use-case-card:hover {
    border-color: var(--brand-secondary);
    box-shadow: var(--shadow-md);
}

.use-case-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-surface-elevated);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.use-case-icon i {
    font-size: 1.5rem;
    color: var(--brand-primary);
}

.use-case-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.use-case-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Technical Specifications */
.specs-section .specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.spec-group {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.spec-group h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spec-group h3 i {
    color: var(--brand-primary);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li i {
    color: var(--brand-success);
    font-size: 0.75rem;
}

/* Pricing Section */
.pricing-section .pricing-grid {
    gap: 1.5rem;
}

.custom-solutions {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    border-radius: var(--radius-xl);
}

.custom-solutions-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.custom-solutions-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.custom-solutions-content h3 i {
    margin-right: 0.5rem;
}

.custom-solutions-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.custom-solutions .btn {
    flex-shrink: 0;
}

/* Comparison Table */
.comparison-section .comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table thead tr {
    background: var(--bg-surface-elevated);
}

.comparison-table th {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr:hover {
    background: var(--bg-surface-hover);
}

.comparison-table .featured-row {
    background: rgba(8, 145, 178, 0.05);
}

[data-theme="dark"] .comparison-table .featured-row {
    background: rgba(34, 211, 238, 0.05);
}

.comparison-table .plan-name {
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table .popular-badge {
    display: inline-block;
    background: var(--brand-secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.comparison-table .plan-price {
    font-weight: 700;
    color: var(--brand-primary);
    font-size: 1.125rem;
}

.comparison-table .plan-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Why Choose Section */
.why-choose-section .advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-card {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.advantage-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* SEO Content Section */
.seo-content-section {
    padding: 80px 0;
}

.seo-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.seo-article h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.seo-article h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.seo-article p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.seo-article strong {
    color: var(--text-primary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list h3 {
    margin: 3rem 0 1.5rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-surface-hover);
}

.faq-question i {
    color: var(--text-muted);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--brand-primary);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Related Section */
.related-section .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-section .service-card .btn {
    margin-top: auto;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-hero);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Container Medium */
.container-md {
    max-width: 960px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-section .features-grid,
    .use-cases-section .use-cases-grid,
    .specs-section .specs-grid,
    .why-choose-section .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .trust-badges {
        gap: 0.5rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .features-section .features-grid,
    .use-cases-section .use-cases-grid,
    .specs-section .specs-grid,
    .why-choose-section .advantages-grid {
        grid-template-columns: 1fr;
    }

    .custom-solutions-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   ENHANCED MOBILE STYLES - v3.6.0
   ========================================================================== */

/* Mobile Header Improvements */
@media (max-width: 768px) {
    .site-header {
        padding: 0;
    }

    .header-inner {
        height: 70px;
        padding: 0 1rem;
    }

    .site-logo img {
        max-height: 45px;
    }

    /* Mobile Menu Overlay */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-surface);
        z-index: 999;
        padding: 80px 1.5rem 2rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .main-nav.active {
        transform: translateX(0);
        display: flex;
    }

    .nav-item {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0 !important;
    }

    .dropdown-menu {
        background: var(--bg-surface-hover);
        border-radius: var(--radius-md);
        margin: 0.5rem 0;
        padding: 0.5rem !important;
    }

    .dropdown-item {
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem;
    }

    /* Mobile Toggle Animation */
    .mobile-toggle {
        width: 44px;
        height: 44px;
        z-index: 1001;
    }

    .mobile-toggle span {
        width: 24px;
        height: 2px;
        transition: all 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Header Actions Mobile */
    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .btn {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem;
    }

    .header-actions .btn-ghost {
        display: none;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }
}

/* Mobile Hero Improvements */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: calc(var(--header-height) + 20px) 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        background: var(--bg-surface);
    }

    .hero-stat {
        flex: 1 1 45%;
        text-align: center;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .hero-image,
    .hero-visual {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .trustpilot-badge {
        margin: 1.5rem auto 0;
        justify-content: center;
    }
}

/* Mobile Pricing Cards */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-grid {
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
        margin: 0;
    }

    .pricing-card.featured {
        transform: none;
        margin: 0;
    }

    .pricing-header {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .pricing-name {
        font-size: 1.25rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .pricing-features {
        font-size: 0.9rem;
    }

    .pricing-features li {
        padding: 0.5rem 0;
    }

    .pricing-cta {
        margin-top: 1.5rem;
    }

    .pricing-cta .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

/* Mobile Feature Cards */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Mobile CTA Sections */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

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

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-brand img {
        margin: 0 auto 1rem;
    }

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

    .footer-column h4 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-column a {
        padding: 0.5rem 0;
        display: inline-block;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        gap: 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Mobile Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-content {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Mobile FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* Mobile Landing Pages */
@media (max-width: 768px) {
    .landing-hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .landing-hero h1 {
        font-size: 1.875rem;
        line-height: 1.2;
    }

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

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .intro-section {
        padding: 60px 0;
    }

    .intro-content h2 {
        font-size: 1.5rem;
    }

    .specs-section {
        padding: 60px 0;
    }

    .spec-card {
        padding: 1.25rem;
    }

    .use-case-card {
        padding: 1.5rem;
    }

    .advantage-card {
        padding: 1.25rem;
    }
}

/* Touch-Friendly Improvements */
@media (max-width: 768px) {
    /* Larger touch targets */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.25rem;
    }

    .btn-sm {
        min-height: 40px;
        padding: 0.625rem 1rem;
    }

    /* Better tap spacing */
    a, button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Form inputs */
    input, select, textarea {
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    /* Checkboxes and radios */
    input[type="checkbox"],
    input[type="radio"] {
        width: 24px;
        height: 24px;
        min-height: auto;
    }

    /* Better scrolling */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent text selection on buttons */
    .btn, button {
        -webkit-user-select: none;
        user-select: none;
    }

    /* Disable hover effects on touch */
    @media (hover: none) {
        .btn:hover {
            transform: none;
        }

        .card:hover,
        .pricing-card:hover,
        .feature-card:hover {
            transform: none;
            box-shadow: var(--shadow-md);
        }
    }
}

/* Extra Small Devices (phones in portrait) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-stat {
        flex: 1 1 100%;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .footer-column {
        padding: 0;
    }
}

/* Landscape Phone Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 20px) 0 40px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .hero-stat {
        flex: 1;
    }

    .main-nav {
        padding-top: 70px;
    }
}

/* Safe Area for Notched Devices */
@supports (padding: max(0px)) {
    .site-header {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .site-footer {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }

    .main-nav {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .mobile-toggle,
    .theme-toggle,
    .back-to-top,
    .cta-section {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        padding-top: 0;
        min-height: auto;
    }
}
