/*
Theme Name: AraSync Health Systems
Theme URI: https://arasynchealth.org
Author: AraSync Health Systems
Author URI: https://arasynchealth.org
Description: Custom theme for AraSync Health Systems - AI-Powered Healthcare Management
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arasync-theme
Tags: healthcare, ehr, evv, ai, one-column, custom-colors, custom-menu
*/

/* ========================================
   Design System — Variables
   ======================================== */
:root {
    /* Primary Colors — Trust & Authority palette */
    --arasync-primary: #0369A1;
    --arasync-primary-light: #38BDF8;
    --arasync-primary-dark: #075985;
    --arasync-primary-50: rgba(3, 105, 161, 0.08);
    --arasync-primary-100: rgba(3, 105, 161, 0.15);

    /* Secondary Colors */
    --arasync-navy: #0F172A;
    --arasync-navy-light: #1E293B;
    --arasync-navy-dark: #020617;

    /* Accent Colors */
    --arasync-aqua: #38BDF8;
    --arasync-aqua-light: #7DD3FC;
    --arasync-aqua-dark: #0EA5E9;

    /* Legacy mappings */
    --arasync-orange: #0369A1;
    --arasync-orange-light: #38BDF8;
    --arasync-orange-dark: #075985;
    --arasync-teal: #0369A1;
    --arasync-teal-light: #38BDF8;
    --arasync-teal-dark: #075985;

    /* Neutrals */
    --arasync-white: #FFFFFF;
    --arasync-gray-50: #F8FAFC;
    --arasync-gray-100: #F1F5F9;
    --arasync-gray-200: #E2E8F0;
    --arasync-gray-300: #CBD5E1;
    --arasync-gray-400: #94A3B8;
    --arasync-gray-500: #64748B;
    --arasync-gray-600: #475569;
    --arasync-gray-700: #334155;
    --arasync-gray-800: #1E293B;
    --arasync-gray-900: #0F172A;

    /* Semantic */
    --arasync-success: #059669;
    --arasync-warning: #D97706;
    --arasync-error: #DC2626;
    --arasync-info: #0284C7;

    /* Typography — Plus Jakarta Sans: friendly, modern, SaaS */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 4rem;
    --spacing-5xl: 5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(3, 105, 161, 0.15);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--arasync-gray-700);
    background-color: var(--arasync-white);
    overflow-x: hidden;
}

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

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    color: var(--arasync-navy);
    letter-spacing: -0.02em;
}

h1 { font-size: 3.25rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--arasync-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--arasync-primary-dark);
}

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

.container-wide { max-width: 1400px; }
.container-narrow { max-width: 800px; }

/* ========================================
   Skip Navigation
   ======================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--arasync-primary);
    color: var(--arasync-white);
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
    color: var(--arasync-white);
}

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 12px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    z-index: 1000;
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.site-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--arasync-primary);
    letter-spacing: -0.5px;
}

.site-logo .logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--arasync-navy);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
}

.site-logo:hover .logo-text {
    color: var(--arasync-navy);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
}

.main-navigation a {
    color: var(--arasync-gray-600);
    font-weight: 600;
    font-size: 0.925rem;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--arasync-primary);
    background: var(--arasync-primary-50);
}

.main-navigation a::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
}

.menu-toggle:hover {
    background: var(--arasync-gray-100);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--arasync-gray-700);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    transition: transform 0.2s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--arasync-primary);
    color: var(--arasync-white);
    border-color: var(--arasync-primary);
    box-shadow: 0 2px 8px rgba(28, 138, 125, 0.25);
}

.btn-primary:hover {
    background: var(--arasync-primary-dark);
    border-color: var(--arasync-primary-dark);
    color: var(--arasync-white);
    box-shadow: 0 4px 16px rgba(28, 138, 125, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--arasync-primary);
    border-color: var(--arasync-primary);
}

.btn-secondary:hover {
    background: var(--arasync-primary);
    color: var(--arasync-white);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--arasync-white);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--arasync-white);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--arasync-white);
    color: var(--arasync-navy);
    border-color: var(--arasync-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--arasync-gray-50);
    color: var(--arasync-navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    color: var(--arasync-white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--arasync-white);
    transform: translateY(-1px);
}

.btn-navy {
    background: var(--arasync-navy);
    color: var(--arasync-white);
    border-color: var(--arasync-navy);
}

.btn-navy:hover {
    background: var(--arasync-navy-dark);
    border-color: var(--arasync-navy-dark);
    color: var(--arasync-white);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-xl);
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(160deg, var(--arasync-navy-dark) 0%, var(--arasync-navy) 40%, #0C2D48 100%);
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--arasync-primary) 0%, transparent 70%);
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--arasync-aqua) 0%, transparent 70%);
    bottom: -15%;
    left: -5%;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #0EA5E9 0%, transparent 70%);
    top: 40%;
    right: 30%;
    opacity: 0.25;
    animation-delay: -14s;
}

.hero-grid-lines {
    position: absolute;
    inset: 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;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.75rem;
    color: var(--arasync-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--arasync-aqua-light) 0%, var(--arasync-aqua) 50%, var(--arasync-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 209, 197, 0.12);
    border: 1px solid rgba(79, 209, 197, 0.2);
    color: var(--arasync-aqua);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-xl);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.hero-trust {
    display: flex;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-trust-item svg {
    color: var(--arasync-aqua);
    opacity: 0.7;
}

/* Hero Dashboard Mockup */
.hero-visual {
    position: relative;
    perspective: 1200px;
}

/* Product Screenshots */
.screenshot-web {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.screenshot-web img {
    width: calc(100% + 80px);
    max-width: none;
    display: block;
    height: auto;
}

/* Marketing illustrations have edge-to-edge content and built-in whitespace —
   they should not get the 80px overflow that UI screenshots use, or their
   right edge gets clipped. */
.screenshot-web img[src*="/illustrations/"],
.screenshot-mobile img[src*="/illustrations/"] {
    width: 100%;
    max-width: 100%;
}

/* Illustrations on the homepage hero shouldn't get the laptop-mockup 3D tilt
   or the heavy dark drop-shadow — those are screenshot-mockup conventions. */
.hero-visual .screenshot-web:has(img[src*="/illustrations/"]) {
    transform: none;
    animation: none;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.screenshot-mobile {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #000;
    padding: 12px;
}

.screenshot-mobile img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.hero-visual .screenshot-web {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: rotateY(-5deg) rotateX(2deg);
    animation: mockFloat 6s ease-in-out infinite;
}

@keyframes mockFloat {
    0%, 100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-8px); }
}

.solution-visual .screenshot-web,
.solution-visual .screenshot-mobile {
    transition: transform 0.3s ease;
}

.solution-visual .screenshot-web:hover,
.solution-visual .screenshot-mobile:hover {
    transform: translateY(-4px);
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--arasync-navy);
    z-index: 2;
}

.hero-float-ai {
    bottom: 20%;
    left: -30px;
    animation: floatUp 3s ease-in-out infinite;
}

.hero-float-compliance {
    top: 15%;
    right: -20px;
    animation: floatUp 3s ease-in-out infinite 1.5s;
}

.float-ai-pulse {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--arasync-primary), var(--arasync-aqua));
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(3, 105, 161, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(3, 105, 161, 0); }
}

/* ========================================
   Metrics Strip
   ======================================== */
.metrics-strip {
    padding: var(--spacing-3xl) 0;
    background: var(--arasync-white);
    border-bottom: 1px solid var(--arasync-gray-100);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    text-align: center;
}

.metric-item {
    padding: var(--spacing-md);
}

.metric-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--arasync-navy);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--arasync-gray-500);
    font-weight: 600;
}

/* ========================================
   Compliance Engine Section
   ======================================== */
.compliance-section {
    padding: var(--spacing-5xl) 0;
    background: var(--arasync-white);
}

.compliance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.compliance-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.text-gradient-dark {
    background: linear-gradient(135deg, var(--arasync-primary) 0%, var(--arasync-aqua) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compliance-lead {
    font-size: 1.1rem;
    color: var(--arasync-gray-500);
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
}

.compliance-layers {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.compliance-layer {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.compliance-layer-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, var(--arasync-primary), var(--arasync-aqua));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.compliance-layer-icon svg {
    color: white;
}

.compliance-layer-icon.purple {
    background: linear-gradient(135deg, #0284C7, #38BDF8);
}

.compliance-layer-icon.navy {
    background: linear-gradient(135deg, var(--arasync-navy), var(--arasync-navy-light));
}

.compliance-layer h3 {
    font-size: 1.05rem;
    color: var(--arasync-navy);
    margin-bottom: 4px;
    font-weight: 700;
}

.compliance-layer p {
    font-size: 0.925rem;
    color: var(--arasync-gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Compliance Dashboard Mockup */
.compliance-visual {
    position: relative;
}

.compliance-dashboard {
    background: var(--arasync-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.comp-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--arasync-gray-50);
    border-bottom: 1px solid var(--arasync-gray-200);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--arasync-navy);
}

.comp-dash-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--arasync-primary);
    font-weight: 700;
}

.comp-dash-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--arasync-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.comp-dash-body {
    padding: 24px;
}

.comp-score-area {
    text-align: center;
    margin-bottom: 24px;
}

.comp-score-ring {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

.comp-score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.comp-score-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--arasync-navy);
    line-height: 1;
}

.comp-score-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--arasync-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-score-grade {
    display: inline-block;
    background: rgba(28, 138, 125, 0.1);
    color: var(--arasync-primary);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Category Bars */
.comp-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.comp-cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.comp-cat-header span:first-child {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--arasync-gray-600);
}

.comp-cat-pct {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--arasync-navy);
}

.comp-cat-bar {
    height: 6px;
    background: var(--arasync-gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.comp-cat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--arasync-primary), var(--arasync-aqua));
    border-radius: var(--radius-full);
    transition: width 1s ease-out;
}

.comp-cat-fill.warn {
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

/* Alert Items */
.comp-alerts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comp-alert-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
}

.comp-alert-item.warning {
    background: rgba(245, 158, 11, 0.08);
    color: #B45309;
}

.comp-alert-item.urgent {
    background: rgba(239, 68, 68, 0.08);
    color: #DC2626;
}

.comp-alert-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.comp-alert-item.warning .comp-alert-dot { background: #F59E0B; }
.comp-alert-item.urgent .comp-alert-dot { background: #EF4444; }

@media (max-width: 1024px) {
    .compliance-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .compliance-dashboard {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto var(--spacing-3xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
}

.section-header p {
    color: var(--arasync-gray-500);
    font-size: 1.125rem;
    line-height: 1.7;
}

.section-badge {
    display: inline-block;
    background: var(--arasync-primary-50);
    color: var(--arasync-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-md);
}

/* ========================================
   AI Capabilities Section
   ======================================== */
.ai-section {
    padding: var(--spacing-5xl) 0;
    background: var(--arasync-gray-50);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.ai-card {
    background: var(--arasync-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--arasync-gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--arasync-primary), var(--arasync-aqua));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-card:hover {
    border-color: var(--arasync-primary-100);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-4px);
}

.ai-card:hover::before {
    opacity: 1;
}

.ai-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--arasync-primary) 0%, var(--arasync-aqua) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.ai-card-icon svg {
    color: var(--arasync-white);
}

.ai-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--arasync-navy);
}

.ai-card p {
    color: var(--arasync-gray-500);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.ai-card-tag {
    display: inline-block;
    background: var(--arasync-primary-50);
    color: var(--arasync-primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: var(--spacing-5xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--arasync-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--arasync-gray-200);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--arasync-gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--arasync-primary) 0%, var(--arasync-aqua) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.feature-icon svg {
    color: var(--arasync-white);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--arasync-gray-500);
    margin-bottom: 0;
    line-height: 1.7;
}

.feature-card.featured {
    border: 2px solid var(--arasync-primary);
    background: linear-gradient(135deg, rgba(28, 138, 125, 0.03) 0%, rgba(79, 209, 197, 0.03) 100%);
    position: relative;
}

.feature-card.featured::before {
    content: "CORE PLATFORM";
    position: absolute;
    top: -11px;
    left: 20px;
    background: linear-gradient(135deg, var(--arasync-primary), var(--arasync-aqua));
    color: white;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.feature-card.featured .feature-icon {
    background: linear-gradient(135deg, var(--arasync-primary) 0%, var(--arasync-navy) 100%);
}

/* ========================================
   Platform Screenshots Section
   ======================================== */
.platform-screenshots {
    padding: var(--spacing-5xl) 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

.screenshot-card {
    text-align: center;
}

.screenshot-card .screenshot-web {
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-card .screenshot-web:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.screenshot-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.screenshot-card p {
    color: var(--arasync-gray-500);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto;
}

/* ========================================
   Industries Section
   ======================================== */
.industries {
    padding: var(--spacing-5xl) 0;
    background: var(--arasync-gray-50);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.industry-card {
    background: var(--arasync-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--arasync-gray-200);
    transition: all 0.3s ease;
}

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

.industry-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--arasync-primary) 0%, var(--arasync-aqua) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.industry-icon svg {
    color: var(--arasync-white);
}

.industry-icon.purple {
    background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
}

.industry-icon.navy {
    background: linear-gradient(135deg, var(--arasync-navy) 0%, var(--arasync-navy-light) 100%);
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.industry-card p {
    color: var(--arasync-gray-500);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--arasync-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.industry-link:hover {
    gap: 10px;
}

.industry-link svg {
    transition: transform 0.2s ease;
}

.industry-link:hover svg {
    transform: translateX(3px);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    position: relative;
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(160deg, var(--arasync-navy-dark) 0%, var(--arasync-navy) 50%, #0C2D48 100%);
    color: var(--arasync-white);
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--arasync-primary) 0%, transparent 70%);
    top: -30%;
    right: -10%;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--arasync-aqua) 0%, transparent 70%);
    bottom: -20%;
    left: 10%;
}

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

.cta-section h2 {
    color: var(--arasync-white);
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.75;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Reveal Animations
   ======================================== */
.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--arasync-gray-900);
    color: var(--arasync-gray-400);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.footer-brand p {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    font-size: 0.925rem;
}

.footer-brand .site-logo .logo-text { color: #ffffff; }
.footer-brand .site-logo .logo-subtitle { color: rgba(255,255,255,0.5); }
.footer-brand .site-logo:hover .logo-text { color: var(--arasync-aqua); }

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--arasync-gray-400);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--arasync-primary);
    color: var(--arasync-white);
    transform: translateY(-2px);
}

.footer-column h4 {
    color: var(--arasync-white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column li { margin-bottom: var(--spacing-sm); }

.footer-column a {
    color: var(--arasync-gray-400);
    font-size: 0.925rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--arasync-aqua);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--arasync-gray-500);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--arasync-gray-500);
}

.footer-legal a:hover {
    color: var(--arasync-aqua);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: var(--spacing-5xl) 0;
    background: var(--arasync-gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--arasync-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--arasync-gray-200);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-md);
}

.testimonial-stars svg {
    color: #F59E0B;
    width: 18px;
    height: 18px;
}

.testimonial-content {
    font-size: 1.05rem;
    font-style: normal;
    color: var(--arasync-gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

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

.testimonial-info h4 { font-size: 1rem; margin-bottom: 2px; }
.testimonial-info p { font-size: 0.85rem; color: var(--arasync-gray-500); margin-bottom: 0; }

/* ========================================
   Cursor & Interaction Fixes
   ======================================== */
.btn,
.feature-card,
.ai-card,
.industry-card,
.pricing-card,
.testimonial-card,
.industry-link,
.footer-social a,
.menu-toggle {
    cursor: pointer;
}

/* ========================================
   Reduced Motion
   ======================================== */
@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;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   PAGE TEMPLATES
   ========================================================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(160deg, var(--arasync-navy-dark) 0%, var(--arasync-navy) 50%, #0C2D48 100%);
    color: white;
    padding: 110px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header (old style compat) */
.page-header {
    padding: 110px 0 60px;
    background: linear-gradient(160deg, var(--arasync-navy-dark) 0%, var(--arasync-navy) 50%, #0C2D48 100%);
    color: var(--arasync-white);
    text-align: center;
    margin-top: 80px;
}

.page-header h1 { color: var(--arasync-white); margin-bottom: var(--spacing-md); }
.page-header p { font-size: 1.2rem; opacity: 0.75; max-width: 600px; margin: 0 auto; }

.page-content {
    padding: var(--spacing-3xl) 0;
}

/* About Page */
.about-section { padding: 80px 0; }
.about-section.alt-bg { background-color: var(--arasync-gray-50); }

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

.about-content h2 { font-size: 2rem; color: var(--arasync-navy); margin-bottom: 1rem; }

.lead-text {
    font-size: 1.2rem;
    color: var(--arasync-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-content p { color: var(--arasync-gray-600); line-height: 1.8; }

.image-placeholder {
    background: linear-gradient(135deg, var(--arasync-primary) 0%, var(--arasync-aqua) 100%);
    border-radius: var(--radius-xl);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder .icon { font-size: 6rem; }

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

.serve-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--arasync-gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.serve-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.serve-card h3 { font-size: 1.15rem; color: var(--arasync-navy); margin-bottom: 0.75rem; }
.serve-card p { color: var(--arasync-gray-500); font-size: 0.95rem; line-height: 1.6; }

.location-tag { display: block; font-size: 0.85rem; color: var(--arasync-primary); margin-top: 0.5rem; }

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

.approach-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--arasync-gray-200);
}

.approach-item h3 { font-size: 1.2rem; color: var(--arasync-navy); margin-bottom: 1rem; }
.approach-item p { color: var(--arasync-gray-500); line-height: 1.7; }

/* Solutions Page */
.solution-section { padding: 80px 0; }
.solution-section.alt-bg { background-color: var(--arasync-gray-50); }

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

.solution-grid.reverse { direction: rtl; }
.solution-grid.reverse > * { direction: ltr; }

.solution-badge {
    display: inline-block;
    background: var(--arasync-primary-50);
    color: var(--arasync-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solution-badge.primary-badge {
    background: linear-gradient(135deg, var(--arasync-primary), #075985);
    color: white;
}

.solution-content h2 { font-size: 2rem; color: var(--arasync-navy); margin-bottom: 1rem; }

.feature-list { list-style: none; padding: 0; margin-top: 1.5rem; }

.feature-list li {
    padding: 8px 0;
    color: var(--arasync-gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list .check { color: var(--arasync-primary); font-weight: bold; }


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

/* Contact Page */
.contact-section { padding: 80px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 { color: var(--arasync-navy); margin-bottom: 0.5rem; }
.contact-form-wrapper > p { color: var(--arasync-gray-500); margin-bottom: 2rem; }

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form Styles */
.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--arasync-gray-700);
    font-size: 0.925rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--arasync-gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--arasync-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--arasync-primary);
    box-shadow: 0 0 0 3px var(--arasync-primary-50);
}

.form-group textarea { min-height: 150px; resize: vertical; }

.checkbox-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] { width: auto; accent-color: var(--arasync-primary); }

.contact-info-wrapper { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
    background: var(--arasync-gray-50);
    padding: 25px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--arasync-gray-200);
}

.contact-info-card h3 { color: var(--arasync-navy); margin-bottom: 1rem; font-size: 1.15rem; }
.contact-info-card p { color: var(--arasync-gray-500); margin-bottom: 0.5rem; }
.contact-info-card a { color: var(--arasync-primary); font-weight: 600; }

.contact-info-card.highlight {
    background: linear-gradient(135deg, rgba(28,138,125,0.08) 0%, rgba(79,209,197,0.05) 100%);
    border: 2px solid var(--arasync-primary);
}

.contact-info-card.highlight h3 { color: var(--arasync-primary); }
.contact-info-card.highlight ul { list-style: none; padding: 0; margin: 0; }
.contact-info-card.highlight li { padding: 0.4rem 0; color: var(--arasync-gray-700); font-size: 0.95rem; }

.social-links { display: flex; gap: 15px; }
.social-link { color: var(--arasync-primary); font-weight: 600; }

.checkbox-header { font-weight: 600; color: var(--arasync-gray-700); margin-bottom: 0.75rem; display: block; }

/* FAQ Section */
.faq-section { padding: 80px 0; background: var(--arasync-gray-50); }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--arasync-gray-200);
}

.faq-item h3 { color: var(--arasync-navy); margin-bottom: 0.75rem; font-size: 1.1rem; }
.faq-item p { color: var(--arasync-gray-500); line-height: 1.7; }

/* Pricing Page */
.pricing-section { padding: 80px 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid var(--arasync-gray-200);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid var(--arasync-primary);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--arasync-primary), var(--arasync-aqua));
    color: white;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-header h3 { font-size: 1.4rem; color: var(--arasync-navy); margin-bottom: 0.5rem; }
.plan-tagline { color: var(--arasync-gray-500); font-size: 0.9rem; }
.plan-price { margin: 28px 0; }
.plan-price .currency { font-size: 1.5rem; vertical-align: top; color: var(--arasync-gray-500); }
.plan-price .amount { font-size: 3.25rem; font-weight: 800; color: var(--arasync-navy); }
.plan-price .period { color: var(--arasync-gray-500); }
.plan-price .price-label { display: block; font-size: 0.85rem; color: var(--arasync-gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }

.per-provider-note {
    display: inline-block;
    background: rgba(28, 138, 125, 0.08);
    color: var(--arasync-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-top: -12px;
    margin-bottom: 8px;
}

.plan-features { list-style: none; padding: 0; margin: 28px 0; text-align: left; }

.plan-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--arasync-gray-600);
    border-bottom: 1px solid var(--arasync-gray-100);
}

.plan-features li:last-child { border-bottom: none; }
.plan-features .check { color: var(--arasync-primary); font-weight: bold; }
.plan-features .x { color: var(--arasync-gray-300); }
.plan-features li.disabled { color: var(--arasync-gray-400); }
.pricing-card .btn { width: 100%; margin-top: 20px; }

.btn-outline {
    background: transparent;
    border: 2px solid var(--arasync-primary);
    color: var(--arasync-primary);
}

.btn-outline:hover { background: var(--arasync-primary); color: white; }

/* Comparison Section */
.comparison-section { padding: 80px 0; background: var(--arasync-gray-50); }

.included-features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.included-item { text-align: center; }
.included-item .icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.included-item h4 { color: var(--arasync-navy); margin-bottom: 0.5rem; }
.included-item p { color: var(--arasync-gray-500); font-size: 0.9rem; }

/* Addons */
.addons-section { padding: 5rem 0; background: var(--arasync-gray-50); }

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

.addon-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--arasync-gray-200);
}

.addon-card h3 { font-size: 1.1rem; color: var(--arasync-navy); margin-bottom: 0.75rem; }
.addon-card p { font-size: 0.95rem; color: var(--arasync-gray-500); margin-bottom: 1rem; line-height: 1.5; }

.addon-price {
    display: inline-block;
    background: var(--arasync-primary-50);
    color: var(--arasync-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--arasync-gray-200);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--arasync-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label { font-size: 1rem; color: var(--arasync-gray-500); font-weight: 600; }

/* Legal Pages */
.legal-section { padding: var(--spacing-3xl) 0; }
.legal-content { max-width: 800px; margin: 0 auto; }

.legal-content .last-updated {
    color: var(--arasync-gray-500);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--arasync-gray-200);
}

.legal-block { margin-bottom: var(--spacing-2xl); }

.legal-block h2 {
    font-size: 1.5rem;
    color: var(--arasync-navy);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--arasync-primary);
}

.legal-block h3 {
    font-size: 1.15rem;
    color: var(--arasync-gray-800);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-block p { color: var(--arasync-gray-600); line-height: 1.8; margin-bottom: var(--spacing-md); }
.legal-block ul { margin: var(--spacing-md) 0; padding-left: var(--spacing-xl); }
.legal-block ul li { color: var(--arasync-gray-600); line-height: 1.8; margin-bottom: var(--spacing-sm); }
.legal-block ul li strong { color: var(--arasync-gray-700); }
.legal-block a { color: var(--arasync-primary); text-decoration: underline; }
.legal-block a:hover { color: var(--arasync-primary-dark); }

.legal-block .contact-info {
    background-color: var(--arasync-gray-50);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-md);
}

.legal-block .contact-info p { margin-bottom: var(--spacing-sm); }
.legal-block .contact-info p:last-child { margin-bottom: 0; }

/* ========================================
   Blog
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

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

.blog-card {
    background: var(--arasync-white);
    border: 1px solid var(--arasync-gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card-image-link {
    display: block;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.03);
}

.blog-card-image--placeholder {
    background: var(--arasync-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--arasync-gray-400);
}

.blog-card-content {
    padding: var(--spacing-lg) var(--spacing-xl);
}

.blog-category-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--arasync-primary);
    background: var(--arasync-primary-50);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background 0.2s ease;
}

.blog-category-tag:hover {
    background: var(--arasync-primary-100);
    color: var(--arasync-primary);
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin: var(--spacing-sm) 0;
    color: var(--arasync-navy);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--arasync-primary);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--arasync-gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.blog-card-excerpt p {
    margin: 0;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--arasync-gray-500);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.blog-meta-separator {
    color: var(--arasync-gray-300);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--arasync-primary);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-read-more:hover {
    gap: 10px;
    color: var(--arasync-primary-dark);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: var(--spacing-3xl);
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--arasync-gray-600);
    text-decoration: none;
    border: 1px solid var(--arasync-gray-200);
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover {
    background: var(--arasync-gray-100);
    color: var(--arasync-primary);
    border-color: var(--arasync-primary);
}

.blog-pagination .page-numbers.current {
    background: var(--arasync-primary);
    color: var(--arasync-white);
    border-color: var(--arasync-primary);
}

/* ========================================
   Single Article
   ======================================== */
.article-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.article-hero-avatar {
    border-radius: var(--radius-full);
}

.article-hero-separator {
    color: rgba(255, 255, 255, 0.35);
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--arasync-primary);
    text-decoration: none;
    margin-bottom: var(--spacing-xl);
    transition: gap 0.2s ease;
}

.article-back-link:hover {
    gap: 10px;
    color: var(--arasync-primary-dark);
}

.article-body {
    padding: var(--spacing-3xl) 0;
}

.article-featured-image {
    margin: 0 0 var(--spacing-2xl) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-featured-image img,
.article-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Article Content Typography */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--arasync-gray-700);
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--arasync-navy);
    margin: var(--spacing-2xl) 0 var(--spacing-md);
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--arasync-navy);
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.article-content p {
    margin-bottom: var(--spacing-lg);
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.article-content li {
    margin-bottom: var(--spacing-sm);
}

.article-content blockquote {
    border-left: 4px solid var(--arasync-primary);
    padding: var(--spacing-md) var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    background: var(--arasync-primary-50);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--arasync-gray-700);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.article-content pre {
    background: var(--arasync-navy);
    color: var(--arasync-gray-200);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: var(--spacing-lg);
    font-size: 0.9rem;
    line-height: 1.6;
}

.article-content code {
    background: var(--arasync-gray-100);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
}

.article-content pre code {
    background: none;
    padding: 0;
}

.article-content a {
    color: var(--arasync-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--arasync-primary-dark);
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--arasync-gray-200);
}

.article-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--arasync-gray-600);
    background: var(--arasync-gray-100);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.article-tag:hover {
    background: var(--arasync-primary-50);
    color: var(--arasync-primary);
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-xl);
    background: var(--arasync-gray-50);
    border: 1px solid var(--arasync-gray-200);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-2xl);
}

.author-bio-avatar {
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.author-bio-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--arasync-gray-500);
    margin-bottom: 2px;
}

.author-bio-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--arasync-navy);
    margin-bottom: var(--spacing-xs);
}

.author-bio-description {
    font-size: 0.95rem;
    color: var(--arasync-gray-600);
    line-height: 1.6;
}

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

    .hero-text h1 { font-size: 3rem; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }

    .hero-visual {
        perspective: none;
    }

    .hero-visual .screenshot-web {
        transform: none;
        animation: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-visual .hero-float-card {
        display: none;
    }

    .screenshot-mobile {
        max-width: 260px;
    }

    .ai-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .screenshots-grid { grid-template-columns: 1fr; }

    .about-grid,
    .solution-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .solution-grid.reverse { direction: ltr; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card.featured { transform: none; }

    .serve-grid,
    .approach-content,
    .faq-grid { grid-template-columns: 1fr; }

    .features-grid.four-col { grid-template-columns: repeat(2, 1fr); }
    .included-features { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.35rem; }

    .hero {
        padding: 7rem 0 4rem;
    }

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

    .hero-visual .screenshot-web {
        max-width: 100%;
    }

    .screenshot-mobile {
        max-width: 220px;
    }

    .menu-toggle { display: block; }

    .site-header {
        top: 8px;
        left: 12px;
        right: 12px;
    }

    .main-navigation {
        position: fixed;
        top: 80px;
        left: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        border-radius: var(--radius-xl);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-navigation ul { flex-direction: column; width: 100%; }
    .main-navigation li { width: 100%; }
    .main-navigation a { display: block; padding: var(--spacing-md); }

    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-md); }

    .metric-number { font-size: 2rem; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .page-hero { padding: 80px 0 50px; }
    .page-hero h1 { font-size: 2rem; }

    .contact-form .form-row { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }
    .features-grid.four-col { grid-template-columns: 1fr; }
    .included-features { grid-template-columns: repeat(2, 1fr); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2.2rem; }
    .serve-grid, .addons-grid, .approach-content { grid-template-columns: 1fr; }

    .legal-section { padding: var(--spacing-2xl) 0; }
    .legal-content { padding: 0 var(--spacing-md); }
    .legal-block h2 { font-size: 1.3rem; }

    .blog-grid,
    .blog-grid--three { grid-template-columns: 1fr; }

    .article-hero-meta {
        flex-wrap: wrap;
        font-size: 0.85rem;
    }

    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero { padding: 6rem 0 3rem; }
    .hero-text h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-section h2 { font-size: 2rem; }
    .metrics-grid { grid-template-columns: 1fr; }
}
